SAP FKK_INV_CRM_MAP_TO_FICAX_BAPI Function Module for Mapping und Aufruf des Telco-spezifischen BAPIs
FKK_INV_CRM_MAP_TO_FICAX_BAPI is a standard fkk inv crm map to ficax bapi SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Mapping und Aufruf des Telco-spezifischen BAPIs processing and below is the pattern details for this FM, 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 fkk inv crm map to ficax bapi FM, simply by entering the name FKK_INV_CRM_MAP_TO_FICAX_BAPI into the relevant SAP transaction such as SE37 or SE38.
Function Group: INV_CRM_INBOUND
Program Name: SAPLINV_CRM_INBOUND
Main Program: SAPLINV_CRM_INBOUND
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FKK_INV_CRM_MAP_TO_FICAX_BAPI 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 'FKK_INV_CRM_MAP_TO_FICAX_BAPI'"Mapping und Aufruf des Telco-spezifischen BAPIs.
EXPORTING
X_BAPICRMUH1 = "
* X_TESTRUN = ' ' "
X_GLOBAL_PARAMETERS = "
TABLES
TX_BAPIMTCS = "
TX_BAPIPAREX = "
TX_BAPICRMSFK = "
TY_RETURN = "
BAPI_BILLDOCNUMBER = "
TY_EXTENSIONOUT = "
IMPORTING Parameters details for FKK_INV_CRM_MAP_TO_FICAX_BAPI
X_BAPICRMUH1 -
Data type: BAPICRMUH1Optional: No
Call by Reference: Yes
X_TESTRUN -
Data type: TESTRUNDefault: SPACE
Optional: Yes
Call by Reference: Yes
X_GLOBAL_PARAMETERS -
Data type: CL_FKKINV_CRM_SETTINGSOptional: No
Call by Reference: Yes
TABLES Parameters details for FKK_INV_CRM_MAP_TO_FICAX_BAPI
TX_BAPIMTCS -
Data type: BAPIMTCSOptional: No
Call by Reference: No ( called with pass by value option)
TX_BAPIPAREX -
Data type: BAPIPAREXOptional: No
Call by Reference: No ( called with pass by value option)
TX_BAPICRMSFK -
Data type: BAPICRMSFKOptional: No
Call by Reference: No ( called with pass by value option)
TY_RETURN -
Data type: BAPIRET2Optional: No
Call by Reference: No ( called with pass by value option)
BAPI_BILLDOCNUMBER -
Data type: BAPI_FKKINV_BILLDOCNUMBEROptional: No
Call by Reference: No ( called with pass by value option)
TY_EXTENSIONOUT -
Data type: BAPIPAREXOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FKK_INV_CRM_MAP_TO_FICAX_BAPI 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_tx_bapimtcs | TYPE STANDARD TABLE OF BAPIMTCS, " | |||
| lv_x_bapicrmuh1 | TYPE BAPICRMUH1, " | |||
| lv_x_testrun | TYPE TESTRUN, " SPACE | |||
| lt_tx_bapiparex | TYPE STANDARD TABLE OF BAPIPAREX, " | |||
| lt_tx_bapicrmsfk | TYPE STANDARD TABLE OF BAPICRMSFK, " | |||
| lv_x_global_parameters | TYPE CL_FKKINV_CRM_SETTINGS, " | |||
| lt_ty_return | TYPE STANDARD TABLE OF BAPIRET2, " | |||
| lt_bapi_billdocnumber | TYPE STANDARD TABLE OF BAPI_FKKINV_BILLDOCNUMBER, " | |||
| lt_ty_extensionout | TYPE STANDARD TABLE OF BAPIPAREX. " |
|   CALL FUNCTION 'FKK_INV_CRM_MAP_TO_FICAX_BAPI' "Mapping und Aufruf des Telco-spezifischen BAPIs |
| EXPORTING | ||
| X_BAPICRMUH1 | = lv_x_bapicrmuh1 | |
| X_TESTRUN | = lv_x_testrun | |
| X_GLOBAL_PARAMETERS | = lv_x_global_parameters | |
| TABLES | ||
| TX_BAPIMTCS | = lt_tx_bapimtcs | |
| TX_BAPIPAREX | = lt_tx_bapiparex | |
| TX_BAPICRMSFK | = lt_tx_bapicrmsfk | |
| TY_RETURN | = lt_ty_return | |
| BAPI_BILLDOCNUMBER | = lt_bapi_billdocnumber | |
| TY_EXTENSIONOUT | = lt_ty_extensionout | |
| . " FKK_INV_CRM_MAP_TO_FICAX_BAPI | ||
ABAP code using 7.40 inline data declarations to call FM FKK_INV_CRM_MAP_TO_FICAX_BAPI
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.| DATA(ld_x_testrun) | = ' '. | |||
Search for further information about these or an SAP related objects