Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Implementing Section access using QVD file data

I am new to qlikview and trying to implement section access using data loaded into qvd file which has NTNAME and OperatingUnitDesc . After loading QVD file, i am loading contents into Hiddenscript tab to enable security which is throwing error.

Script:

SECTION ACCESS;
LOAD
ACCESS,
NTNAME AS NTNAME,
OperatingUnitDesc AS OperatingUnitDesc
FROM
C:\QlikView Projects\UDM\Development\QVD Generators\QVD\SecurityTable.QVD (
qvd)
WHERE 1=1;
SECTION Application;
LOAD * INLINE [
OperatingUnitDesc
]
;

Error Message:

Field not found - <OperatingUnitDesc>

LOAD

ACCESS,

NTNAME AS NTNAME,

OperatingUnitDesc AS OperatingUnitDesc

FROM

C:\QlikView Projects\UDM\Development\QVD Generators\QVD\SecurityTable.QVD (qvd)

WHERE 1=

Please help in resolving the issue.

Thanks in advance

5 Replies
Anonymous
Not applicable
Author

Try changing your field headers to UPPER case

jagan
Partner - Champion III
Partner - Champion III

Hi,

Check whether your QVD has OperatingUnitDesc column? and also you have to use Upper case for ACCESS and NTNAME.

SECTION ACCESS;
LOAD
Upper(ACCESS) AS ACCESS,
UPPER(NTNAME) AS NTNAME,
OperatingUnitDesc AS OperatingUnitDesc
FROM
C:\QlikView Projects\UDM\Development\QVD Generators\QVD\SecurityTable.QVD (
qvd)
WHERE 1=1;

Anonymous
Not applicable
Author

Hi Jagan,

Quick question.

In section access can we keep lower cases like "OperatingUnitDesc" ?

Regards

Jeba

hariprasadqv
Creator III
Creator III

That's not the recommended approach. Section access should have capitalized values always.

jagan
Partner - Champion III
Partner - Champion III

We need to maintain in Upper case.

Refer this links

A Primer on Section Access

Data Reduction Using Multiple Fields

Regards,

Jagan.