Engin Celiktug 26.Feb.10 05:09 PM a Web browser Domino SAP R/3 Integration - SAP ConnectorConnector for SAP Solutions - All ReleasesWindows
Hi,
We have upgraded the SAP connector after the the upgrade of SAP system (to ECC version). Because, we could not use the old scripts anymore. Now, we are using the new script library/methods and we were be able to send the data to SAP but we could not get the old return message which we are saving it into notes document.
At SAP side, we could see all records in MESS_TAB and we could see the required return message at the end of the recordset but when we try to fetch filed list we get only the first record in the table(MESS_TAB).
Is there anybody knows How to get all records from MESS_TAB.
Here is the sample code. Although we use "while" to get all messages we can only get one record.
Thank you in advance!
Engin
CODE:
'and fill it into batch input table
intItemCount = Ubound(itmField.Values)
wrkstring = wrkstring + itmField.Values(0) + "=" + itmValue.Values(0)
For intIndex = 1 To intItemCount
wrkstring = wrkstring + "," + itmField.Values(intIndex) + "=" + itmValue.Values(intIndex)
Next
sapsession.ScreenFields = wrkstring
sapsession.MapByName=True