ServiceNow Certified Application Developer — Question 117
What syntax is used in a Record Producer script to access values from Record Producer form fields?
Answer options
- A. producer.field_name
- B. producer.variablename
- C. current.variable_name
- D. current.field_name
Correct answer: B
Explanation
The correct syntax to access Record Producer form field values is 'producer.variablename' (Option B), which directly references the variable name defined in the Record Producer. Options A and D refer to incorrect prefixes for accessing the fields, while Option C uses 'current' which is not applicable in this context.