Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Helo,
I'am loading data from qwv file, using BINARY load. The problem is that, not only data tables but also a "section access" (in hidden script) is being loaded.
Maybe anyone knows how to remove the "section access" from the new qwv file?
Milda
I've just found a solution. Binary load should always be the first statement in the load script, so we need to write this in hidden script:
BINARY "example.qwv";
Section Access;
In this case, Section access is removed. New qwv file will not inherit Section access from "example.qwv" file.
Milda
Try and disable section access/data reduction in the documents -> settings -> Opening properties
I've just found a solution. Binary load should always be the first statement in the load script, so we need to write this in hidden script:
BINARY "example.qwv";
Section Access;
In this case, Section access is removed. New qwv file will not inherit Section access from "example.qwv" file.
Milda
If i write binary load inside hidden script. will it remove section access in the file where i used binary