SAP CO_SF_CLASS_VALUES Function Module for Alle Merkmale zu Objekten der Klassenart 14 (Klassifizierung) erstellen
CO_SF_CLASS_VALUES is a standard co sf class values SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Alle Merkmale zu Objekten der Klassenart 14 (Klassifizierung) erstellen 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 sf class values FM, simply by entering the name CO_SF_CLASS_VALUES into the relevant SAP transaction such as SE37 or SE38.
Function Group: COSF
Program Name: SAPLCOSF
Main Program: SAPLCOSF
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CO_SF_CLASS_VALUES 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_SF_CLASS_VALUES'"Alle Merkmale zu Objekten der Klassenart 14 (Klassifizierung) erstellen.
EXPORTING
KKRMKPR_FLG = "
TABLES
OBJNR_TAB = "
* KKRMKPR_TAB = "
KKROBID_TAB = "Object Identification (CO Classification)
* NOT_SUPP_OBJNR_TAB = "
EXCEPTIONS
NOT_SUPPORTED_OBJNR = 1
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLCOSF_001 Customer Exit: Goods Receipt for Production Order
IMPORTING Parameters details for CO_SF_CLASS_VALUES
KKRMKPR_FLG -
Data type: RC27X-FLG_SELOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CO_SF_CLASS_VALUES
OBJNR_TAB -
Data type: JSTO_PREOptional: No
Call by Reference: No ( called with pass by value option)
KKRMKPR_TAB -
Data type: KKRMKPROptional: Yes
Call by Reference: No ( called with pass by value option)
KKROBID_TAB - Object Identification (CO Classification)
Data type: KKROBIDOptional: No
Call by Reference: No ( called with pass by value option)
NOT_SUPP_OBJNR_TAB -
Data type:Optional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NOT_SUPPORTED_OBJNR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CO_SF_CLASS_VALUES 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_objnr_tab | TYPE STANDARD TABLE OF JSTO_PRE, " | |||
| lv_kkrmkpr_flg | TYPE RC27X-FLG_SEL, " | |||
| lv_not_supported_objnr | TYPE RC27X, " | |||
| lt_kkrmkpr_tab | TYPE STANDARD TABLE OF KKRMKPR, " | |||
| lt_kkrobid_tab | TYPE STANDARD TABLE OF KKROBID, " | |||
| lt_not_supp_objnr_tab | TYPE STANDARD TABLE OF KKROBID. " |
|   CALL FUNCTION 'CO_SF_CLASS_VALUES' "Alle Merkmale zu Objekten der Klassenart 14 (Klassifizierung) erstellen |
| EXPORTING | ||
| KKRMKPR_FLG | = lv_kkrmkpr_flg | |
| TABLES | ||
| OBJNR_TAB | = lt_objnr_tab | |
| KKRMKPR_TAB | = lt_kkrmkpr_tab | |
| KKROBID_TAB | = lt_kkrobid_tab | |
| NOT_SUPP_OBJNR_TAB | = lt_not_supp_objnr_tab | |
| EXCEPTIONS | ||
| NOT_SUPPORTED_OBJNR = 1 | ||
| . " CO_SF_CLASS_VALUES | ||
ABAP code using 7.40 inline data declarations to call FM CO_SF_CLASS_VALUES
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 FLG_SEL FROM RC27X INTO @DATA(ld_kkrmkpr_flg). | ||||
Search for further information about these or an SAP related objects