Inside record producer script, how to access data of a MRVS variable so that its data can be copied to description field on the generated record SummaryWhen a record producer is submitted, you want to copy the information of a MRVS variable to description field on the generated record.InstructionsMRVS variable is in JSON format so its data cannot be accessed the same way as regular variable inside the record producer script. The code to access and display the data of a MRVS variable will look like: var mrvs= producer.mrvs_variable; // access the MRVS variablevar mrvsArray= JSON.parse(mrvs); // returns JSON object gs.addInfoMessage(JSON.stringfy(mrvsArray)); // displays the JSON object in a readable string format You can then copy the string returned by 'JSON.stringfy(mrvsArray)' into description field on the generated record using 'current' object.