Ask user for Input while signing and write that info back into salesforce.
Friday, November 22, 2019 at 03:10amHello,
We are new to onespan. We have integrated our salesforce application with onespan using APEX SDK for our signature use cases.
Currently we are generating the documents with Conga and while generating the documents we are placing the signature tags (eg, {{esl:Signer1:Capture:Size(120,30)}}) into the document. Then using apex SDK to the package for signature. This use case is working fine for us.
We have one requirement, where we need a field called “Signer Title”, which we want customers to Input when they sign. It will be required field which we will predefault with some value from salesforce (it may or may not be blank), once Customer updated that info and completes sign, then we need to update salesforce with that field value.
To achieve this i tried two ways which didn't work:
1. I tried updating the document with the following text tag: {{esl:signer1:TextField:value("My default value goes here")}}
2. Created a field on OSS account named title and tried the following text tag: {{esl:signer1:Title:value("My default value goes here")}}
Could you please let me know how can we achive this? also regarding write back into salesforce, once the signature ceremony is complete, do i need to query the package , find the “Signer Title” value and update the salesforce record? or do we have any other better option.
Reply to: Ask user for Input while signing and write that info back into salesforce.
Friday, November 22, 2019 at 04:57am{{esl_signerTitle:Signer1:textfield:value("My default value goes here")}}
works fine at my side. (1)The "_signerTitle" part specified the field ID and field name, that's how you can pinpoint the field and then grab the value (2)You mentioned that the tag doesn't work at your side, how's the failed behavior? Didn't the field appear on the document or you hit an error? I noticed that the quotation marks you posted were different than mine, but it maybe because of the forum text editor. For the write back process, there's an out of the box writeback function if you go with our Salesforce Connector solution, but since you were integrated yourselves, you may not able to leverage the service. Internally, I believe it does the same process: get the field value from package object/json then update the record. DuoReply to: Ask user for Input while signing and write that info back into salesforce.
Friday, November 22, 2019 at 05:42amReply to: Ask user for Input while signing and write that info back into salesforce.
Friday, November 22, 2019 at 06:12am{{*esl_Title:Signer1:textfield:Size(150,15), value("Default value is too long"), offset(-5,0)}}
Reply to: Ask user for Input while signing and write that info back into salesforce.
Thursday, November 28, 2019 at 10:30amReply to: Ask user for Input while signing and write that info back into salesforce.
Friday, November 29, 2019 at 02:20amReply to: Ask user for Input while signing and write that info back into salesforce.
Friday, November 29, 2019 at 03:48amReply to: Ask user for Input while signing and write that info back into salesforce.
Wednesday, December 4, 2019 at 08:58amReply to: Ask user for Input while signing and write that info back into salesforce.
Wednesday, December 4, 2019 at 09:05am