SAP IPPE_CIF_FILTER Function Module for NOTRANSL: IPPE/CIF: Integrationsmodell erstellen
IPPE_CIF_FILTER is a standard ippe cif filter SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: IPPE/CIF: Integrationsmodell erstellen 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 ippe cif filter FM, simply by entering the name IPPE_CIF_FILTER into the relevant SAP transaction such as SE37 or SE38.
Function Group: IPPECIF
Program Name: SAPLIPPECIF
Main Program: SAPLIPPECIF
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function IPPE_CIF_FILTER 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 'IPPE_CIF_FILTER'"NOTRANSL: IPPE/CIF: Integrationsmodell erstellen.
EXPORTING
* IV_NO_DEPENDENCIES = ' ' "Checkbox
TABLES
R_MATERIAL = "
R_LOCATION = "
R_VERSION = "
* PRODVERSION = "Identification of Production Version for iPPE Distribution
* PPE_MATERIAL = "
* PPE_CLASS = "IPPE/CIF: Dependent Classes
* PPE_CHANGE_NO = "iPPE/CIF: Dependent Change Numbers
* PPE_SUPPLYAREA = "iPPE/CIF: Dependent Production Supply Areas
EXCEPTIONS
CAN_NOT_READ_DATA = 1 ERROR_DURING_EXPLOSION = 2 ERROR_DURING_OPENING_MC = 3
IMPORTING Parameters details for IPPE_CIF_FILTER
IV_NO_DEPENDENCIES - Checkbox
Data type: XFELDDefault: SPACE
Optional: Yes
Call by Reference: Yes
TABLES Parameters details for IPPE_CIF_FILTER
R_MATERIAL -
Data type: PPE_CIF_MAT_RANGESOptional: No
Call by Reference: Yes
R_LOCATION -
Data type: PPE_CIF_LOC_RANGESOptional: No
Call by Reference: Yes
R_VERSION -
Data type: PPE_CIF_VER_RANGESOptional: No
Call by Reference: Yes
PRODVERSION - Identification of Production Version for iPPE Distribution
Data type: PPE_CIF_PRODVERSIONOptional: Yes
Call by Reference: Yes
PPE_MATERIAL -
Data type: PPE_CIF_MATOptional: Yes
Call by Reference: Yes
PPE_CLASS - IPPE/CIF: Dependent Classes
Data type: PPE_CIF_CLASSOptional: Yes
Call by Reference: Yes
PPE_CHANGE_NO - iPPE/CIF: Dependent Change Numbers
Data type: PPE_CIF_CHANGE_NOOptional: Yes
Call by Reference: Yes
PPE_SUPPLYAREA - iPPE/CIF: Dependent Production Supply Areas
Data type: PPE_CIF_SUPPLYAREAOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
CAN_NOT_READ_DATA -
Data type:Optional: No
Call by Reference: Yes
ERROR_DURING_EXPLOSION -
Data type:Optional: No
Call by Reference: Yes
ERROR_DURING_OPENING_MC -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for IPPE_CIF_FILTER 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_r_material | TYPE STANDARD TABLE OF PPE_CIF_MAT_RANGES, " | |||
| lv_can_not_read_data | TYPE PPE_CIF_MAT_RANGES, " | |||
| lv_iv_no_dependencies | TYPE XFELD, " SPACE | |||
| lt_r_location | TYPE STANDARD TABLE OF PPE_CIF_LOC_RANGES, " | |||
| lv_error_during_explosion | TYPE PPE_CIF_LOC_RANGES, " | |||
| lt_r_version | TYPE STANDARD TABLE OF PPE_CIF_VER_RANGES, " | |||
| lv_error_during_opening_mc | TYPE PPE_CIF_VER_RANGES, " | |||
| lt_prodversion | TYPE STANDARD TABLE OF PPE_CIF_PRODVERSION, " | |||
| lt_ppe_material | TYPE STANDARD TABLE OF PPE_CIF_MAT, " | |||
| lt_ppe_class | TYPE STANDARD TABLE OF PPE_CIF_CLASS, " | |||
| lt_ppe_change_no | TYPE STANDARD TABLE OF PPE_CIF_CHANGE_NO, " | |||
| lt_ppe_supplyarea | TYPE STANDARD TABLE OF PPE_CIF_SUPPLYAREA. " |
|   CALL FUNCTION 'IPPE_CIF_FILTER' "NOTRANSL: IPPE/CIF: Integrationsmodell erstellen |
| EXPORTING | ||
| IV_NO_DEPENDENCIES | = lv_iv_no_dependencies | |
| TABLES | ||
| R_MATERIAL | = lt_r_material | |
| R_LOCATION | = lt_r_location | |
| R_VERSION | = lt_r_version | |
| PRODVERSION | = lt_prodversion | |
| PPE_MATERIAL | = lt_ppe_material | |
| PPE_CLASS | = lt_ppe_class | |
| PPE_CHANGE_NO | = lt_ppe_change_no | |
| PPE_SUPPLYAREA | = lt_ppe_supplyarea | |
| EXCEPTIONS | ||
| CAN_NOT_READ_DATA = 1 | ||
| ERROR_DURING_EXPLOSION = 2 | ||
| ERROR_DURING_OPENING_MC = 3 | ||
| . " IPPE_CIF_FILTER | ||
ABAP code using 7.40 inline data declarations to call FM IPPE_CIF_FILTER
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_iv_no_dependencies) | = ' '. | |||
Search for further information about these or an SAP related objects