SAP CO_IT_OPR_GET Function Module for CIM-Auftrag: Nächsten Vorgangsindexsatz aus ITAB ermitteln
CO_IT_OPR_GET is a standard co it opr get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for CIM-Auftrag: Nächsten Vorgangsindexsatz aus ITAB ermitteln 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 co it opr get FM, simply by entering the name CO_IT_OPR_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: COIT
Program Name: SAPLCOIT
Main Program: SAPLCOIT
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CO_IT_OPR_GET 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 'CO_IT_OPR_GET'"CIM-Auftrag: Nächsten Vorgangsindexsatz aus ITAB ermitteln.
EXPORTING
* AUFNR = ' ' "
* FLG_AFVGD = ' ' "
* FLG_SUBOPR = ' ' "
IMPORTING
AFVGD_EXP = "
INDEX = "
ITAB_INDEX = "
EXCEPTIONS
NO_MORE_OPR = 1
IMPORTING Parameters details for CO_IT_OPR_GET
AUFNR -
Data type: AUFK-AUFNRDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
FLG_AFVGD -
Data type: RC27X-FLG_SELDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
FLG_SUBOPR -
Data type: RC27X-FLG_SELDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for CO_IT_OPR_GET
AFVGD_EXP -
Data type: AFVGDOptional: No
Call by Reference: No ( called with pass by value option)
INDEX -
Data type: SFC_ITABOptional: No
Call by Reference: No ( called with pass by value option)
ITAB_INDEX -
Data type: SY-INDEXOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_MORE_OPR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CO_IT_OPR_GET 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_aufnr | TYPE AUFK-AUFNR, " ' ' | |||
| lv_afvgd_exp | TYPE AFVGD, " | |||
| lv_no_more_opr | TYPE AFVGD, " | |||
| lv_index | TYPE SFC_ITAB, " | |||
| lv_flg_afvgd | TYPE RC27X-FLG_SEL, " SPACE | |||
| lv_flg_subopr | TYPE RC27X-FLG_SEL, " SPACE | |||
| lv_itab_index | TYPE SY-INDEX. " |
|   CALL FUNCTION 'CO_IT_OPR_GET' "CIM-Auftrag: Nächsten Vorgangsindexsatz aus ITAB ermitteln |
| EXPORTING | ||
| AUFNR | = lv_aufnr | |
| FLG_AFVGD | = lv_flg_afvgd | |
| FLG_SUBOPR | = lv_flg_subopr | |
| IMPORTING | ||
| AFVGD_EXP | = lv_afvgd_exp | |
| INDEX | = lv_index | |
| ITAB_INDEX | = lv_itab_index | |
| EXCEPTIONS | ||
| NO_MORE_OPR = 1 | ||
| . " CO_IT_OPR_GET | ||
ABAP code using 7.40 inline data declarations to call FM CO_IT_OPR_GET
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 AUFNR FROM AUFK INTO @DATA(ld_aufnr). | ||||
| DATA(ld_aufnr) | = ' '. | |||
| "SELECT single FLG_SEL FROM RC27X INTO @DATA(ld_flg_afvgd). | ||||
| DATA(ld_flg_afvgd) | = ' '. | |||
| "SELECT single FLG_SEL FROM RC27X INTO @DATA(ld_flg_subopr). | ||||
| DATA(ld_flg_subopr) | = ' '. | |||
| "SELECT single INDEX FROM SY INTO @DATA(ld_itab_index). | ||||
Search for further information about these or an SAP related objects