Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
lishuang
Contributor III
Contributor III

about Section Access

Hi friends,

Why content running in the Automatically generated scripts after "STAR is *;" in the New subparagraph?

Thanks in advance!

1.png2.png

2 Replies
Anonymous
Not applicable

Hi,

The script is just a way to declare to use the symbol "*" as the STAR, otherwise, it may not be recognized correctly when you use it in the section access like below:

STAR is *;

Section Access;

LOAD * INLINE [

  ACCESS, NTNAME, NWGROUP

  ADMIN, admin01, *

  USER, user01, GROUP1

  USER, user02, GROUP2

...]

Section Application;

LOAD * INLINE [

NWGROUP, CLIENTId

GROUP1, 1000001

GROUP2, 1000002

...

];

In this way, the "*" means all the GROUPs you declared in Section Application part.

lakshmikandh
Specialist II
Specialist II

In above section access * means all values, but sometimes it will not give proper result.

So "Star is *;"  is used.