‎2007 Oct 04 11:53 AM
‎2007 Oct 04 11:58 AM
hi
use this code
CALL TRANSACTION TCODE USING IT_BDCDATA
MODE M
UPDATE 'S'
MESSAGES INTO IT_BDCMSG.
‎2007 Oct 04 11:55 AM
Hi,
call transaction (tcode)
using bdcdata
update 'S' or 'N'
mode 'A/E/N'
messages into BDCMSGCOLL.
regards,
Venkatesh
‎2007 Oct 04 11:56 AM
hi,
Call transaction tcode using itab
mode mode
update update
messages into messtab.
tcode--  Transaction code of the screen used.
itab  internal table having all the details to insert.
mode Process of program
update  Process of table updation
messtab This is also an internal table containing all the system messages about the current transaction.
Reward points if you find this useful
Siva
‎2007 Oct 04 11:56 AM
Hi John,
Check this link,
https://forums.sdn.sap.com/click.jspa?searchID=5694705&messageID=3934385
Thanks,
‎2007 Oct 04 11:58 AM
CALL TRANSACTION '<tcode>' USING <internal tab of BDC:> MODE 'N/A'
MESSAGES INTO ITAB.
‎2007 Oct 04 11:58 AM
hi
use this code
CALL TRANSACTION TCODE USING IT_BDCDATA
MODE M
UPDATE 'S'
MESSAGES INTO IT_BDCMSG.
‎2007 Oct 04 12:04 PM
hI
Processing batch input data with CALL TRANSACTION USING is the faster of the two recommended data transfer methods. In this method, legacy data is processed inline in your data transfer program.
Syntax:
CALL TRANSACTION
‎2007 Oct 04 12:10 PM
hi,
call transaction (tcode)
using bdcdata
update 'S' or 'A', or 'L'
mode 'A/E/N/P'
messages into BDCMSGCOLL.
gavas.