SAP CLS_OBJ_ATTRIBUTE_SERVICE Function Module for Service function module









CLS_OBJ_ATTRIBUTE_SERVICE is a standard cls obj attribute service SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Service function module 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 cls obj attribute service FM, simply by entering the name CLS_OBJ_ATTRIBUTE_SERVICE into the relevant SAP transaction such as SE37 or SE38.

Function Group: CLS_OBJECT_ATTRIBUTES
Program Name: SAPLCLS_OBJECT_ATTRIBUTES
Main Program: SAPLCLS_OBJECT_ATTRIBUTES
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CLS_OBJ_ATTRIBUTE_SERVICE 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 'CLS_OBJ_ATTRIBUTE_SERVICE'"Service function module
EXPORTING
P_OBJECTTYPE = "WB Request: Type of Object of Development Environment
P_OPERATION = "WB Request: Operation in the Development Environment
P_EDITOR_INST = "Editor for object type groups

CHANGING
P_OBJECT_NAME = "WB Request: Key for Object in Development Environment
* P_TRANSPORT_REQUEST = "Request/Task

EXCEPTIONS
OPERATION_NOT_SUPPORTED = 1 ACTION_CANCELLED = 2 ERROR_OCCURED = 3 OBJECT_NOT_FOUND = 4 PERMISSION_FAILURE = 5
.



IMPORTING Parameters details for CLS_OBJ_ATTRIBUTE_SERVICE

P_OBJECTTYPE - WB Request: Type of Object of Development Environment

Data type: SEU_OBJTYP
Optional: No
Call by Reference: Yes

P_OPERATION - WB Request: Operation in the Development Environment

Data type: SEU_ACTION
Optional: No
Call by Reference: Yes

P_EDITOR_INST - Editor for object type groups

Data type: CL_WB_OBJECT_ATTRIBUTE_EDITOR
Optional: No
Call by Reference: Yes

CHANGING Parameters details for CLS_OBJ_ATTRIBUTE_SERVICE

P_OBJECT_NAME - WB Request: Key for Object in Development Environment

Data type: SEU_OBJKEY
Optional: No
Call by Reference: Yes

P_TRANSPORT_REQUEST - Request/Task

Data type: E070-TRKORR
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

OPERATION_NOT_SUPPORTED - Operation is not supported

Data type:
Optional: No
Call by Reference: Yes

ACTION_CANCELLED - Cancelled by user

Data type:
Optional: No
Call by Reference: Yes

ERROR_OCCURED - Error message

Data type:
Optional: No
Call by Reference: Yes

OBJECT_NOT_FOUND - Objekt doesn't exist

Data type:
Optional: No
Call by Reference: Yes

PERMISSION_FAILURE - Missing authorization

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for CLS_OBJ_ATTRIBUTE_SERVICE 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_p_objecttype  TYPE SEU_OBJTYP, "   
lv_p_object_name  TYPE SEU_OBJKEY, "   
lv_operation_not_supported  TYPE SEU_OBJKEY, "   
lv_p_operation  TYPE SEU_ACTION, "   
lv_action_cancelled  TYPE SEU_ACTION, "   
lv_p_transport_request  TYPE E070-TRKORR, "   
lv_error_occured  TYPE E070, "   
lv_p_editor_inst  TYPE CL_WB_OBJECT_ATTRIBUTE_EDITOR, "   
lv_object_not_found  TYPE CL_WB_OBJECT_ATTRIBUTE_EDITOR, "   
lv_permission_failure  TYPE CL_WB_OBJECT_ATTRIBUTE_EDITOR. "   

  CALL FUNCTION 'CLS_OBJ_ATTRIBUTE_SERVICE'  "Service function module
    EXPORTING
         P_OBJECTTYPE = lv_p_objecttype
         P_OPERATION = lv_p_operation
         P_EDITOR_INST = lv_p_editor_inst
    CHANGING
         P_OBJECT_NAME = lv_p_object_name
         P_TRANSPORT_REQUEST = lv_p_transport_request
    EXCEPTIONS
        OPERATION_NOT_SUPPORTED = 1
        ACTION_CANCELLED = 2
        ERROR_OCCURED = 3
        OBJECT_NOT_FOUND = 4
        PERMISSION_FAILURE = 5
. " CLS_OBJ_ATTRIBUTE_SERVICE




ABAP code using 7.40 inline data declarations to call FM CLS_OBJ_ATTRIBUTE_SERVICE

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 TRKORR FROM E070 INTO @DATA(ld_p_transport_request).
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!