SAP MILL_OC2_CHECK_ORG_ORDERS Function Module for NOTRANSL: Ursprungsaufträge auf Vormerksätze prüfen
MILL_OC2_CHECK_ORG_ORDERS is a standard mill oc2 check org orders 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: Ursprungsaufträge auf Vormerksätze prüfen 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 oc2 check org orders FM, simply by entering the name MILL_OC2_CHECK_ORG_ORDERS into the relevant SAP transaction such as SE37 or SE38.
Function Group: MILL_OC2
Program Name: SAPLMILL_OC2
Main Program: SAPLMILL_OC2
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function MILL_OC2_CHECK_ORG_ORDERS 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_OC2_CHECK_ORG_ORDERS'"NOTRANSL: Ursprungsaufträge auf Vormerksätze prüfen.
EXPORTING
* LS_TRANSTYP = "Activity category in SAP transaction
LS_AFRUD = "Dialog table for completion confirmations
I_LAST_OP = "Generic Type
TABLES
LT_AFPOD_LIST = "List of Original Orders for Combined Order
LT_AFRUD_O = "Dialog table for completion confirmations
EXCEPTIONS
ORDERS_NOT_LOCKED = 1
IMPORTING Parameters details for MILL_OC2_CHECK_ORG_ORDERS
LS_TRANSTYP - Activity category in SAP transaction
Data type: AKTYPOptional: Yes
Call by Reference: No ( called with pass by value option)
LS_AFRUD - Dialog table for completion confirmations
Data type: AFRUDOptional: No
Call by Reference: No ( called with pass by value option)
I_LAST_OP - Generic Type
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for MILL_OC2_CHECK_ORG_ORDERS
LT_AFPOD_LIST - List of Original Orders for Combined Order
Data type: TYP_AFPOD_LISTOptional: No
Call by Reference: Yes
LT_AFRUD_O - Dialog table for completion confirmations
Data type: AFRUDOptional: No
Call by Reference: Yes
EXCEPTIONS details
ORDERS_NOT_LOCKED - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for MILL_OC2_CHECK_ORG_ORDERS 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_ls_transtyp | TYPE AKTYP, " | |||
| lt_lt_afpod_list | TYPE STANDARD TABLE OF TYP_AFPOD_LIST, " | |||
| lv_orders_not_locked | TYPE TYP_AFPOD_LIST, " | |||
| lv_ls_afrud | TYPE AFRUD, " | |||
| lt_lt_afrud_o | TYPE STANDARD TABLE OF AFRUD, " | |||
| lv_i_last_op | TYPE C. " |
|   CALL FUNCTION 'MILL_OC2_CHECK_ORG_ORDERS' "NOTRANSL: Ursprungsaufträge auf Vormerksätze prüfen |
| EXPORTING | ||
| LS_TRANSTYP | = lv_ls_transtyp | |
| LS_AFRUD | = lv_ls_afrud | |
| I_LAST_OP | = lv_i_last_op | |
| TABLES | ||
| LT_AFPOD_LIST | = lt_lt_afpod_list | |
| LT_AFRUD_O | = lt_lt_afrud_o | |
| EXCEPTIONS | ||
| ORDERS_NOT_LOCKED = 1 | ||
| . " MILL_OC2_CHECK_ORG_ORDERS | ||
ABAP code using 7.40 inline data declarations to call FM MILL_OC2_CHECK_ORG_ORDERS
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