Preserve the order of records when using concurrency

Comments

3 comments

  • Stephen Lemp

    If I'm using a string for my concurrency ID which may have spaces, do I need to include quotes around the template? For example, would this work: 

    '{{{customer_name}}}'

    Instead of:

    {{{customer_name}}}

    Or are the quotes unnecessary? 

    0
  • Tom Santiago Principal Technical Writer Community moderator
    Engaged
    Top Contributor
    Celigo University Level 4: Legendary

    Hi Stephen Lemp,

    If you add quotes in the manner you suggest above, the quotes will be added to the value extracted from the customer_name field.

    For example if the record is:

     "customer_name": "Bob Smith"

    '{{{customer_name}}}' would yield 'Bob Smith'.

    {{{customer_name}}} would yield Bob Smith.

    0
  • Stephen Lemp

    Tom Santiago, thanks for responding. So my follow up question would be, how does a space affect concurrency lock id? Does the Lock ID allow for spaces?

    0

Please sign in to leave a comment.