FROM [lib://QlikSetup/DateFlieSeed100.csv_pii_masked.csv]
(txt, utf8, embedded labels, delimiter is ',', msq);
Load
[ID],
DataPlus.UnMaskData([NAME],'NAME') as unmasked_name,
DataPlus.UnMaskData([DOB],'DOB') as unmasked_dob,
DataPlus.UnMaskData([ACCOUNT],'ACCOUNT') as unmasked_account;
While checking logs, I am finding that in execute function, bundledrow is having single column value, and execute function is called for every column values in my file against each column above for which we used AC.
My question here is:
For any analytical connection used this way, is it possible that execute function gets multiple column values in one call instead one by one? How can we achieve it in load editor? Or is there any configuration which needs to be set?