SAP IHC_BTE_00002441_PAYEXT Function Module for
IHC_BTE_00002441_PAYEXT is a standard ihc bte 00002441 payext SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for ihc bte 00002441 payext FM, simply by entering the name IHC_BTE_00002441_PAYEXT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FI_FBQ
Program Name: SAPLFI_FBQ
Main Program: SAPLFI_FBQ
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function IHC_BTE_00002441_PAYEXT pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'IHC_BTE_00002441_PAYEXT'".
EXPORTING
IM_MESTYP = "Message Type
IM_REGUH = "Settlement data from payment program
IM_REGUD = "Form print transfer data
IM_FLAG_NO_REPLACE = "
IMPORTING
EX_FIMSG = "FI Messages
CHANGING
CH_XAVIS = "
CH_EDIDC = "Control Record (IDoc)
TABLES
T_REGUP = "Processed items from payment program
T_EDIDD = "Data Record (IDoc)
EXCEPTIONS
DONT_CREATE_IDOC = 1
IMPORTING Parameters details for IHC_BTE_00002441_PAYEXT
IM_MESTYP - Message Type
Data type: EDIDC-MESTYPOptional: No
Call by Reference: Yes
IM_REGUH - Settlement data from payment program
Data type: REGUHOptional: No
Call by Reference: Yes
IM_REGUD - Form print transfer data
Data type: REGUDOptional: No
Call by Reference: Yes
IM_FLAG_NO_REPLACE -
Data type: COptional: No
Call by Reference: Yes
EXPORTING Parameters details for IHC_BTE_00002441_PAYEXT
EX_FIMSG - FI Messages
Data type: FIMSGOptional: No
Call by Reference: Yes
CHANGING Parameters details for IHC_BTE_00002441_PAYEXT
CH_XAVIS -
Data type: COptional: No
Call by Reference: Yes
CH_EDIDC - Control Record (IDoc)
Data type: EDIDCOptional: No
Call by Reference: Yes
TABLES Parameters details for IHC_BTE_00002441_PAYEXT
T_REGUP - Processed items from payment program
Data type: REGUPOptional: No
Call by Reference: Yes
T_EDIDD - Data Record (IDoc)
Data type: EDIDDOptional: No
Call by Reference: Yes
EXCEPTIONS details
DONT_CREATE_IDOC -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for IHC_BTE_00002441_PAYEXT Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lt_t_regup | TYPE STANDARD TABLE OF REGUP, " | |||
| lv_ch_xavis | TYPE C, " | |||
| lv_ex_fimsg | TYPE FIMSG, " | |||
| lv_im_mestyp | TYPE EDIDC-MESTYP, " | |||
| lv_dont_create_idoc | TYPE EDIDC, " | |||
| lt_t_edidd | TYPE STANDARD TABLE OF EDIDD, " | |||
| lv_ch_edidc | TYPE EDIDC, " | |||
| lv_im_reguh | TYPE REGUH, " | |||
| lv_im_regud | TYPE REGUD, " | |||
| lv_im_flag_no_replace | TYPE C. " |
|   CALL FUNCTION 'IHC_BTE_00002441_PAYEXT' " |
| EXPORTING | ||
| IM_MESTYP | = lv_im_mestyp | |
| IM_REGUH | = lv_im_reguh | |
| IM_REGUD | = lv_im_regud | |
| IM_FLAG_NO_REPLACE | = lv_im_flag_no_replace | |
| IMPORTING | ||
| EX_FIMSG | = lv_ex_fimsg | |
| CHANGING | ||
| CH_XAVIS | = lv_ch_xavis | |
| CH_EDIDC | = lv_ch_edidc | |
| TABLES | ||
| T_REGUP | = lt_t_regup | |
| T_EDIDD | = lt_t_edidd | |
| EXCEPTIONS | ||
| DONT_CREATE_IDOC = 1 | ||
| . " IHC_BTE_00002441_PAYEXT | ||
ABAP code using 7.40 inline data declarations to call FM IHC_BTE_00002441_PAYEXT
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single MESTYP FROM EDIDC INTO @DATA(ld_im_mestyp). | ||||
Search for further information about these or an SAP related objects