CHANGE_CURRENCY_CONVERSION SAP Method Use Billing Date for Converting Planned Revenues
Below is documentation, parameters and attributes of ABAP Method CHANGE_CURRENCY_CONVERSION within SAP class IF_BADI_KAOV_PLANNED_REVENUES. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_BADI_KAOV_PLANNED_REVENUES into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method CHANGE_CURRENCY_CONVERSION can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method CHANGE_CURRENCY_CONVERSION
.| Name | Type | Data Type | Description | Default Value |
| IS_ACCTSD | Importing | TYPE ACCTSD | Sales Order Value Revenue Transfer Structure | |
| CV_USE_BILLING_DATE | Changing | TYPE BOOLE_D | Use Billing Date (='X') | |
| CV_USE_PRICING_DATE | Changing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| CV_USE_RATE_FOR_PRICE_DETERMIN | Changing | TYPE BOOLE_D | Verschied. Buch.kreise: Kurs für Preisfindung verw. (= 'X') |
Exceptions of Method CHANGE_CURRENCY_CONVERSION
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_BADI_KAOV_PLANNED_REVENUES.
DATA: lv_CV_USE_BILLING_DATE TYPE BOOLE_D,
lv_IS_ACCTSD TYPE ACCTSD,
lv_CV_USE_PRICING_DATE TYPE BOOLE_D,
lv_CV_USE_RATE_FOR_PRICE_DETERMIN TYPE BOOLE_D,
lv_other TYPE c.
CALL METHOD lo_class=>CHANGE_CURRENCY_CONVERSION(
EXPORTING
IS_ACCTSD = lv_IS_ACCTSD
CHANGING
CV_USE_BILLING_DATE = lv_CV_USE_BILLING_DATE
CV_USE_PRICING_DATE = lv_CV_USE_PRICING_DATE
CV_USE_RATE_FOR_PRICE_DETERMIN = lv_CV_USE_RATE_FOR_PRICE_DETERMIN ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects