CHANGE_DATA SAP Method Argentina: Change data for billing document









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

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


Parameters of Method CHANGE_DATA

.

NameTypeData TypeDescriptionDefault Value
I_XVBRKImportingTYPE
VBRKVB
Reference Structure for XVBRK/YVBRP
XVBPAImportingTYPE
VBPAVB_TAB
Table type for VBPAVB: Partners
C_INDICATORChangingTYPE
CHAR1
Single-Character Indicator
C_LETTERChangingTYPE
J_1APCHAR
Character to be printed on the document
C_UPDATEChangingTYPE
CHAR1
Single-Character Indicator



Exceptions of Method CHANGE_DATA

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_IMP_AEI_PRTCH_CHNG.
DATA: lv_C_INDICATOR TYPE CHAR1,
lv_C_LETTER TYPE J_1APCHAR,
lv_C_UPDATE TYPE CHAR1,
lv_I_XVBRK TYPE VBRKVB,
lv_XVBPA TYPE VBPAVB_TAB,
lv_other TYPE c.

CALL METHOD lo_class=>CHANGE_DATA(
EXPORTING
I_XVBRK = lv_I_XVBRK
XVBPA = lv_XVBPA
CHANGING
C_INDICATOR = lv_C_INDICATOR
C_LETTER = lv_C_LETTER
C_UPDATE = lv_C_UPDATE ).

Links to Related Class(s)

IF_IMP_A...
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!