ServiceNow Certified Application Developer — Question 96
If you create a SOAP Message what syntax indicates a variable to pass when the function is called?
Answer options
- A. current.variable_name
- B. ${variable_name}
- C. < variable_name >.do?WSDL
- D. < variable_name >
Correct answer: B
Explanation
The correct option is B, as the syntax ${variable_name} is specifically used to represent variables in SOAP messages. The other options do not conform to this syntax; A suggests a different context, C includes an unnecessary method call, and D lacks the correct syntax for variable representation.