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 program for ME32K transaction

Former Member
0 Likes
1,234

Please help me to write a BDC program for ME32K transaction where I have to upload all the line items from C: drive.

Please help me to write a BDC program for ME32K transaction where I have to upload all the line items from C: drive.

2 REPLIES 2
Read only

Former Member
0 Likes
865

use the FM GUI_UPLOAD to upload the file from C:

record transaction ME23k in transaction SHDB and pass this table .

For more details about BDC see ABAp Docu

regards,

lavanya

Read only

Former Member
0 Likes
865

hey,

well first do a recording in shdb according to the stepd that are to be processed.

give the transcation name in the recording as me23k and follow the steps.

after that using call transaction method with the follwing syntax,prepare a report.

CALL TRANSACTION <transaction code>

USING <bdc table>

MODE <display mode>

UPDATE <UPDATE MODE>

MESSAGES INTO messtab

DISPLAY MODE:

A :display all(default setting)

E :Display only error

N :No display

Update mode

S : continue processing when update is completed(synchronous)

A : continue processing immediately.

Note: messtab,an internal table must have a structure BDCMSGCOLL.

include the recorded code in the reprt.

as in the code "bdc perform filling ......"(something like that..)according to ur given values ....

nd then execute....

for surther help try searching fr bdc examples in sdn

take care

\reward points if useful.

bubye...