ADDRESS_CHANGES SAP Method Determine the changes to the main address data









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

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


Parameters of Method ADDRESS_CHANGES

.

NameTypeData TypeDescriptionDefault Value
IT_ADDRESS_NEWImportingTYPE
/BOFU/ADDRT_ADDRESS
Table of Addresses
IT_ADDRESS_OLDImportingTYPE
/BOFU/ADDRT_ADDRESS
Table of Addresses
IT_EMAIL_OLDImportingTYPE
/BOFU/ADDRT_EMAIL_ADDRESSES
Email Addresses for several Addresses
IT_FACSIMILE_OLDImportingTYPE
/BOFU/ADDRT_FAX_NUMBERS
Facsimile Numbers for several addresses
IT_PAGER_OLDImportingTYPE
/BOFU/ADDRT_PAGER_NUMBERS
Pager Numbers of several Addresses
IT_PRINTER_OLDImportingTYPE
/BOFU/ADDRT_PRINTERS
Printers of several Addresses
IT_RML_OLDImportingTYPE
/BOFU/ADDRT_REMOTE_MAIL_ADDS
RML Addresses of several Addresses
IT_SSF_OLDImportingTYPE
/BOFU/ADDRT_SSF_ADDRESSES
SSF Addresses of several Addresses
IT_TELEPHONE_OLDImportingTYPE
/BOFU/ADDRT_TEL_NUMBERS
Telephone numbers for several addresses
IT_TELETEX_OLDImportingTYPE
/BOFU/ADDRT_TELETEX_NUMBERS
Teletex Numbers of several Addresses
IT_TELEX_OLDImportingTYPE
/BOFU/ADDRT_TELEX_NUMBERS
Telex Numbers of several Addresses
IT_WEB_OLDImportingTYPE
/BOFU/ADDRT_WEB_ADDRESSES
Web Addresses for several Addresses
IT_X400_OLDImportingTYPE
/BOFU/ADDRT_X400_ADDRESSES
X.400 Addresses of several Addresses
RT_CHANGE_NOTIFICATIONSReturningTYPE
/BOFU/ADDRT_CHANGE_NOTIFI
Table of address change notifications



Exceptions of Method ADDRESS_CHANGES

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /BOFU/IF_ADDR_COMPARE.
DATA: lv_IT_ADDRESS_NEW TYPE /BOFU/ADDRT_ADDRESS,
lv_IT_ADDRESS_OLD TYPE /BOFU/ADDRT_ADDRESS,
lv_IT_EMAIL_OLD TYPE /BOFU/ADDRT_EMAIL_ADDRESSES,
lv_IT_FACSIMILE_OLD TYPE /BOFU/ADDRT_FAX_NUMBERS,
lv_IT_PAGER_OLD TYPE /BOFU/ADDRT_PAGER_NUMBERS,
lv_IT_PRINTER_OLD TYPE /BOFU/ADDRT_PRINTERS,
lv_IT_RML_OLD TYPE /BOFU/ADDRT_REMOTE_MAIL_ADDS,
lv_IT_SSF_OLD TYPE /BOFU/ADDRT_SSF_ADDRESSES,
lv_IT_TELEPHONE_OLD TYPE /BOFU/ADDRT_TEL_NUMBERS,
lv_IT_TELETEX_OLD TYPE /BOFU/ADDRT_TELETEX_NUMBERS,
lv_IT_TELEX_OLD TYPE /BOFU/ADDRT_TELEX_NUMBERS,
lv_IT_WEB_OLD TYPE /BOFU/ADDRT_WEB_ADDRESSES,
lv_IT_X400_OLD TYPE /BOFU/ADDRT_X400_ADDRESSES,
lv_RT_CHANGE_NOTIFICATIONS TYPE /BOFU/ADDRT_CHANGE_NOTIFI,
lv_other TYPE c.

CALL METHOD lo_class=>ADDRESS_CHANGES(
EXPORTING
IT_ADDRESS_NEW = lv_IT_ADDRESS_NEW
IT_ADDRESS_OLD = lv_IT_ADDRESS_OLD
IT_EMAIL_OLD = lv_IT_EMAIL_OLD
IT_FACSIMILE_OLD = lv_IT_FACSIMILE_OLD
IT_PAGER_OLD = lv_IT_PAGER_OLD
IT_PRINTER_OLD = lv_IT_PRINTER_OLD
IT_RML_OLD = lv_IT_RML_OLD
IT_SSF_OLD = lv_IT_SSF_OLD
IT_TELEPHONE_OLD = lv_IT_TELEPHONE_OLD
IT_TELETEX_OLD = lv_IT_TELETEX_OLD
IT_TELEX_OLD = lv_IT_TELEX_OLD
IT_WEB_OLD = lv_IT_WEB_OLD
IT_X400_OLD = lv_IT_X400_OLD
RECEIVING
RT_CHANGE_NOTIFICATIONS = lv_RT_CHANGE_NOTIFICATIONS )



"Alternate coding for Method Call with returning parameter
lv_RT_CHANGE_NOTIFICATIONS = lo_class=>ADDRESS_CHANGES(
EXPORTING
IT_ADDRESS_NEW = lv_IT_ADDRESS_NEW
IT_ADDRESS_OLD = lv_IT_ADDRESS_OLD
IT_EMAIL_OLD = lv_IT_EMAIL_OLD
IT_FACSIMILE_OLD = lv_IT_FACSIMILE_OLD
IT_PAGER_OLD = lv_IT_PAGER_OLD
IT_PRINTER_OLD = lv_IT_PRINTER_OLD
IT_RML_OLD = lv_IT_RML_OLD
IT_SSF_OLD = lv_IT_SSF_OLD
IT_TELEPHONE_OLD = lv_IT_TELEPHONE_OLD
IT_TELETEX_OLD = lv_IT_TELETEX_OLD
IT_TELEX_OLD = lv_IT_TELEX_OLD
IT_WEB_OLD = lv_IT_WEB_OLD
IT_X400_OLD = lv_IT_X400_OLD ).

Links to Related Class(s)

/BOFU/IF...
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!