Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts,
I have a requirement.
Assume that there are 3 qvws. Now I want to club all into one application. So finally I want to have one qvw application.
From binary load will get only application right. So advice me how to load in case of no source.
Thanks
Suneela
If you can access the source QVWs, you can throw each individual table (from all three) into a QVD and load the QVDs into a fresh QVW - but odds are you'll need to change the data model significantly to make it work, unless your three original models were built with this in mind.
If you can't access the source QVWs, I think you're pretty much out of luck.
You can do one by one only.. Using binary load..
App2 = App1 + App2
App3 = App2+App3..
Karthik
Hi,
Thanks for your reply.
But in that case, load will get fails right. Because I dont have source with me. So not possible to load and save it in qvd.
Here when we load app2 it will again will get fail. But we can save it. Anyway once after saving and fetching we need to load in new qvw. Now it will again fails since the qvw is just saved and not loaded. If we load then only data will save in memory.
I tried this method , but it did'nt work. Please help me in any alternative
Thanks
Do you want to do this as one time activity? or regularly?
one time
Create new qvw using binary load of first qvw...
then you can store any table as .qvd (using regular "Store tablename into table.qvd")
like this you can load for all 3 qvw..
Finally you can create new application based on these qvd. You can keep these qvd like history data..
Karthik
Thanks for the reply. I will work it and hope it looks correct. Thanks
Hi,
I tried it. but not getting how to store qvw into qvd.
Since we are fetching qvw the script look like this..
tab:
binary qvapp.qvw;
store tab into app.qvd;
Here if I use table name like above it gives error. Please help me in storing qvw into qvd;