Our requirement is to update JobRequisitions if certain fields change on the Position. One of the fields to be updated is Description.
In this example, the Position.Description is Post Graduate Year 3&4
When attempting to update via a landmark node, the resulting JobRequisition.Description value is "Post Graduate Year 3
According to the Landmark node documentation, special characters need to be preceeded by a backslash. We've attempted every variation we can think of and none seem to work: Below is the condensed transaction string:
_dataArea="lmghr" & _module="Recruiting" & _objectName="JobRequisition" & _actionName="UpdateOpen" & _actionOperator="NONE" & _actionType="CreateUpdateDelete" & _runAsUser="" & _authenticatedUser="" & _pageSize="30" & _filterString="" & _relationName="" & _setName="" & _asOfDate="" & _effectiveDate="" & HROrganization="YNHS" & JobRequisition="13952" & Description="Post Graduate Year 3\&4"
And this is how the result string is appearing in the log file:
results string:YNHS,21000,"Post Graduate Year 3
So it seems to be cutting off at the ampersand no matter what we do. Any suggestions are appreciated.
Already tried using the "Automatically escape & in variables" option.