Binary Load
Loading one .qvw file as a source into another .qvw file is called binary load.
- Only one binary load will be allowed within a .qvw file.
- It should be loaded as first line of the script before the set variables in first tab.
- Using binary we will get the data model from the another qvw file but not the front end object. Please find data model view in the below screen shot after binary load
Below is the sample code:-
Binary C:\users\.....\.........\binary.qvw;
Suppose i have two qvw with 2 different section access on each. If I do a binary load which section access should be used by qvw.
ReplyDeleteOn which file binary load is implemented
DeleteA binary statement will load the access as well as the data parts of a document
DeleteYou can also overwrite the section access after a binary laod. The rule is qvw inherit section access from the binary load but if you build a new section access in the calling qvw this will override rights defined in the binary, that's why you have the option "prohibit binary load" in order to avoid a user to do a binary and rewrite the Section Access.
Then in you new qvw do :
BINARY SourceDoc.Qvw;
Section Access;
...
Section Application;
...
and check "prohibit binary load " in the Document Properties\Opening tab.
A bit confused..coul c you please give me the clarify.. suppose I have 2 applications A.qvw and B.qvw..if I pull the A.qvw into B.qvw as a binary.
DeleteBoth application's are having section access.which section access is available in B.qvw..and what is thst 'prohibit binary load' ..pl plea give me a answer..
Ok, thank you
ReplyDelete