Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The GetObjectIdByParam method allows method allows receiving of object ID at which some parameter is equal to the specified value. The first found object ID is receiving if there are several such objects. The null is receiving if such objects are not found.

Syntax of method invocation:

Code Block
languagejs
function GetObjectIdByParam (obj_type : String, obj_param : String, param_value : String)

...

  1. obj_type – required argument. Specifies type of system object, ID of which is required to get.
  2. obj_param - required argument. Specifies the name of parameter in database on value of which the object is to be found.
  3. param_value – required argument. Specifies the required value of object parameter.

...