Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

bdc

Former Member
0 Likes
817

hi all,

what is the syntax for bdc transaction method.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
790

hi

use this code

CALL TRANSACTION TCODE USING IT_BDCDATA

MODE M

UPDATE 'S'

MESSAGES INTO IT_BDCMSG.

7 REPLIES 7
Read only

Former Member
0 Likes
790

Hi,

call transaction (tcode)

using bdcdata

update 'S' or 'N'

mode 'A/E/N'

messages into BDCMSGCOLL.

regards,

Venkatesh

Read only

Former Member
0 Likes
790

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

Read only

Former Member
0 Likes
790
Read only

Former Member
0 Likes
790

CALL TRANSACTION '<tcode>' USING <internal tab of BDC:> MODE 'N/A'

MESSAGES INTO ITAB.

Read only

Former Member
0 Likes
791

hi

use this code

CALL TRANSACTION TCODE USING IT_BDCDATA

MODE M

UPDATE 'S'

MESSAGES INTO IT_BDCMSG.

Read only

Former Member
0 Likes
790

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

Read only

Former Member
0 Likes
790

hi,

call transaction (tcode)

using bdcdata

update 'S' or 'A', or 'L'

mode 'A/E/N/P'

messages into BDCMSGCOLL.

gavas.