Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to get details on CALs from metadata?

Hi,

I am trying to get CALs assigned to each document from metedata. I have tried to check details from xml files avaialble in QVPR. But exact details are not avaialble. Can anyone advice me how to get CALs and user details from metadata.

8 Replies
Not applicable
Author

try:

LOAD

filename() as Document,

@1 as User

FROM

(txt, codepage is 1252, no labels, delimiter is spaces, msq, filters(

Transpose()

))

Where left(@1,1) = 'Q';

Anonymous
Not applicable
Author

Hi,

Many thanks.

Here I have one doubt, from which meta file I can get this data.

Not applicable
Author

you can do a loop loading each *.meta file

(dont you have *.meta file?)

whiteline
Master II
Master II

These files are located in the same directory on server as your .qvw file.

Anonymous
Not applicable
Author

I found them.. many thanks.

whiteline
Master II
Master II

Think you can close the question and mark "Pari Pari's" solution as right.

Anonymous
Not applicable
Author

I want to track Document CALs allocated/assigned to document and for each document how many named CALS and Document CALS assigned..So for these details I am trying to check in xml files..

Please help to advice.

whiteline
Master II
Master II

Ah,

You can use foreach statement to parse all files one by one.

See foreach in help.