2012 Oct 08 1:51 PM
Hi Experts!
Can evereone tell me where to find the meaning of the parameters of the function
bdc_transaction.
Thanks!
2012 Oct 08 2:02 PM
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 Experts!
Can evereone tell me where to find the meaning of the parameters of the function
bdc_transaction.
Thanks!
2012 Oct 08 2:02 PM
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
2012 Oct 08 2:20 PM
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.
2012 Oct 08 2:27 PM
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |