(imported topic written by TheCaptain)
What is the session inspector SOAP API query for extracting a Client Setting?
I would like something like the following:
(name of it, ((setting “C_Code” of it) of client settings)) of bes computers
Thanks
(imported topic written by TheCaptain)
What is the session inspector SOAP API query for extracting a Client Setting?
I would like something like the following:
(name of it, ((setting “C_Code” of it) of client settings)) of bes computers
Thanks
(imported comment written by Lee Wei)
Here are 2 example statements for you.
This one will return only computers with the settings configured.
( name of it, value of client settings whose (name of it =
"Department") of it ) of bes computers whose (exists client settings whose (name of it =
"Department") of it)
This one will return all computers, and indicate those with no values.
( name of it, (
if (exists client settings whose (name of it =
"Department") of it) then (value of client settings whose (name of it =
"Department") of it)
else
"None") ) of bes computers
Lee Wei
(imported comment written by TheCaptain)
Thanks, just what I needed.