Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
pradeep92
Partner - Creator II
Partner - Creator II

Section access - ALL data Visibility

LOAD * INLINE [

ACCESS, Userid, FIELD,Password

ADMIN, USER1, ,user1

ADMIN, USER2,*,user2

USER, USER3,A,user3

USER, USER4,B,user4

];

Linked_table:

load * Inline[

FIELD,Fieldvalue

A,10
B,20

C,30

D,40

];

My question is how could I see all the data .. I understand if I login by USER2 , I can See Data relevant to A and B but I want to see ABCD relevant data too. How should i proceed with the script ?

1 Solution

Accepted Solutions
Peter_Cammaert
Partner - Champion III
Partner - Champion III

See here: Section Access -ALL data visibility

Please don't post exact copies of your original question. You can bump your original post into community attention again by adding a simple request, like "Anyone?", "Can someone have a look into this?" or  "Is this possible?". Thanks.

Peter

View solution in original post

4 Replies
Peter_Cammaert
Partner - Champion III
Partner - Champion III

See here: Section Access -ALL data visibility

Please don't post exact copies of your original question. You can bump your original post into community attention again by adding a simple request, like "Anyone?", "Can someone have a look into this?" or  "Is this possible?". Thanks.

Peter

avinashelite

agreed with pcammaert‌ , if you create duplicate threads it would be difficult to follow ...Please close the duplicate thread ..if you have new issues create a new thread

big_dreams
Creator III
Creator III

Keep it field value blank as you kept for user1

try like

LOAD * INLINE [

ACCESS, Userid,Password,FIELD

ADMIN, USER1,user1,

ADMIN, USER2,user2,

USER, USER3,user3,A

USER, USER4,user4,B

];

Linked_table:

load * Inline[

FIELD,Fieldvalue

A,10
B,20

C,30

D,40

];

pradeep92
Partner - Creator II
Partner - Creator II
Author

Sure. Thanks a lot for the support