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

bdc_transaction

Former Member
0 Likes
647

Hi Experts!

Can evereone tell me where to find the meaning of the parameters of the function

bdc_transaction.

Thanks!

1 ACCEPTED SOLUTION
Read only

sandeep_katoch
Contributor
0 Likes
599

Hi Jorge,

If i am not misunderstanding your question!!!

Check this one

http://help.sap.com/abapdocu_70/en/ABAPCALL_TRANSACTION_BDC_OPTIONS.htm

Rgds,

Sandeep Katoch

Hi Jorge,

If i am not misunderstanding your question!!!

Check this one

http://help.sap.com/abapdocu_70/en/ABAPCALL_TRANSACTION_BDC_OPTIONS.htm

Rgds,

Sandeep Katoch

3 REPLIES 3
Read only

sandeep_katoch
Contributor
0 Likes
600

Hi Jorge,

If i am not misunderstanding your question!!!

Check this one

http://help.sap.com/abapdocu_70/en/ABAPCALL_TRANSACTION_BDC_OPTIONS.htm

Rgds,

Sandeep Katoch

Read only

0 Likes
599

Thanks, this information is useful but i wanted to know the meaning of this function parameters (see bellow):this function can be found in BDCRECXY include.

Anyway, for my purposes this help appears everything that i need.

Thanks again.

*----------------------------------------------------------------------*
*        Start new transaction according to parameters                 *
*----------------------------------------------------------------------*

FORM BDC_TRANSACTION TABLES P_MESSTAB

                    
USING  P_TCODE

                            P_CTU

                            P_MODE

                            P_UPDATE
.

DATA: L_SUBRC LIKE SY-SUBRC.



 
IF P_CTU <> 'X'.

   
CALL FUNCTION 'BDC_INSERT'

        
EXPORTING  TCODE     = P_TCODE

        
TABLES     DYNPROTAB = BDCDATA

        
EXCEPTIONS OTHERS    = 1.

 
ELSE.

   
CALL TRANSACTION P_TCODE USING BDCDATA

                    
MODE   P_MODE

                    
UPDATE P_UPDATE

                     MESSAGES
INTO P_MESSTAB.

 
ENDIF.

  L_SUBRC
= SY-SUBRC.

 
REFRESH BDCDATA.

  SY
-SUBRC = L_SUBRC.

ENDFORM.

Read only

0 Likes
599

Ur most welcome Jorge..!!!!