Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

WHAT IS THE WRONG IN SCRIPT? USER GETTING ALL DOCUMENTS? EVEN INTIAL OPTION IS CHECKED ALSO?

Section Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD

    admin, admin, admin

    user, manoj, kumar

    user, venkatesh, botla

];

Section Application;

load * inline

[

USERID,OMIT

admin,SHO1

manoj,SH02

venkatesh,SH03

];

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Have you tried (OMIT should be part of your section access table):

Section Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD, OMIT

    admin, admin, admin, SH01

    user, manoj, kumar, SH02

    user, venkatesh, botla, SH03

];

But SH01, SH02, SH03 needs to be fields in your data model (loaded in a subsequent section application), then.

Please check

Introduction to Section Access

View solution in original post

1 Reply
swuehl
MVP
MVP

Have you tried (OMIT should be part of your section access table):

Section Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD, OMIT

    admin, admin, admin, SH01

    user, manoj, kumar, SH02

    user, venkatesh, botla, SH03

];

But SH01, SH02, SH03 needs to be fields in your data model (loaded in a subsequent section application), then.

Please check

Introduction to Section Access