‎2007 May 28 11:09 AM
‎2007 May 28 11:12 AM
‎2007 May 28 11:11 AM
‎2007 May 28 11:12 AM
1. Session Method:
Open a session by calling the following functional module
CALL FUNCTION 'BDC_OPEN_GROUP'
EXPORTING
client = sy-mandt
group = session_name
keep = p_keep
user = sy-uname
2. Call the following FM and pass the BDCDATA table and the transaction code.
CALL FUNCTION 'BDC_INSERT'
EXPORTING
tcode = MM01'
TABLES
dynprotab = i_bdcdata
EXCEPTIONS
..
3 . Close the Session
CALL FUNCTION 'BDC_CLOSE_GROUP'
‎2007 May 28 11:12 AM