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

BDCDATA explaination

Former Member
0 Likes
818

Hi All,

Can somebody explain me below written code logic, regarding MODE and UPDATE part especially.

CALL TRANSACTION 'SE38' USING bdcdata

MODE 'N'

UPDATE 'S'

MESSAGES INTO messtab.

Thanks in advance.

Edited by: Anamika Bhargava on Aug 7, 2008 7:55 AM

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
795

Hi anamika,

Welcome to SDN.

Check the link. It will give you all the info about the statement and addtions in it.

http://help.sap.com/saphelp_sm32/helpdata/EN/fa/09715a543b11d1898e0000e8322d00/content.htm

Happy Posting.

Regards,

Anirban

6 REPLIES 6
Read only

Former Member
0 Likes
795

Welcome to SDN,

Pls read: [Rules of posting|;

and i would suggest you to search in SDN am sure you will get your answer.

Amit.

Read only

Former Member
0 Likes
796

Hi anamika,

Welcome to SDN.

Check the link. It will give you all the info about the statement and addtions in it.

http://help.sap.com/saphelp_sm32/helpdata/EN/fa/09715a543b11d1898e0000e8322d00/content.htm

Happy Posting.

Regards,

Anirban

Read only

Former Member
0 Likes
795

Hi,

there are 3 modes in bdc transaction

1.error screen mode.(it'll display only the error records)- E

2.all screen mode(display all the screens )- A

3.no screen mode(screen won't be displayed)- N

update mode

there are 2 modes

1.asynchronus

2.synchronus

regards

Thirumaran

Read only

Former Member
0 Likes
795

Hi Anamika,

CALL TRANSACTION 'SE38' USING t_bdcdata

MODE 'N'

UPDATE 'S'

MESSAGES INTO messtab.

The above statement call the transaction SE38 and populates it with the data in the table T_BDCDATA, in the mode 'N' -> No Screen Mode, i.e., it shoul run in background and update mode is 'S' -> Synchronized, i.e., the database updation shoulld be synchronized. All the messages are collected into the table messtab, which is of structure BDCMSGCOLL.

Regards,

Chandra Sekhar

Read only

Former Member
0 Likes
795

Hi,

.............

call transaction ' ' -->to call the specfic t/r code in bdc for reqired processing as per the recording.

bdcdata--->is a predefined data structure.

mode---->it indicates different modes like A,E & N. want the processing in foreground(means all screen) then use A.want to run in background means no screen then use N.want no screen only display error thrn use E.

updation--->indicates in synch or asynch process.

If itz asynchronous only error record gets struck remaing works.if it synchronous before the all error recods gets updates remaining gets struck.

Regards

Krishna

Read only

Former Member
0 Likes
795

Thanks to all.

Your replies are really helpful.