Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Connector QV - SAP - table name problem

Hi Guys,

I have code like this:

CUSTOM CONNECT TO "Provider=QvSAPConnector.dll;ASHOST=te2gui.sap.gk.impel.pl;SYSNR=14;CLIENT=600;KeepCasing=1;NullDate=1;XUserId=LHIPUIZKfKVGVCJKXA;XPassword=IEbERRJLZZNMDcNOBLNB;";

GVDPL_PZUS_MIEJ:

load *;

select * from /GVDPL/PZUS_MIEJ;

store GVDPL_PZUS_MIEJ into $(GDZIE_IBS)GVDPL_PZUS_MIEJ_600.qvd;

DROP Table GVDPL_PZUS_MIEJ;

So first there is connector to SAP from QV, and next i am trying to download table /GVDPL/PZUS_MIEJ

Problem is in table name : /GVDPL/PZUS_MIEJ --> exactly in sign "/".

When I am trying to connect to this table in SAP - there is an error: error.jpg

Maybe brackets will be heplful ? How can i connect to this table ?

Jacek Antek

1 Reply
Anonymous
Not applicable
Author

Problem solved:

These brackets solved the problem:

(/GVDPL/PZUS_MIEJ)