Hi,
We have the option called upload from local machine, for data loading activity. Is it possible we can find where the file is stored while uploading it to server. Can we access the server where the file gets stored, as it shows its being stored in the temporary schema.
I checked in many schemas in adobe unable to find the same.
Any idea how we can see where it's getting stored?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @laksh1519 ,
Place a JavaScript code activity next to data loading and paste the below script in it
logInfo(vars.filename);
After running the workflow, click display logs on JS code activity, you can find where the file got uploaded in server.
Temporary tables are work tables which used to get purged when the workflow goes to finished state (Until you enable keep the interim result checkbox in WKF properties). You can see this temporary table name by right clicking data loading activity's transition > display the target > Schema tab
Hi @laksh1519 ,
Place a JavaScript code activity next to data loading and paste the below script in it
logInfo(vars.filename);
After running the workflow, click display logs on JS code activity, you can find where the file got uploaded in server.
Temporary tables are work tables which used to get purged when the workflow goes to finished state (Until you enable keep the interim result checkbox in WKF properties). You can see this temporary table name by right clicking data loading activity's transition > display the target > Schema tab
Views
Likes
Replies