- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-14-2023 05:58 AM - edited ā06-14-2023 06:03 AM
Hi all
I am mapping a dropdown field from record producer to the backend field
I have tried on record producer script:
current.fieldname = producer.getValue('variablename');
and
current.fieldname = producer.variablename.getDisplayValue();
It works fine for most of the values, but when there is a long value it cuts out the end and copies the cut out version as below:
When i check the question_answer table - from the list view i see this exact format, but when i open the record the full value is there - so not sure why it is cutting out the end part:
question_answer table:
Inside the record the value is actually in full length - Please help in figuring out why this is the issue?
Value in the choice table is also full length - but the list view is like above - how it is putting on the field
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-14-2023 12:06 PM
Values are not supposed to contain capital letters nor spaces. Values should be lower case. I'd change your value to be lower case and maybe even shorter. Then try again.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ā06-14-2023 12:06 PM
Values are not supposed to contain capital letters nor spaces. Values should be lower case. I'd change your value to be lower case and maybe even shorter. Then try again.