Scenario: Adeptia throws an error "Record Identifier value = 070RESTRC$ is not valid" after defining a record identifier value with regex notation as "070RESTRC$" with the regex checkbox checked.
Cause: The error has occurred because $ in the value is not allowed in Record identifier. This is because $ signifies the end of the line in terms of regex notation.
Solution: Define the record identifier value as an regex expression using backslash '\', e.g. "070RESTRC\$". This will help in escaping the actual meaning of $. Refer to the image below for the reference:
Comments
0 comments
Article is closed for comments.