SAP CLO0_DDB_OBJ_VALUATION_OPEN Function Module for









CLO0_DDB_OBJ_VALUATION_OPEN is a standard clo0 ddb obj valuation open SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 clo0 ddb obj valuation open FM, simply by entering the name CLO0_DDB_OBJ_VALUATION_OPEN into the relevant SAP transaction such as SE37 or SE38.

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



Function CLO0_DDB_OBJ_VALUATION_OPEN 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 'CLO0_DDB_OBJ_VALUATION_OPEN'"
EXPORTING
* CHANGE_NUMBER_IMP = "Change number
* OBTAB_IMP = "OBSOLETE, no longer used
* LANGUAGE_IMP = SY-LANGU "Language
* OVERRULE_UPARAM_IMP = ' ' "
* USER_PARAM_IMP = "New User Settings
* FRAME_TEXT_NEW = "
* NO_LOCK = ' ' "
* I_LOAD_CUSTOMIZING = ' ' "
* I_TABS_ACTIVE = ' ' "
* READONLY_CTMS = ' ' "
* I_CHECK_SYDATE = ' ' "
CLASSTYPE_IMP = "Class type
CLASS_IMP = "Class
* DATE_OF_CHANGE_IMP = SY-DATUM "Date for engineering change management
* DISPLAY_MODUS = ' ' "Display mode
* MTART_IMP = "Material type
OBJECT_IMP = "Classifiable object
OBJ_STRUCTURE_IMP = "Structure for saving classifiable object
* SHOW_ALL_VALUES = "

IMPORTING
CUOBJ_EXP = "

EXCEPTIONS
INVALID_CLASSCAT = 1 CLASS_STATUS_NOT_VALID = 2 CLASS_NOT_FOUND = 3 FOREIGN_LOCK = 4 SYSTEM_FAILURE = 5 CHANGE_NR_NOT_EXIST = 6 OTHERS = 7 NO_AUTHORITY = 8
.



IMPORTING Parameters details for CLO0_DDB_OBJ_VALUATION_OPEN

CHANGE_NUMBER_IMP - Change number

Data type: RMCLF-AENNR1
Optional: Yes
Call by Reference: No ( called with pass by value option)

OBTAB_IMP - OBSOLETE, no longer used

Data type: TCLAO-OBTAB
Optional: Yes
Call by Reference: No ( called with pass by value option)

LANGUAGE_IMP - Language

Data type: SY-LANGU
Default: SY-LANGU
Optional: Yes
Call by Reference: No ( called with pass by value option)

OVERRULE_UPARAM_IMP -

Data type: RMCLF-KREUZ
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

USER_PARAM_IMP - New User Settings

Data type: CLPROF
Optional: Yes
Call by Reference: No ( called with pass by value option)

FRAME_TEXT_NEW -

Data type: CHAR40
Optional: Yes
Call by Reference: No ( called with pass by value option)

NO_LOCK -

Data type: CHAR01
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_LOAD_CUSTOMIZING -

Data type: RMCLF-KREUZ
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_TABS_ACTIVE -

Data type: RMCLF-KREUZ
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

READONLY_CTMS -

Data type: RMCLF-KREUZ
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CHECK_SYDATE -

Data type: RMCLF-KREUZ
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

CLASSTYPE_IMP - Class type

Data type: KSSK-KLART
Optional: No
Call by Reference: No ( called with pass by value option)

CLASS_IMP - Class

Data type: KLAH-CLASS
Optional: No
Call by Reference: No ( called with pass by value option)

DATE_OF_CHANGE_IMP - Date for engineering change management

Data type: RMCLF-DATUV1
Default: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)

DISPLAY_MODUS - Display mode

Data type: RMCLF-KREUZ
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

MTART_IMP - Material type

Data type: MTART
Optional: Yes
Call by Reference: No ( called with pass by value option)

OBJECT_IMP - Classifiable object

Data type: KSSK-OBJEK
Optional: No
Call by Reference: No ( called with pass by value option)

OBJ_STRUCTURE_IMP - Structure for saving classifiable object

Data type: TCLA-OBTAB
Optional: No
Call by Reference: No ( called with pass by value option)

SHOW_ALL_VALUES -

Data type: RMCLF-KREUZ
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for CLO0_DDB_OBJ_VALUATION_OPEN

CUOBJ_EXP -

Data type: INOB-CUOBJ
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

INVALID_CLASSCAT - Incorrect class type

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

CLASS_STATUS_NOT_VALID - Class status not active

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

CLASS_NOT_FOUND - Class does not exist

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

FOREIGN_LOCK - Values locked

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

SYSTEM_FAILURE - System error

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

CHANGE_NR_NOT_EXIST -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

OTHERS - With commit work

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_AUTHORITY -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for CLO0_DDB_OBJ_VALUATION_OPEN 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_cuobj_exp  TYPE INOB-CUOBJ, "   
lv_invalid_classcat  TYPE INOB, "   
lv_change_number_imp  TYPE RMCLF-AENNR1, "   
lv_obtab_imp  TYPE TCLAO-OBTAB, "   
lv_language_imp  TYPE SY-LANGU, "   SY-LANGU
lv_overrule_uparam_imp  TYPE RMCLF-KREUZ, "   SPACE
lv_user_param_imp  TYPE CLPROF, "   
lv_frame_text_new  TYPE CHAR40, "   
lv_no_lock  TYPE CHAR01, "   SPACE
lv_i_load_customizing  TYPE RMCLF-KREUZ, "   SPACE
lv_i_tabs_active  TYPE RMCLF-KREUZ, "   SPACE
lv_readonly_ctms  TYPE RMCLF-KREUZ, "   ' '
lv_i_check_sydate  TYPE RMCLF-KREUZ, "   SPACE
lv_classtype_imp  TYPE KSSK-KLART, "   
lv_class_status_not_valid  TYPE KSSK, "   
lv_class_imp  TYPE KLAH-CLASS, "   
lv_class_not_found  TYPE KLAH, "   
lv_foreign_lock  TYPE KLAH, "   
lv_date_of_change_imp  TYPE RMCLF-DATUV1, "   SY-DATUM
lv_display_modus  TYPE RMCLF-KREUZ, "   SPACE
lv_system_failure  TYPE RMCLF, "   
lv_mtart_imp  TYPE MTART, "   
lv_change_nr_not_exist  TYPE MTART, "   
lv_others  TYPE MTART, "   
lv_object_imp  TYPE KSSK-OBJEK, "   
lv_no_authority  TYPE KSSK, "   
lv_obj_structure_imp  TYPE TCLA-OBTAB, "   
lv_show_all_values  TYPE RMCLF-KREUZ. "   

  CALL FUNCTION 'CLO0_DDB_OBJ_VALUATION_OPEN'  "
    EXPORTING
         CHANGE_NUMBER_IMP = lv_change_number_imp
         OBTAB_IMP = lv_obtab_imp
         LANGUAGE_IMP = lv_language_imp
         OVERRULE_UPARAM_IMP = lv_overrule_uparam_imp
         USER_PARAM_IMP = lv_user_param_imp
         FRAME_TEXT_NEW = lv_frame_text_new
         NO_LOCK = lv_no_lock
         I_LOAD_CUSTOMIZING = lv_i_load_customizing
         I_TABS_ACTIVE = lv_i_tabs_active
         READONLY_CTMS = lv_readonly_ctms
         I_CHECK_SYDATE = lv_i_check_sydate
         CLASSTYPE_IMP = lv_classtype_imp
         CLASS_IMP = lv_class_imp
         DATE_OF_CHANGE_IMP = lv_date_of_change_imp
         DISPLAY_MODUS = lv_display_modus
         MTART_IMP = lv_mtart_imp
         OBJECT_IMP = lv_object_imp
         OBJ_STRUCTURE_IMP = lv_obj_structure_imp
         SHOW_ALL_VALUES = lv_show_all_values
    IMPORTING
         CUOBJ_EXP = lv_cuobj_exp
    EXCEPTIONS
        INVALID_CLASSCAT = 1
        CLASS_STATUS_NOT_VALID = 2
        CLASS_NOT_FOUND = 3
        FOREIGN_LOCK = 4
        SYSTEM_FAILURE = 5
        CHANGE_NR_NOT_EXIST = 6
        OTHERS = 7
        NO_AUTHORITY = 8
. " CLO0_DDB_OBJ_VALUATION_OPEN




ABAP code using 7.40 inline data declarations to call FM CLO0_DDB_OBJ_VALUATION_OPEN

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 CUOBJ FROM INOB INTO @DATA(ld_cuobj_exp).
 
 
"SELECT single AENNR1 FROM RMCLF INTO @DATA(ld_change_number_imp).
 
"SELECT single OBTAB FROM TCLAO INTO @DATA(ld_obtab_imp).
 
"SELECT single LANGU FROM SY INTO @DATA(ld_language_imp).
DATA(ld_language_imp) = SY-LANGU.
 
"SELECT single KREUZ FROM RMCLF INTO @DATA(ld_overrule_uparam_imp).
DATA(ld_overrule_uparam_imp) = ' '.
 
 
 
DATA(ld_no_lock) = ' '.
 
"SELECT single KREUZ FROM RMCLF INTO @DATA(ld_i_load_customizing).
DATA(ld_i_load_customizing) = ' '.
 
"SELECT single KREUZ FROM RMCLF INTO @DATA(ld_i_tabs_active).
DATA(ld_i_tabs_active) = ' '.
 
"SELECT single KREUZ FROM RMCLF INTO @DATA(ld_readonly_ctms).
DATA(ld_readonly_ctms) = ' '.
 
"SELECT single KREUZ FROM RMCLF INTO @DATA(ld_i_check_sydate).
DATA(ld_i_check_sydate) = ' '.
 
"SELECT single KLART FROM KSSK INTO @DATA(ld_classtype_imp).
 
 
"SELECT single CLASS FROM KLAH INTO @DATA(ld_class_imp).
 
 
 
"SELECT single DATUV1 FROM RMCLF INTO @DATA(ld_date_of_change_imp).
DATA(ld_date_of_change_imp) = SY-DATUM.
 
"SELECT single KREUZ FROM RMCLF INTO @DATA(ld_display_modus).
DATA(ld_display_modus) = ' '.
 
 
 
 
 
"SELECT single OBJEK FROM KSSK INTO @DATA(ld_object_imp).
 
 
"SELECT single OBTAB FROM TCLA INTO @DATA(ld_obj_structure_imp).
 
"SELECT single KREUZ FROM RMCLF INTO @DATA(ld_show_all_values).
 


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!