Siebel Data Quality Administration Guide > Universal Connector API > Parameter Setting Functions >

sdq_set_global_parameter Function


This function is called to set global parameters. This function call is made after the call to sdq_init_connector.

Before making the call to the vendor DLL, the Siebel code reads the parameters and values from the configuration file that is read upon server or remote client startup. Putting parameters here enables customers to set and modify connector and server-instance specific parameters.

An XML character string is used to specify the parameters. This provides an extensible way of providing parameters with each function call.

NOTE:  For the 7.8.2 release, this parameter is set to NULL as all required parameters are set by the sdq_set_parameter function call.

Syntax

int sdq_set_global_parameter (const SSchar* parameterList)

Parameters

Parameter
Description

parameterList

An XML character string that contains the list of parameters and values specific to this function call. An example of the XML is as follows

<Data>

<Parameter>

<Name>GlobalConnectorParam1</Name>

<Value>GlobalConnectorValue1</Value>

</Parameter>

<Parameter>

<Name>GlobalConnectorParam2</Name>

<Value>GlobalConnectorValue2</Value>

</Parameter>

</Data>

Return Value

A return value of 0 indicates successful execution. Any other value is a vendor error code.

The error message details from the vendor are obtained by calling the sdq_get_error_message function.

Siebel Data Quality Administration Guide Copyright © 2006, Oracle. All rights reserved.