‎2006 Sep 04 1:10 PM
can anyone tell me what all fields to be set to what while using the function modules
1) bdc_open_group
2)bdc_insert
3)bdc_close_group
thank u
‎2006 Sep 04 1:11 PM
Hello Ravi,
I have a good document for BDC. If you wish I can email it
thnx
‎2006 Sep 04 1:13 PM
‎2006 Nov 09 12:16 PM
plz can u mail me the docs on BDC my mail id is nujhat_mj@rediffmail.com
‎2006 Nov 09 12:21 PM
Hi I too need mat regarding bdc can u send me also .
my mail id: mhnagini@gmail.com
THANKS IN ADVANCE.
‎2006 Sep 04 1:15 PM
HI,
check the Include program "<b>BDCRECX1</b>" in SE38.
If contains calling of all the function you have listed.
for Example
<b>CALL FUNCTION 'BDC_OPEN_GROUP'
EXPORTING CLIENT = SY-MANDT "client
GROUP = GROUP "session name
USER = USER
KEEP = KEEP "keep session
HOLDDATE = HOLDDATE. "date
.
CALL FUNCTION 'BDC_INSERT'
EXPORTING TCODE = TCODE "transaction for bdc
TABLES DYNPROTAB = BDCDATA. "data
.
CALL FUNCTION 'BDC_CLOSE_GROUP'.</b>Regards,
Message was edited by: HRA
‎2006 Sep 04 1:15 PM
Hi ravi,
1>BDC_OPEN_GROUP-.This function module is used for opening the session.
2>BDC_INSERT ->This function module is used for inserting a record.
3>BDC_CLOSE_GROUP->This function module is used for closing the session.
for example u want to process 5 records then ,First BDC_OPEN_GROUP Will open a session
then BDC_INSERT ,then BDC_CLOSE_GROUP.
LIKE THIS.
PERFORM BDC_OPEN_GROUP.
LOOP AT ITAB.
PERFORM BDC_INSERT.
ENDLOOP.
PERFORM BDC_CLOSE_GROUP.
The above loop is process 5 times and BDC_INSERT will insert 5 records,each time only one.
Regards,
Nagaraj