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

Announcements
Save an extra $150 Dec 1–7 with code CYBERWEEK - stackable with early bird savings: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
coleturegroup
Contributor III
Contributor III

Qlik Sense 11/2024: How can we automatically configure Qlik to update the script section delivered when you create a new App?

When you create a new App this is what gets created in the script section:

SET ThousandSep=',';
SET DecimalSep='.';
SET MoneyThousandSep=',';
SET MoneyDecimalSep='.';
SET MoneyFormat='$#,##0.00;-$#,##0.00';
SET TimeFormat='h:mm:ss TT';
SET DateFormat='M/D/YYYY';
SET TimestampFormat='M/D/YYYY h:mm:ss[.fff] TT';
SET FirstWeekDay=6;
SET BrokenWeeks=1;
SET ReferenceDay=0;
SET FirstMonthOfYear=1;
SET CollationLocale='en-US';
SET CreateSearchIndexOnReload=1;
SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';
SET LongMonthNames='January;February;March;April;May;June;July;August;September;October;November;December';
SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';
SET LongDayNames='Monday;Tuesday;Wednesday;Thursday;Friday;Saturday;Sunday';
SET NumericalAbbreviation='3:k;6:M;9:G;12:T;15:P;18:E;21:Z;24:Y;-3:m;-6:μ;-9:n;-12:p;-15:f;-18:a;-21:z;-24:y';

I want to add a line that is basically a $(Must_Include) statement that loads a controlled standard QVS file, that will force our script standards during App creation across all Apps. 

What file & location do I need to add this logic?

Labels (3)
1 Solution

Accepted Solutions
Chanty4u
MVP
MVP

Hi 

You can modify this file 

C:\Program Files\Qlik\Sense\Repository\DefaultApps\AppInit.qvs

 

And then use below 

$(Must_Include=lib://CommonScript/Standard.qvs);

 

 

View solution in original post

1 Reply
Chanty4u
MVP
MVP

Hi 

You can modify this file 

C:\Program Files\Qlik\Sense\Repository\DefaultApps\AppInit.qvs

 

And then use below 

$(Must_Include=lib://CommonScript/Standard.qvs);