CHANGE_AMOUNTS SAP Method of class MXVAT_REPORTS_INF









Below is documentation, parameters and attributes of ABAP Method CHANGE_AMOUNTS within SAP class MXVAT_REPORTS_INF. 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 MXVAT_REPORTS_INF 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_AMOUNTS can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method CHANGE_AMOUNTS

.

NameTypeData TypeDescriptionDefault Value
IM_DEF_RLImportingTYPE
VATMX_TAB_DEF_RL
Data for Deferred Taxes
IM_T683SImportingTYPE
VATMX_TAB_T683S
Identifiable and Non-Identifiable VAT conditions
IM_VAT_ACCImportingTYPE
VATMX_TAB_VAT_ACC
Maintaining G/L Accounts for Different Concepts
CH_REPORT_A1ChangingTYPE
VATMX_TAB_REPORT_A1
Mexico VAT Reports : Structure for ALV
CH_REPORT_B1ChangingTYPE
VATMX_TAB_REPORT_B1
Mexico VAT Reports : Structure for ALV



Exceptions of Method CHANGE_AMOUNTS

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO MXVAT_REPORTS_INF.
DATA: lv_CH_REPORT_A1 TYPE VATMX_TAB_REPORT_A1,
lv_CH_REPORT_B1 TYPE VATMX_TAB_REPORT_B1,
lv_IM_DEF_RL TYPE VATMX_TAB_DEF_RL,
lv_IM_T683S TYPE VATMX_TAB_T683S,
lv_IM_VAT_ACC TYPE VATMX_TAB_VAT_ACC,
lv_other TYPE c.

CALL METHOD lo_class=>CHANGE_AMOUNTS(
EXPORTING
IM_DEF_RL = lv_IM_DEF_RL
IM_T683S = lv_IM_T683S
IM_VAT_ACC = lv_IM_VAT_ACC
CHANGING
CH_REPORT_A1 = lv_CH_REPORT_A1
CH_REPORT_B1 = lv_CH_REPORT_B1 ).

Links to Related Class(s)

MXVAT_RE...
Full list of available SAP object classes

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!