ADDRESS2_SAVED SAP Method Address of type 2 saved
Below is documentation, parameters and attributes of ABAP Method ADDRESS2_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 ADDRESS2_SAVED can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method ADDRESS2_SAVED
.| Name | Type | Data Type | Description | Default Value |
| IM_ADDRESS_NUMBER | Importing | TYPE AD_ADDRNUM | Address number | |
| IM_PERSON_NUMBER | Importing | TYPE AD_PERSNUM | Person number | |
| IM_SAVE_IN_UPDATE_TASK | Importing | TYPE T_BOOLE | ||
| IM_T_OBJECT_TYPES | Importing | TYPE ADREF_INDX_TAB | Table with logical object types for address search | |
| IM_T_XADR2 | Importing | TYPE ADR2_TAB | Table type for VADR2 | |
| IM_T_XADR3 | Importing | TYPE ADR3_TAB | Table type for VADR3 | |
| IM_T_XADR6 | Importing | TYPE ADR6_TAB | Table type for VADR6 | |
| IM_T_XADRC | Importing | TYPE ADRC_TAB | VADRC table type | |
| IM_T_XADRP | Importing | TYPE ADRP_TAB | Table type for VADRP | |
| IM_T_YADR2 | Importing | TYPE ADR2_TAB | Table type for VADR2 | |
| IM_T_YADR3 | Importing | TYPE ADR3_TAB | Table type for VADR3 | |
| IM_T_YADR6 | Importing | TYPE ADR6_TAB | Table type for VADR6 | |
| IM_T_YADRC | Importing | TYPE ADRC_TAB | VADRC table type | |
| IM_T_YADRP | Importing | TYPE ADRP_TAB | Table type for VADRP | |
| IM_UPDATE_MODE | Importing | TYPE AD_UPDFLAG | Address transfer structure change flag | |
| IM_WRITE_TO_SEARCH_INDEX | Importing | TYPE T_BOOLE |
Exceptions of Method ADDRESS2_SAVED
This method does not have any exceptionsExample 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_XADR2 TYPE ADR2_TAB,
lv_IM_T_XADR3 TYPE ADR3_TAB,
lv_IM_T_XADR6 TYPE ADR6_TAB,
lv_IM_T_XADRC TYPE ADRC_TAB,
lv_IM_T_XADRP TYPE ADRP_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_YADRC TYPE ADRC_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=>ADDRESS2_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_XADR2 = lv_IM_T_XADR2
IM_T_XADR3 = lv_IM_T_XADR3
IM_T_XADR6 = lv_IM_T_XADR6
IM_T_XADRC = lv_IM_T_XADRC
IM_T_XADRP = lv_IM_T_XADRP
IM_T_YADR2 = lv_IM_T_YADR2
IM_T_YADR3 = lv_IM_T_YADR3
IM_T_YADR6 = lv_IM_T_YADR6
IM_T_YADRC = lv_IM_T_YADRC
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