SAP CLDY_GET_VALUATION Function Module for
CLDY_GET_VALUATION is a standard cldy get valuation 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 cldy get valuation FM, simply by entering the name CLDY_GET_VALUATION into the relevant SAP transaction such as SE37 or SE38.
Function Group: CLDY
Program Name: SAPLCLDY
Main Program: SAPLCLDY
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CLDY_GET_VALUATION 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 'CLDY_GET_VALUATION'".
EXPORTING
I_KLART = "Class Type
* I_KEY_DATE = SY-DATUM "
* I_LOWER_DATE = "Date and Time, Current (Application Server) Date
* I_LANGUAGE = SY-LANGU "
TABLES
I_OBJECTS_TAB = "
I_R_CHARACTERISTICS_TAB = "
E_VALUES_TAB = "
EXCEPTIONS
NO_ENTRY_FOUND = 1 INTERNAL_ERROR = 2
IMPORTING Parameters details for CLDY_GET_VALUATION
I_KLART - Class Type
Data type: KLASSENARTOptional: No
Call by Reference: No ( called with pass by value option)
I_KEY_DATE -
Data type: SY-DATUMDefault: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_LOWER_DATE - Date and Time, Current (Application Server) Date
Data type: SY-DATUMOptional: Yes
Call by Reference: No ( called with pass by value option)
I_LANGUAGE -
Data type: SY-LANGUDefault: SY-LANGU
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CLDY_GET_VALUATION
I_OBJECTS_TAB -
Data type: CLSEL_SEARCH_OBJECTSOptional: No
Call by Reference: No ( called with pass by value option)
I_R_CHARACTERISTICS_TAB -
Data type: CLSEL_R_ATINNOptional: No
Call by Reference: No ( called with pass by value option)
E_VALUES_TAB -
Data type: AUSPOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_ENTRY_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CLDY_GET_VALUATION 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_i_klart | TYPE KLASSENART, " | |||
| lt_i_objects_tab | TYPE STANDARD TABLE OF CLSEL_SEARCH_OBJECTS, " | |||
| lv_no_entry_found | TYPE CLSEL_SEARCH_OBJECTS, " | |||
| lv_i_key_date | TYPE SY-DATUM, " SY-DATUM | |||
| lv_internal_error | TYPE SY, " | |||
| lt_i_r_characteristics_tab | TYPE STANDARD TABLE OF CLSEL_R_ATINN, " | |||
| lt_e_values_tab | TYPE STANDARD TABLE OF AUSP, " | |||
| lv_i_lower_date | TYPE SY-DATUM, " | |||
| lv_i_language | TYPE SY-LANGU. " SY-LANGU |
|   CALL FUNCTION 'CLDY_GET_VALUATION' " |
| EXPORTING | ||
| I_KLART | = lv_i_klart | |
| I_KEY_DATE | = lv_i_key_date | |
| I_LOWER_DATE | = lv_i_lower_date | |
| I_LANGUAGE | = lv_i_language | |
| TABLES | ||
| I_OBJECTS_TAB | = lt_i_objects_tab | |
| I_R_CHARACTERISTICS_TAB | = lt_i_r_characteristics_tab | |
| E_VALUES_TAB | = lt_e_values_tab | |
| EXCEPTIONS | ||
| NO_ENTRY_FOUND = 1 | ||
| INTERNAL_ERROR = 2 | ||
| . " CLDY_GET_VALUATION | ||
ABAP code using 7.40 inline data declarations to call FM CLDY_GET_VALUATION
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 DATUM FROM SY INTO @DATA(ld_i_key_date). | ||||
| DATA(ld_i_key_date) | = SY-DATUM. | |||
| "SELECT single DATUM FROM SY INTO @DATA(ld_i_lower_date). | ||||
| "SELECT single LANGU FROM SY INTO @DATA(ld_i_language). | ||||
| DATA(ld_i_language) | = SY-LANGU. | |||
Search for further information about these or an SAP related objects