SAP ISP_MC_INVOICE_DECOMPRESS Function Module for
ISP_MC_INVOICE_DECOMPRESS is a standard isp mc invoice decompress 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 isp mc invoice decompress FM, simply by entering the name ISP_MC_INVOICE_DECOMPRESS into the relevant SAP transaction such as SE37 or SE38.
Function Group: JFM2
Program Name: SAPLJFM2
Main Program: SAPLJFM2
Appliation area: J
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISP_MC_INVOICE_DECOMPRESS 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 'ISP_MC_INVOICE_DECOMPRESS'".
EXPORTING
XJFRK = "
YJFRK = "
TABLES
XJFRP = "
XJFPA = "
YJFRP = "
YJFPA = "
XJFFDICHT = "
XDECJFRP = "
XDECJFPA = "
YDECJFRP = "
YDECJFPA = "
EXCEPTIONS
XJFFDICHT_EMPTY = 1
IMPORTING Parameters details for ISP_MC_INVOICE_DECOMPRESS
XJFRK -
Data type: JFRKVBOptional: No
Call by Reference: No ( called with pass by value option)
YJFRK -
Data type: JFRKVBOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISP_MC_INVOICE_DECOMPRESS
XJFRP -
Data type: JFRPVBOptional: No
Call by Reference: No ( called with pass by value option)
XJFPA -
Data type: JFPAVBOptional: No
Call by Reference: No ( called with pass by value option)
YJFRP -
Data type: JFRPVBOptional: No
Call by Reference: No ( called with pass by value option)
YJFPA -
Data type: JFPAVBOptional: No
Call by Reference: No ( called with pass by value option)
XJFFDICHT -
Data type: JFFDIVBOptional: No
Call by Reference: No ( called with pass by value option)
XDECJFRP -
Data type: JFRPVBOptional: No
Call by Reference: No ( called with pass by value option)
XDECJFPA -
Data type: JFPAVBOptional: No
Call by Reference: No ( called with pass by value option)
YDECJFRP -
Data type: JFRPVBOptional: No
Call by Reference: No ( called with pass by value option)
YDECJFPA -
Data type: JFPAVBOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
XJFFDICHT_EMPTY -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISP_MC_INVOICE_DECOMPRESS 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: | ||||
| lv_xjfrk | TYPE JFRKVB, " | |||
| lt_xjfrp | TYPE STANDARD TABLE OF JFRPVB, " | |||
| lv_xjffdicht_empty | TYPE JFRPVB, " | |||
| lt_xjfpa | TYPE STANDARD TABLE OF JFPAVB, " | |||
| lv_yjfrk | TYPE JFRKVB, " | |||
| lt_yjfrp | TYPE STANDARD TABLE OF JFRPVB, " | |||
| lt_yjfpa | TYPE STANDARD TABLE OF JFPAVB, " | |||
| lt_xjffdicht | TYPE STANDARD TABLE OF JFFDIVB, " | |||
| lt_xdecjfrp | TYPE STANDARD TABLE OF JFRPVB, " | |||
| lt_xdecjfpa | TYPE STANDARD TABLE OF JFPAVB, " | |||
| lt_ydecjfrp | TYPE STANDARD TABLE OF JFRPVB, " | |||
| lt_ydecjfpa | TYPE STANDARD TABLE OF JFPAVB. " |
|   CALL FUNCTION 'ISP_MC_INVOICE_DECOMPRESS' " |
| EXPORTING | ||
| XJFRK | = lv_xjfrk | |
| YJFRK | = lv_yjfrk | |
| TABLES | ||
| XJFRP | = lt_xjfrp | |
| XJFPA | = lt_xjfpa | |
| YJFRP | = lt_yjfrp | |
| YJFPA | = lt_yjfpa | |
| XJFFDICHT | = lt_xjffdicht | |
| XDECJFRP | = lt_xdecjfrp | |
| XDECJFPA | = lt_xdecjfpa | |
| YDECJFRP | = lt_ydecjfrp | |
| YDECJFPA | = lt_ydecjfpa | |
| EXCEPTIONS | ||
| XJFFDICHT_EMPTY = 1 | ||
| . " ISP_MC_INVOICE_DECOMPRESS | ||
ABAP code using 7.40 inline data declarations to call FM ISP_MC_INVOICE_DECOMPRESS
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.Search for further information about these or an SAP related objects