Closed dajjan closed 8 years ago
The fix to Qvc.ColorTheme (which is the source of the problem) is committed and available in the master branch on GitHub. This will be included in a QVC V11 release I hope to have available by the end of the week. In the meantime, a workaround is posted here. https://groups.google.com/forum/#!topic/qlikview-components-users/NgR7zxDwfzE
The new "Qvc.ColorTheme"-file does not fix this problem. This is the error from my log: 2016-10-18 21:06:09 No qualified path for file: "\CalendarExtSetVariables.qvs"
I believe I've found the problem. Here's a workaround until I make a fix. Add a SET to clear _qvctemp.v.IncludeExtension before the include of Qvc.Qvs
SET _qvctemp.v.IncludeExtension=; SET QvcLib='lib://QVC'; $(Must_Include=$(QvcLib)\Qvc_Runtime\Qvc.qvs); SET Qvc.Global.v.QlikProduct='SENSE';
Thanks, that solved my problem for now. //David
Hi, when I try to load data on your QlikSense Example app I get the following error:
2016-10-18 21:06:09 0100 SET Qvc.Calendar.v.CreateSetVariables = -1 2016-10-18 21:06:09 0102 SET Qvc.Calendar.v.Field.Date=Date 2016-10-18 21:06:09 0103 SET Qvc.Calendar.v.Field.Day=Day 2016-10-18 21:06:09 0104 SET Qvc.Calendar.v.Field.Weekday=Weekday 2016-10-18 21:06:09 0105 SET Qvc.Calendar.v.Field.Year=Year 2016-10-18 21:06:09 0106 SET Qvc.Calendar.v.Field.Month=Month 2016-10-18 21:06:09 0107 SET Qvc.Calendar.v.Field.YearMonth=Year-Month 2016-10-18 21:06:09 0108 SET Qvc.Calendar.v.Field.Quarter=Quarter 2016-10-18 21:06:09 0109 SET Qvc.Calendar.v.Field.YearQuarter=Year-Quarter 2016-10-18 21:06:09 0112 SET Qvc.Calendar.v.ExtFields=CalendarExtFields.qvs 2016-10-18 21:06:09 0115 SET Qvc.Calendar.v.ExtSetVariables=CalendarExtSetVariables.qvs 2016-10-18 21:06:09 0117 SUB Qvc.Calendar(_startDate, _endDate, _tableName, _fieldPrefix, _firstMonth) 2016-10-18 21:06:09 No qualified path for file: "\CalendarExtSetVariables.qvs" 2016-10-18 21:06:09 Execution Failed 2016-10-18 21:06:09 Execution finished.
The script runs the first time but after that I can´t get it to load.
This is my test script causing this problem: SET QvcLib='lib://QVC'; $(Must_Include=$(QvcLib)\Qvc_Runtime\Qvc.qvs);
SET Qvc.Calendar.v.CreateSetVariables = 1; // Create Set vars SET Qvc.Global.Extension.Directory='$(QvcLib)/etc'; CALL Qvc.Calendar(date(Today()-100), date(Today()), 'ExtFields Calendar', 'ExtFields ');
CALL Qvc.Cleanup;
I belive it´s a simular problem that #52.
Regards David