SAP MILL_MM_OB_START_REPORT Function Module for NOTRANSL: Ursprungscharge: Listreport starten
MILL_MM_OB_START_REPORT is a standard mill mm ob start report 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: Ursprungscharge: Listreport starten 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 mm ob start report FM, simply by entering the name MILL_MM_OB_START_REPORT into the relevant SAP transaction such as SE37 or SE38.
Function Group: /SAPMP/ORIGINAL_BATCH_SERV
Program Name: /SAPMP/SAPLORIGINAL_BATCH_SERV
Main Program: /SAPMP/SAPLORIGINAL_BATCH_SERV
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function MILL_MM_OB_START_REPORT 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_MM_OB_START_REPORT'"NOTRANSL: Ursprungscharge: Listreport starten.
EXPORTING
* TITLEID = "Character String 60
* TITLEPROG = "Predefined Type
* TITLEPAR1 = "Column Text
* TITLEPAR2 = "Column Text
* TITLEPAR3 = "Column Text
* PFSTAT = "Menu Painter: Status code
TABLES
LIST1 = "Structure for Internal Table as List Container
* LIST2 = "Structure for Internal Table as List Container
* LIST3 = "Structure for Internal Table as List Container
IMPORTING Parameters details for MILL_MM_OB_START_REPORT
TITLEID - Character String 60
Data type: CHAR_60Optional: Yes
Call by Reference: No ( called with pass by value option)
TITLEPROG - Predefined Type
Data type: SY-REPIDOptional: Yes
Call by Reference: No ( called with pass by value option)
TITLEPAR1 - Column Text
Data type: COLTEXTOptional: Yes
Call by Reference: No ( called with pass by value option)
TITLEPAR2 - Column Text
Data type: COLTEXTOptional: Yes
Call by Reference: No ( called with pass by value option)
TITLEPAR3 - Column Text
Data type: COLTEXTOptional: Yes
Call by Reference: No ( called with pass by value option)
PFSTAT - Menu Painter: Status code
Data type: GUI_STATUSOptional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for MILL_MM_OB_START_REPORT
LIST1 - Structure for Internal Table as List Container
Data type: ABAPLISTOptional: No
Call by Reference: No ( called with pass by value option)
LIST2 - Structure for Internal Table as List Container
Data type: ABAPLISTOptional: Yes
Call by Reference: Yes
LIST3 - Structure for Internal Table as List Container
Data type: ABAPLISTOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for MILL_MM_OB_START_REPORT 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_list1 | TYPE STANDARD TABLE OF ABAPLIST, " | |||
| lv_titleid | TYPE CHAR_60, " | |||
| lt_list2 | TYPE STANDARD TABLE OF ABAPLIST, " | |||
| lv_titleprog | TYPE SY-REPID, " | |||
| lt_list3 | TYPE STANDARD TABLE OF ABAPLIST, " | |||
| lv_titlepar1 | TYPE COLTEXT, " | |||
| lv_titlepar2 | TYPE COLTEXT, " | |||
| lv_titlepar3 | TYPE COLTEXT, " | |||
| lv_pfstat | TYPE GUI_STATUS. " |
|   CALL FUNCTION 'MILL_MM_OB_START_REPORT' "NOTRANSL: Ursprungscharge: Listreport starten |
| EXPORTING | ||
| TITLEID | = lv_titleid | |
| TITLEPROG | = lv_titleprog | |
| TITLEPAR1 | = lv_titlepar1 | |
| TITLEPAR2 | = lv_titlepar2 | |
| TITLEPAR3 | = lv_titlepar3 | |
| PFSTAT | = lv_pfstat | |
| TABLES | ||
| LIST1 | = lt_list1 | |
| LIST2 | = lt_list2 | |
| LIST3 | = lt_list3 | |
| . " MILL_MM_OB_START_REPORT | ||
ABAP code using 7.40 inline data declarations to call FM MILL_MM_OB_START_REPORT
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 REPID FROM SY INTO @DATA(ld_titleprog). | ||||
Search for further information about these or an SAP related objects