How to populate a variable from JavaScript to a column in Data Extraction Activity?
Hello Friends,I have a requirement, where we have to fetch some recipient data and export the same data in a file. Let me give background in detail:1. Initially we will be fetching some Recipient Data (say 10 records) and retrieving their First Name, Mobile and Email (just example) from Query.2. Next we will be inserting a record in schema (Transient) created. This schema consists of below fields: a. Campaign Identifier (A string value passed in JavaScript as input) b. Record Count (A Integer which will store the number of recipients fetched from query (Count) c. Primary Key (Auto - generated, whenever a record is inserted)3. So assume Campaign Identifier is XYZ, Record Count is 10, i will be inserting this two fields in above schema and it somehow looks like belowPRIMARY KEY|Campaign Identifier|Record Count154878931|XYZ|104. Now i need to export the First Name, Mobile and Email of the Recipients to a file using Data Extraction along with PRIMARY KEY mentioned above.5. So o