Hi all
I can achieve data reduction easily using Section Access functionality that requires the user to logon to the application (see below).
Section Access;
LOAD * INLINE [
ACCESS, USERID, PASSWORD, %ACQUIRERNAME
ADMIN, ADMIN, ADMIN123, *
USER, USER1, USER111, USER1BANK
USER, USER2, USER222, USER2BANK
];
Section Application;
LOAD * INLINE [
AcquirerName, %ACQUIRERNAME
"User1_Bank", USER1BANK
"User2_Bank", USER2BANK
];
This works great and reduced data (at the level AcquirerName) perfectly.
The client however wants this to be achieved without a separate logon - is there a way that I can read the users' credentials and add Section access functionality based on that? Any other ideas?
Thanks in advance
Alexis