The field Reference must be a string with a maximum length of 128. Error code: 0 i am facing this issue.i am adding ques data it will take only128 cahrecters.i have input 800 mor the in excel singel cell. how to add in ques?
It’s the limit for queue item reference value length.
You will have limit your reference value to 128 characters.
You can use stringVariable.Substring method.
Thanks,
Ashok ![]()
Those are the limitations
- Either use a part of the string which is unique
- Instead of reference add it in sepecificcontent and use it …if you need to store it
- Use crypto activity and create a hashcode and then decrypt it at the destination to get the value
Cheers
give me exmaple substring code.i have try but not working
Use Substring like this to get only starting 128 characters.
strReference=strInput.Substring(0,128)
Output:

Sample Code:
Workflow.xaml (7.0 KB)
Thanks,
Ashok ![]()