Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi guys,
I got one QVW file with some functions...
//-----Start test.qvw-----------
Sub LoadReport
[temp]:
Load * from source;
....
End Sub
Call LoadReport
//-------End test.qvw---------
I first run this qvw to load data.
Then i run thE other QVW which is having this following statement..
//------Start Test2.qvw
Binary test.qvw
//------End Test2.qvw
I do not see the data model of test.qvw in Test2.qvw....
why?
But when write test.qvw like following
[Temp]:
Load * from source;
and the binary load it in second qvw then i can see the data model.
why?
Regards,
Saurabh
Terminate the BINARY statement with a semicolon.
I get a file-not-found error when I omit the semicolon. Parsing results are pretty inconsistent overall (Colin, it works even though there is a comment before the binary load), but the BINARY statement is NOT a control statement so you should terminate it with a semicolon...
The binary load command must be the first line of the script.
Remove the comment line before the binary load.
Terminate the BINARY statement with a semicolon.
I get a file-not-found error when I omit the semicolon. Parsing results are pretty inconsistent overall (Colin, it works even though there is a comment before the binary load), but the BINARY statement is NOT a control statement so you should terminate it with a semicolon...