AddParm method: SOAPDoc class
Syntax
AddParm(ParmName, ParmValue)
Description
Use the AddParm method to set the parameters for the parameter element of the current method. To set more than one parameter, use the method more than once. The parameters are set and used in the order that this method is called. Any number of parameter name-value pairs can be set for a method and are added to the XML document in the order that this method is called from the PeopleCode program.
Parameters
| Parameter | Description |
|---|---|
|
ParmName |
Specify the name of the parameter as a string. |
|
ParmValue |
Specify the value of the parameter as a string. |
Returns
None.
Example
The following PeopleCode:
&MyDoc.AddParm("Item", "Apples");
Creates the following XML:
<Item >Apples</Item>
Related Topics