‎2009 Jan 09 9:40 AM
Hi All,
I want to know the function module to execute the session created in sm35.
‎2009 Jan 09 9:42 AM
Hello,
BDC_INSERT , BDC_OPEN_GROUP, BDC_CLOSE.
Thank u,
santhosh
Edited by: santhosh kumar on Jan 9, 2009 10:48 AM
‎2009 Jan 09 9:43 AM
hi,
FM
CALL FUNCTION 'BDC_INSERT'
EXPORTING
tcode = c_pa30
TABLES
dynprotab = i_bdc_data.
CALL FUNCTION 'BDC_OPEN_GROUP'
EXPORTING
client = sy-mandt
group = c_bdcnam
user = sy-uname
keep = c_x.
CALL FUNCTION 'BDC_CLOSE_GROUP'.
‎2009 Jan 09 9:46 AM
‎2009 Jan 09 9:54 AM
‎2009 Jan 09 9:55 AM
Function modules used in BDC are,
BDC_OPEN_GROUP
BDC_INSERT
BDC_CLOSE_GROUP
Regards,
Joan
‎2009 Jan 09 10:30 AM
Hi,
There is no FM. To run session use RSBDCSUB standard progame.
Regards
Md.MahaboobKhan
‎2009 Jan 09 10:35 AM
Hi,
bdc_open_group:
this function module is used to open the session.
parameters related to this function module are
client:sy-mandt
uname:sy-uname
holddate:sy-datum
group: <groupname>
keep: 'X' / ' '.
2)bdc_insert:this function module is used to insert the
values to the session
parameters related to bdc_insert are
tcode: mention the transaction code
dynprotab: mention the internal table having structure like bdcdata.
3)bdc_close_group:
when ever u open the session it is must to close the session
Hope it helps you.
Regards Mansi