SetQueryString method: Message class
Syntax
SetQueryString(Parameter_Name, Value)
Description
Use the SetQueryString method to add a parameter value to the query string.
Note:
This method has been desupported and remains for backward compatibility only. Use the IBConnectorInfo class AddQueryStringArg method instead.
Parameters
| Parameter | Description |
|---|---|
|
Parameter_Name |
Specify the name of the parameter that you want to add to the query string, as a string. |
|
Value |
Specify the value of the parameter you are adding to the query string. |
Returns
None.
Example
Local Message &request;
&request = CreateMessage(OPERATION.QE_SALES_ORDER);
. . .
. . .
&request.SetQueryString("BUYER", "12345");