SAP MILL_PC_CHVW Function Module for NOTRANSL: Verwendungsdaten d. Prozesschargen ermitteln und anzeigen.
MILL_PC_CHVW is a standard mill pc chvw 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: Verwendungsdaten d. Prozesschargen ermitteln und anzeigen. 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 mill pc chvw FM, simply by entering the name MILL_PC_CHVW into the relevant SAP transaction such as SE37 or SE38.
Function Group: MILL_PC_CHVW
Program Name: SAPLMILL_PC_CHVW
Main Program: SAPLMILL_PC_CHVW
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function MILL_PC_CHVW 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 'MILL_PC_CHVW'"NOTRANSL: Verwendungsdaten d. Prozesschargen ermitteln und anzeigen..
EXPORTING
I_MATNR = "Material from Original Batch
I_WERKS = "Plant from Original Batch
I_CHARG = "Original Batch
I_AUFNR = "Order Number
* I_AUFPL = "Routing number of operations in the order
* I_DIRKZ = 'T' "Generic Type
I_CONTAINER_CTRL = "Container for Custom Controls in the Screen Area
TABLES
* IT_PBWU = "Mill: Update Structure for Process Batches
IMPORTING Parameters details for MILL_PC_CHVW
I_MATNR - Material from Original Batch
Data type: UCMATOptional: No
Call by Reference: No ( called with pass by value option)
I_WERKS - Plant from Original Batch
Data type: UCWRKOptional: No
Call by Reference: No ( called with pass by value option)
I_CHARG - Original Batch
Data type: UCCHAOptional: No
Call by Reference: No ( called with pass by value option)
I_AUFNR - Order Number
Data type: AUFNROptional: No
Call by Reference: No ( called with pass by value option)
I_AUFPL - Routing number of operations in the order
Data type: AFKO-AUFPLOptional: Yes
Call by Reference: No ( called with pass by value option)
I_DIRKZ - Generic Type
Data type: CDefault: 'T'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_CONTAINER_CTRL - Container for Custom Controls in the Screen Area
Data type: CL_GUI_DIALOGBOX_CONTAINEROptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for MILL_PC_CHVW
IT_PBWU - Mill: Update Structure for Process Batches
Data type: MILL_PBWU_VBOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for MILL_PC_CHVW 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_it_pbwu | TYPE STANDARD TABLE OF MILL_PBWU_VB, " | |||
| lv_i_matnr | TYPE UCMAT, " | |||
| lv_i_werks | TYPE UCWRK, " | |||
| lv_i_charg | TYPE UCCHA, " | |||
| lv_i_aufnr | TYPE AUFNR, " | |||
| lv_i_aufpl | TYPE AFKO-AUFPL, " | |||
| lv_i_dirkz | TYPE C, " 'T' | |||
| lv_i_container_ctrl | TYPE CL_GUI_DIALOGBOX_CONTAINER. " |
|   CALL FUNCTION 'MILL_PC_CHVW' "NOTRANSL: Verwendungsdaten d. Prozesschargen ermitteln und anzeigen. |
| EXPORTING | ||
| I_MATNR | = lv_i_matnr | |
| I_WERKS | = lv_i_werks | |
| I_CHARG | = lv_i_charg | |
| I_AUFNR | = lv_i_aufnr | |
| I_AUFPL | = lv_i_aufpl | |
| I_DIRKZ | = lv_i_dirkz | |
| I_CONTAINER_CTRL | = lv_i_container_ctrl | |
| TABLES | ||
| IT_PBWU | = lt_it_pbwu | |
| . " MILL_PC_CHVW | ||
ABAP code using 7.40 inline data declarations to call FM MILL_PC_CHVW
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 AUFPL FROM AFKO INTO @DATA(ld_i_aufpl). | ||||
| DATA(ld_i_dirkz) | = 'T'. | |||
Search for further information about these or an SAP related objects