Hi rajathmc2708,Close the Adobe Campaign console >> Navigate to - C:\Users\<ur_user>\AppData\Roaming\Neolane\NL_5 >> clear all the files and directory except "nlclient_cnx.xml" >> Open AC console now and try loginRegards,Preetham
This is something to do with file encoding config. Could you please ensure, file encoding is same as the one you have configured in file format option of data upload activity. if not open the file in notepad, click save as >> you can find encoding setting at the bottom of the window dialogue.BAS-010...
Hi alb52547777,Alternatively, you can modify the data in transition using SQL activity like this,UPDATE <%= vars.tableName %> SET semail = RIGHT(semail, '10');UPDATE <%= vars.tableName %> SET semail = concat('61', semail) where length(semail) < 11 ;Where in the first line->semail is the column name...
Hi Naveen,You can create a variable from delivery Properties >> Variable tab >> Add a variable , select the data type and choose if its a static or Expression. If its dynamic, you have to fetch the value via script and pass to the variable you have defined.Regards,Preetham