CS_OV_SUI_EDIT is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name CS_OV_SUI_EDIT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
CSOV
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'CS_OV_SUI_EDIT' "
EXPORTING
* i_stlty = " sui_class_data-stlty BOM Category
* i_stlnr = " sui_class_data-stlnr Bill of Material
* i_stlkn = " sui_class_data-stlkn BOM item node number
* i_stpoz = " sui_class_data-stpoz Internal Counter
* i_uposz = " sui_class_data-uposz Subitem Number
i_key_date = " itm_class_data-datuv Valid-From Date
i_ecn = " itm_class_data-aennr Change Number
. " CS_OV_SUI_EDIT
The ABAP code below is a full code listing to execute function module CS_OV_SUI_EDIT including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
DATA(ld_i_stlty) = some text here
DATA(ld_i_stlnr) = some text here
DATA(ld_i_stlkn) = Check type of data required
DATA(ld_i_stpoz) = Check type of data required
DATA(ld_i_uposz) = some text here
DATA(ld_i_key_date) = 20210129
DATA(ld_i_ecn) = some text here . CALL FUNCTION 'CS_OV_SUI_EDIT' EXPORTING * i_stlty = ld_i_stlty * i_stlnr = ld_i_stlnr * i_stlkn = ld_i_stlkn * i_stpoz = ld_i_stpoz * i_uposz = ld_i_uposz i_key_date = ld_i_key_date i_ecn = ld_i_ecn . " CS_OV_SUI_EDIT
IF SY-SUBRC EQ 0. "All OK ENDIF.
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_i_stlty | TYPE SUI_CLASS_DATA-STLTY , |
| ld_i_stlnr | TYPE SUI_CLASS_DATA-STLNR , |
| ld_i_stlkn | TYPE SUI_CLASS_DATA-STLKN , |
| ld_i_stpoz | TYPE SUI_CLASS_DATA-STPOZ , |
| ld_i_uposz | TYPE SUI_CLASS_DATA-UPOSZ , |
| ld_i_key_date | TYPE ITM_CLASS_DATA-DATUV , |
| ld_i_ecn | TYPE ITM_CLASS_DATA-AENNR . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name CS_OV_SUI_EDIT or its description.