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: 
Anonymous
Not applicable

Qlik SDK Code Explanation

I am new in Qlik SDK

Can any one explain me what this code do please...

q1.png

5 Replies
Øystein_Kolsrud
Employee
Employee

It returns the first 50 values of a field named "field". You might want to check out the follow page for more information about retrieving data. It focuses mostly on hypercubes, but list objects are accessed in a similar way.

Retrieving data ‒ Qlik Sense

You might also want to check out the ListObjectPager property of the AppField object:

AppField.ListObjectPager Property

It provides an interface for traversing data for an object in Qlik Sense. More information about pagers can be found here:

Paging of data ‒ Qlik Sense

Anonymous
Not applicable
Author

Thanks Mr. Kolsrud

I will check it out.

Anonymous
Not applicable
Author

What Does Page meaning in Qlik SDK?

Øystein_Kolsrud
Employee
Employee

For large data sets, you rarely want to download the entire set in one go. Access to data from the engine is therefore done by accessing only selected parts (pages) of the data at a time. You can find more information here:

Paging ‒ Qlik Sense

Anonymous
Not applicable
Author

I See

Thanks.