Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
dseelam
Creator II
Creator II

failed to open document

Please help

not able to open document with section access and sheet access after checking strict execution in document properties

includes code

SECTION Access;

User:

LOAD

  UPPER(ID) as USERNAME,

     UPPER(IPNAME) & '\' & Upper(ID) as NTNAME,  

     UPPER(ACCESS) as ACCESS,

     UPPER(SALESGROUP) as SALESGROUPNP

FROM

[$(vFldrSources)\SecAccess.xls]

(biff, embedded labels, table is Sheet1$);

SECTION Application;

[Sheet Access]:

LOAD

  UPPER(ID) as USERNAME, 

    UPPER(SHEETACCESS) as SHEETACCESS

FROM

[$(vFldrSources)\SecAccess.xls]

(biff, embedded labels, table is Sheet1$);

left Join

SheetAccess:

LOAD

     UPPER(SHEETACCESS) as SHEETACCESS,

     SH01,

     SH04,

     SH07,

     SH08,

     SH10,

     SH11,

     SH12,

     SH13,

     SH14,

     SH18,

     SH15,

     SH16,

     SH17,

     SH19

FROM

[$(vFldrProjDataSources)\SHEET_Access_Master.xls]

(biff, embedded labels, table is Sheet1$)

Where not IsNull(SHEETACCESS);

Sales:

LOAD

  %CustNum

     UPPER(SALESGROUPNAME) as SALESGROUPNAME ,

     USERNAME as ACCT_NUM

FROM

[$(vFldrProjWorkspace)\HHF.qvd] (qvd);

dont see any errors in my code and its working perfectly alright in my local server but throwing error once its published in accesspoint

12 Replies
krishnacbe
Partner - Specialist III
Partner - Specialist III

Ok. try to add the section access -- Section application part as your last part of script and check.

one more suggestion, try with USERID option first then go for NTNAME. If possible share me the application without section access I will try to troubleshoot.

dseelam
Creator II
Creator II
Author

Still the same issue

I cant send you document sorry its  an executive

krishnacbe
Partner - Specialist III
Partner - Specialist III

can you share the sample data for three tables that you have used for Section access.

Without knowing the data it will be very difficult to fix the issue.