Hi,
I created a subscription form which contains first name and email address only. I want to add a hidden field "language" and have it's default value set to "EN", however, the value "EN" didn't pass to the recipient table after submission.
This is my current workflow for the web form.
Is this possible to use the JavaScript to pass the language field = "EN" to the recipient table using the workflow below, and what is the JavaScript code?
Thanks,
ED
Solved! Go to Solution.
I usually like to use a js activity to collect data stored in variables on my webapps, you have more control over it. check the following SOAP methods in JavaScript
i.e writing from webapp to a custom schema.
And you can even pass these variables from a webapp to a workflow using xtk.workflow.PostEvent
I usually like to use a js activity to collect data stored in variables on my webapps, you have more control over it. check the following SOAP methods in JavaScript
i.e writing from webapp to a custom schema.
And you can even pass these variables from a webapp to a workflow using xtk.workflow.PostEvent
Thanks David for your reply. I am currently using default form creation from Adobe Campaign under online \web application, please see the workflow below. I added the JS script activity and try to pass the language field = "EN" to the recipient table, it didn't work.
Could you please take a look at the code below and let me know if there is any workaround?
var language = "EN";
xtk.session.Write(<myschema xtkschema="cus:receipient"
language={ctx.vars.language}
/>);
Thanks,
ED
Views
Replies
Total Likes
You need to replace all "mySchema" values to the name of the schema you are writing to, also you have a typo in value recipient.
Views
Replies
Total Likes
Thanks David. I am not quite sure about the name of "mySchema". I don't use any custom schema. so I think my scheme is nms:recipient. So I replaced the below myscheme to nms:recipient?
var language = "EN";
xtk.session.Write(<nms:recipient xtkschema="nms:recipient"
language={ctx.vars.language}
/>);
I tested it above code, it didn't work. Could you please let me know if there is error in the above code?
Thanks again.
ED
Views
Replies
Total Likes
The first bold value remove the prefix and leave it as recipient only.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies