Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
First Question:
I`m trying to add to my application "Section Access". I want to show to the user info based on specific Model Name value that I set.
so I added the below script:
Section Access; LOAD * Inline [ ACCESS, USERID , Model Name USER, A, 'Sony A1' ]; SECTION APPLICATION;
For some reason, this way is not working.
Second question :
I have another field which call "Region". I want to assign for each user the relevant region.
I wrote the below script:
Section Access; LOAD * Inline [ ACCESS, USERID , REGION USER, A, EURO ]; SECTION APPLICATION;
When I defined the value EURO, the data that present to user A was only EURO - As expected!
But when I changed instead of EURO to United State the user saw all the values - Not as expected!
Thanks for helping
The name that I want to restrict is Sony A1
The Section Access script is :
Star is *; Section Access; LOAD * Inline [ ACCESS, USERID ,PASSWORD, MODEL_NAME USER, DOMAIN\A, DOMAIN\A, Sony A1 ]; SECTION APPLICATION;
Try omitting the password field and value and try again.
Hi
I did it and still not working.
I've made a test version on my company's server with the following code:
Section Access;
[Section Access]:
Load * Inline [
ACCESS, USERID, DIVISION
USER, DOMAIN\user,TAX
USER, DOMAIN\user,LEGAL
USER, DOMAIN\user,FAVA
];
Section Application;
Test:
Load * Inline [
DIVISION, Test
LEGAL, 1
BUSINESS CONTROLLING, 2
CONSULTANTS, 3
BEDRIJFSREVISOREN, 4
ACCOUNTANTS, 5
CORPORATE FINANCE, 6
TAX, 7
FAVA, 8
];This is working perfectly.
Perhaps try to compare this test script to yours.