RV_CHECK_CONDITION_VALUE 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 RV_CHECK_CONDITION_VALUE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
V14A
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'RV_CHECK_CONDITION_VALUE' "
EXPORTING
* basic_quantity_unit = " konp-kmein Base unit of measure
check_currency = " konp-konwa Currency of value to be checked
* check_date = " sy-datum Date for exchange rate conversion
check_krech = " konp-krech Calculation type of value to be ch
check_price_quantity = " konp-kpein Price quantity of values to be che
check_quantity_unit = " konp-kmein Unit of measure of value to be che
* check_sign_only = ' ' " Only carry out sign check
check_value = " konp-kbetr Value to be Checked
condition = " konp Current Workarea condition record
condition_class = " t685a-koaid Condition class
* local_currency = " konp-konwa Local currency
* message_for_scale_value = ' ' " Display message for scale value
only_negative = " t685a-knega Indicator : only negative values a
* product = " komg-matnr Material number
* rate = " tcurr-ukurs Course: CHECK_CURRENCY <-> LOCAL_C
* no_check_konp = SPACE " c
* check_komv_kschl = " komv-kschl
IMPORTING
check_value = " konp-kbetr Value to be Checked
EXCEPTIONS
LOWER_LIMIT_RECORD = 1 " Lower limit condition record dropp
LOWER_LIMIT_TYPE = 2 " Lower limit condition type dropped
NEGATIVE_PRICE = 3 " Transferred price is negative
UPPER_LIMIT_RECORD = 4 " Upper limit condition record excee
UPPER_LIMIT_TYPE = 5 " Upper limit condition type exceede
. " RV_CHECK_CONDITION_VALUE
The ABAP code below is a full code listing to execute function module RV_CHECK_CONDITION_VALUE 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).
| ld_check_value | TYPE KONP-KBETR . |
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_check_value | TYPE KONP-KBETR , |
| ld_basic_quantity_unit | TYPE KONP-KMEIN , |
| ld_check_currency | TYPE KONP-KONWA , |
| ld_check_date | TYPE SY-DATUM , |
| ld_check_krech | TYPE KONP-KRECH , |
| ld_check_price_quantity | TYPE KONP-KPEIN , |
| ld_check_quantity_unit | TYPE KONP-KMEIN , |
| ld_check_sign_only | TYPE STRING , |
| ld_check_value | TYPE KONP-KBETR , |
| ld_condition | TYPE KONP , |
| ld_condition_class | TYPE T685A-KOAID , |
| ld_local_currency | TYPE KONP-KONWA , |
| ld_message_for_scale_value | TYPE STRING , |
| ld_only_negative | TYPE T685A-KNEGA , |
| ld_product | TYPE KOMG-MATNR , |
| ld_rate | TYPE TCURR-UKURS , |
| ld_no_check_konp | TYPE C , |
| ld_check_komv_kschl | TYPE KOMV-KSCHL . |
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 RV_CHECK_CONDITION_VALUE or its description.