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: 
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