ADDRESS3_SAVED SAP Method Address of type 3 saved









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

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


Parameters of Method ADDRESS3_SAVED

.

NameTypeData TypeDescriptionDefault Value
IM_ADDRESS_NUMBERImportingTYPE
AD_ADDRNUM
Address number
IM_PERSON_NUMBERImportingTYPE
AD_PERSNUM
Person number
IM_SAVE_IN_UPDATE_TASKImportingTYPE
T_BOOLE
IM_T_OBJECT_TYPESImportingTYPE
ADREF_INDX_TAB
Table with logical object types for address search
IM_T_XADCPImportingTYPE
ADCP_TAB
Table type for VADCP
IM_T_XADR2ImportingTYPE
ADR2_TAB
Table type for VADR2
IM_T_XADR3ImportingTYPE
ADR3_TAB
Table type for VADR3
IM_T_XADR6ImportingTYPE
ADR6_TAB
Table type for VADR6
IM_T_XADRPImportingTYPE
ADRP_TAB
Table type for VADRP
IM_T_YADCPImportingTYPE
ADCP_TAB
Table type for VADCP
IM_T_YADR2ImportingTYPE
ADR2_TAB
Table type for VADR2
IM_T_YADR3ImportingTYPE
ADR3_TAB
Table type for VADR3
IM_T_YADR6ImportingTYPE
ADR6_TAB
Table type for VADR6
IM_T_YADRPImportingTYPE
ADRP_TAB
Table type for VADRP
IM_UPDATE_MODEImportingTYPE
AD_UPDFLAG
Address transfer structure change flag
IM_WRITE_TO_SEARCH_INDEXImportingTYPE
T_BOOLE



Exceptions of Method ADDRESS3_SAVED

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO /FLDQ/INTF_DQ_ENGINE.
DATA: lv_IM_ADDRESS_NUMBER TYPE AD_ADDRNUM,
lv_IM_PERSON_NUMBER TYPE AD_PERSNUM,
lv_IM_SAVE_IN_UPDATE_TASK TYPE T_BOOLE,
lv_IM_T_OBJECT_TYPES TYPE ADREF_INDX_TAB,
lv_IM_T_XADCP TYPE ADCP_TAB,
lv_IM_T_XADR2 TYPE ADR2_TAB,
lv_IM_T_XADR3 TYPE ADR3_TAB,
lv_IM_T_XADR6 TYPE ADR6_TAB,
lv_IM_T_XADRP TYPE ADRP_TAB,
lv_IM_T_YADCP TYPE ADCP_TAB,
lv_IM_T_YADR2 TYPE ADR2_TAB,
lv_IM_T_YADR3 TYPE ADR3_TAB,
lv_IM_T_YADR6 TYPE ADR6_TAB,
lv_IM_T_YADRP TYPE ADRP_TAB,
lv_IM_UPDATE_MODE TYPE AD_UPDFLAG,
lv_IM_WRITE_TO_SEARCH_INDEX TYPE T_BOOLE,
lv_other TYPE c.

CALL METHOD lo_class=>ADDRESS3_SAVED(
EXPORTING
IM_ADDRESS_NUMBER = lv_IM_ADDRESS_NUMBER
IM_PERSON_NUMBER = lv_IM_PERSON_NUMBER
IM_SAVE_IN_UPDATE_TASK = lv_IM_SAVE_IN_UPDATE_TASK
IM_T_OBJECT_TYPES = lv_IM_T_OBJECT_TYPES
IM_T_XADCP = lv_IM_T_XADCP
IM_T_XADR2 = lv_IM_T_XADR2
IM_T_XADR3 = lv_IM_T_XADR3
IM_T_XADR6 = lv_IM_T_XADR6
IM_T_XADRP = lv_IM_T_XADRP
IM_T_YADCP = lv_IM_T_YADCP
IM_T_YADR2 = lv_IM_T_YADR2
IM_T_YADR3 = lv_IM_T_YADR3
IM_T_YADR6 = lv_IM_T_YADR6
IM_T_YADRP = lv_IM_T_YADRP
IM_UPDATE_MODE = lv_IM_UPDATE_MODE
IM_WRITE_TO_SEARCH_INDEX = lv_IM_WRITE_TO_SEARCH_INDEX ).

Links to Related Class(s)

/FLDQ/IN...
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!