‎2008 Aug 07 6:54 AM
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
‎2008 Aug 07 7:12 AM
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
‎2008 Aug 07 7:09 AM
‎2008 Aug 07 7:12 AM
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
‎2008 Aug 07 7:13 AM
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
‎2008 Aug 07 7:18 AM
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
‎2008 Aug 07 7:19 AM
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
‎2008 Aug 07 7:28 AM