externalData JavaScript API
Use the clmContext.external Data API to read data from external sources such as BMC AR System forms and BMC Atrium Orchestrator workflow.
Summary
Methods |
---|
fetchAllowableValues: clmContext.externalData.fetchAllowableValues(string dataSourceName, string keyword, object |
Methods
fetchAllowableValues
Retrieves data from external sources BMC AR System forms and BMC Atrium Orchestrator workflow.
Parameters | ||
---|---|---|
string | dataSourceName | Name of the data source created in the configuration workspace of administrator portal. |
string | keyword | Keyword to be used for filtering the result set. |
object | filterCriteria | Filter criteria to be used for passing the context of the request. This is primarily used by BMC Atrium Orchestrator workflow. filterCriteria should look like this: {"Company":"Calbro Services","Department":"R&D"} |
function | callback | The callback parameter should be a function that looks like this: function(object result) {...}; |
function | error_callback | The error_callback parameter should be a function that looks like this: function(object error) {...}; |