CONVERT_BDCMSGCOLL_TO_BAPIRET2 is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name CONVERT_BDCMSGCOLL_TO_BAPIRET2 into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group: MEAG
Released Date: Not Released
Processing type: Normal fucntion module
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | DATA: it_imt_bdcmsgcoll TYPE STANDARD TABLE OF BDCMSGCOLL,"TABLES PARAM wa_imt_bdcmsgcoll LIKE LINE OF it_imt_bdcmsgcoll , it_ext_return TYPE STANDARD TABLE OF BAPIRET2,"TABLES PARAM wa_ext_return LIKE LINE OF it_ext_return . "populate fields of struture and append to itab append wa_imt_bdcmsgcoll to it_imt_bdcmsgcoll. "populate fields of struture and append to itab append wa_ext_return to it_ext_return. . CALL FUNCTION 'CONVERT_BDCMSGCOLL_TO_BAPIRET2' * TABLES * imt_bdcmsgcoll = it_imt_bdcmsgcoll * ext_return = it_ext_return . " CONVERT_BDCMSGCOLL_TO_BAPIRET2 IF SY-SUBRC EQ 0. "All OK ENDIF. |