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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QlikView Log setting

Hi,

I am using Qlikview 11. I would like to enable detail logging. Where can I set this option.

I would like to see the log for Document Reload on QlikView Server. Is there any option in Qlikview 11 or below setting was for Qliview 10

QlikView->Settings->Document Peferences->Generate Logfile

Regards,

VS

1 Reply
hic
Former Employee
Former Employee

Use the Trace statement in the script. With it, you can add anything you want to the log file.

Example:

Let vMyMessage = NoOfRecords(‘<TableName>’) & ‘ records in table <TableName>’ ;

Trace $(vMyMessage);

Let vMyMessage = ‘Last value loaded is ‘ & peek(‘<FieldName>’,-1,‘<TableName>’)  ;

Trace $(vMyMessage);

Trace $(ScriptError) ;

HIC