I’m trying to build a process flow that would copy a field into 2 other fields elsewhere in the application upon an event. The string that I am copying is a varchar(2000), one of fields I am copying it into is varchar(200) and the other is varchar(2000). So what I’m trying to accomplish is writing an API that copies the leftmost 200 characters into field 1 and then entirety of the original field to field 2.
Normally I would do this as part of the SQL query, but since this is being triggered by an event I don’t have that option.