SAP SD_ADDRESS_INDICATOR_GET Function Module for NOTRANSL: Ermitteln des Adreßkennzeichens einer Adresse
SD_ADDRESS_INDICATOR_GET is a standard sd address indicator get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Ermitteln des Adreßkennzeichens einer Adresse processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for sd address indicator get FM, simply by entering the name SD_ADDRESS_INDICATOR_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: V09D
Program Name: SAPLV09D
Main Program: SAPLV09D
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SD_ADDRESS_INDICATOR_GET pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'SD_ADDRESS_INDICATOR_GET'"NOTRANSL: Ermitteln des Adreßkennzeichens einer Adresse.
EXPORTING
* FIF_ADRNR = "Address Number
* FIF_ADRNP = "Person Number
FIF_ADDRESS_TYPE = "Address Category
FIF_ADDRESS_ORIGIN = "Address origin
IMPORTING
FEF_ADRDA = "
EXCEPTIONS
INCORRECT_ADDRESS_ORIGIN = 1 INCORRECT_INPUT_PARAMETER = 2 INCORRECT_ADDRESS_TYPE = 3
IMPORTING Parameters details for SD_ADDRESS_INDICATOR_GET
FIF_ADRNR - Address Number
Data type: ADRC-ADDRNUMBEROptional: Yes
Call by Reference: No ( called with pass by value option)
FIF_ADRNP - Person Number
Data type: ADRP-PERSNUMBEROptional: Yes
Call by Reference: No ( called with pass by value option)
FIF_ADDRESS_TYPE - Address Category
Data type: AD_ADRTYPEOptional: No
Call by Reference: No ( called with pass by value option)
FIF_ADDRESS_ORIGIN - Address origin
Data type: ADDR_ORIGINOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for SD_ADDRESS_INDICATOR_GET
FEF_ADRDA -
Data type: ADRDAOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
INCORRECT_ADDRESS_ORIGIN - Invalid address source
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INCORRECT_INPUT_PARAMETER - Invalid Input Parameter
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INCORRECT_ADDRESS_TYPE - Invalid address category
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SD_ADDRESS_INDICATOR_GET Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_fef_adrda | TYPE ADRDA, " | |||
| lv_fif_adrnr | TYPE ADRC-ADDRNUMBER, " | |||
| lv_incorrect_address_origin | TYPE ADRC, " | |||
| lv_fif_adrnp | TYPE ADRP-PERSNUMBER, " | |||
| lv_incorrect_input_parameter | TYPE ADRP, " | |||
| lv_fif_address_type | TYPE AD_ADRTYPE, " | |||
| lv_incorrect_address_type | TYPE AD_ADRTYPE, " | |||
| lv_fif_address_origin | TYPE ADDR_ORIGIN. " |
|   CALL FUNCTION 'SD_ADDRESS_INDICATOR_GET' "NOTRANSL: Ermitteln des Adreßkennzeichens einer Adresse |
| EXPORTING | ||
| FIF_ADRNR | = lv_fif_adrnr | |
| FIF_ADRNP | = lv_fif_adrnp | |
| FIF_ADDRESS_TYPE | = lv_fif_address_type | |
| FIF_ADDRESS_ORIGIN | = lv_fif_address_origin | |
| IMPORTING | ||
| FEF_ADRDA | = lv_fef_adrda | |
| EXCEPTIONS | ||
| INCORRECT_ADDRESS_ORIGIN = 1 | ||
| INCORRECT_INPUT_PARAMETER = 2 | ||
| INCORRECT_ADDRESS_TYPE = 3 | ||
| . " SD_ADDRESS_INDICATOR_GET | ||
ABAP code using 7.40 inline data declarations to call FM SD_ADDRESS_INDICATOR_GET
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single ADDRNUMBER FROM ADRC INTO @DATA(ld_fif_adrnr). | ||||
| "SELECT single PERSNUMBER FROM ADRP INTO @DATA(ld_fif_adrnp). | ||||
Search for further information about these or an SAP related objects