SAP CF_DB_AUFPL_TO_PRT_READ Function Module for NOTRANSL: Ermitteln Aufträge (AUFPL) zum Fertigungshilfsmittel
CF_DB_AUFPL_TO_PRT_READ is a standard cf db aufpl to prt read 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: Ermitteln Aufträge (AUFPL) zum Fertigungshilfsmittel 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 cf db aufpl to prt read FM, simply by entering the name CF_DB_AUFPL_TO_PRT_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: CFDB
Program Name: SAPLCFDB
Main Program: SAPLCFDB
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CF_DB_AUFPL_TO_PRT_READ 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 'CF_DB_AUFPL_TO_PRT_READ'"NOTRANSL: Ermitteln Aufträge (AUFPL) zum Fertigungshilfsmittel.
EXPORTING
* DELETED_INCL_IMP = 'X' "Selection Indicator
* IR_MEAS_POINT = "Range Table for Measuring Point
TABLES
R_AUFPL = "
R_MATNR = "
R_WERKS = "
R_EQUNR = "
R_DOKNR = "
R_DOKAR = "
R_DOKVR = "
R_DOKTL = "
R_SFHNR = "
IMPORTING Parameters details for CF_DB_AUFPL_TO_PRT_READ
DELETED_INCL_IMP - Selection Indicator
Data type: RC27X-FLG_SELDefault: 'X'
Optional: Yes
Call by Reference: Yes
IR_MEAS_POINT - Range Table for Measuring Point
Data type: IMT_POINT_RANGEOptional: Yes
Call by Reference: Yes
TABLES Parameters details for CF_DB_AUFPL_TO_PRT_READ
R_AUFPL -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
R_MATNR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
R_WERKS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
R_EQUNR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
R_DOKNR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
R_DOKAR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
R_DOKVR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
R_DOKTL -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
R_SFHNR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CF_DB_AUFPL_TO_PRT_READ 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_aufpl | TYPE STANDARD TABLE OF STRING, " | |||
| lv_deleted_incl_imp | TYPE RC27X-FLG_SEL, " 'X' | |||
| lt_r_matnr | TYPE STANDARD TABLE OF RC27X, " | |||
| lv_ir_meas_point | TYPE IMT_POINT_RANGE, " | |||
| lt_r_werks | TYPE STANDARD TABLE OF IMT_POINT_RANGE, " | |||
| lt_r_equnr | TYPE STANDARD TABLE OF IMT_POINT_RANGE, " | |||
| lt_r_doknr | TYPE STANDARD TABLE OF IMT_POINT_RANGE, " | |||
| lt_r_dokar | TYPE STANDARD TABLE OF IMT_POINT_RANGE, " | |||
| lt_r_dokvr | TYPE STANDARD TABLE OF IMT_POINT_RANGE, " | |||
| lt_r_doktl | TYPE STANDARD TABLE OF IMT_POINT_RANGE, " | |||
| lt_r_sfhnr | TYPE STANDARD TABLE OF IMT_POINT_RANGE. " |
|   CALL FUNCTION 'CF_DB_AUFPL_TO_PRT_READ' "NOTRANSL: Ermitteln Aufträge (AUFPL) zum Fertigungshilfsmittel |
| EXPORTING | ||
| DELETED_INCL_IMP | = lv_deleted_incl_imp | |
| IR_MEAS_POINT | = lv_ir_meas_point | |
| TABLES | ||
| R_AUFPL | = lt_r_aufpl | |
| R_MATNR | = lt_r_matnr | |
| R_WERKS | = lt_r_werks | |
| R_EQUNR | = lt_r_equnr | |
| R_DOKNR | = lt_r_doknr | |
| R_DOKAR | = lt_r_dokar | |
| R_DOKVR | = lt_r_dokvr | |
| R_DOKTL | = lt_r_doktl | |
| R_SFHNR | = lt_r_sfhnr | |
| . " CF_DB_AUFPL_TO_PRT_READ | ||
ABAP code using 7.40 inline data declarations to call FM CF_DB_AUFPL_TO_PRT_READ
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 FLG_SEL FROM RC27X INTO @DATA(ld_deleted_incl_imp). | ||||
| DATA(ld_deleted_incl_imp) | = 'X'. | |||
Search for further information about these or an SAP related objects