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

Function module to execute the session

Former Member
0 Likes
1,351

Hi All,

I want to know the function module to execute the session created in sm35.

7 REPLIES 7
Read only

Former Member
0 Likes
931

Hello,

BDC_INSERT , BDC_OPEN_GROUP, BDC_CLOSE.

Thank u,

santhosh

Edited by: santhosh kumar on Jan 9, 2009 10:48 AM

Read only

Former Member
0 Likes
931

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'.

Read only

Former Member
0 Likes
931

use program RSBDCSUB

Read only

Former Member
0 Likes
931

hi,

go through this link..

link:[;

hope this help you.

Regards

Ritesh J

Read only

Former Member
0 Likes
931

Function modules used in BDC are,

BDC_OPEN_GROUP

BDC_INSERT

BDC_CLOSE_GROUP

Regards,

Joan

Read only

Former Member
0 Likes
931

Hi,

There is no FM. To run session use RSBDCSUB standard progame.

Regards

Md.MahaboobKhan

Read only

Former Member
0 Likes
931

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