SAP ISP_ADDRESS_CHECK_DEFAULT Function Module for









ISP_ADDRESS_CHECK_DEFAULT is a standard isp address check default SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 isp address check default FM, simply by entering the name ISP_ADDRESS_CHECK_DEFAULT into the relevant SAP transaction such as SE37 or SE38.

Function Group: JG05
Program Name: SAPLJG05
Main Program: SAPLJG05
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISP_ADDRESS_CHECK_DEFAULT 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 'ISP_ADDRESS_CHECK_DEFAULT'"
EXPORTING
ADR_IN = "
LAND1 = "
* TRANSFER_MODE = ' ' "
* GUELTIGAB_IN = "
* GUELTIGBIS_IN = "

IMPORTING
ADR_OUT = "
PFORT = "
POSTORT = "
POSTSTR = "
UVADR_GK = "
UVADR_PFACH = "
UVADR_STRASSE = "
GUELTIGAB_OUT = "
GUELTIGBIS_OUT = "

EXCEPTIONS
NO_CITY = 1
.



IMPORTING Parameters details for ISP_ADDRESS_CHECK_DEFAULT

ADR_IN -

Data type: JYTADR
Optional: No
Call by Reference: No ( called with pass by value option)

LAND1 -

Data type: JGTSADR-LAND1
Optional: No
Call by Reference: No ( called with pass by value option)

TRANSFER_MODE -

Data type:
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

GUELTIGAB_IN -

Data type: JSTORTPRO-GUELTIGAB
Optional: Yes
Call by Reference: No ( called with pass by value option)

GUELTIGBIS_IN -

Data type: JSTORTPRO-GUELTIGBIS
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for ISP_ADDRESS_CHECK_DEFAULT

ADR_OUT -

Data type: JYTADR
Optional: No
Call by Reference: No ( called with pass by value option)

PFORT -

Data type: JGTSADR-PEINORTPF
Optional: No
Call by Reference: No ( called with pass by value option)

POSTORT -

Data type: JGTSADR-POSTEINORT
Optional: No
Call by Reference: No ( called with pass by value option)

POSTSTR -

Data type: JGTSADR-POSTEINSTR
Optional: No
Call by Reference: No ( called with pass by value option)

UVADR_GK -

Data type: JGTSADR-UVADR_GK
Optional: No
Call by Reference: No ( called with pass by value option)

UVADR_PFACH -

Data type: JGTSADR-UVADR_PF
Optional: No
Call by Reference: No ( called with pass by value option)

UVADR_STRASSE -

Data type: JGTSADR-UVADR_ST
Optional: No
Call by Reference: No ( called with pass by value option)

GUELTIGAB_OUT -

Data type: JSTORTPRO-GUELTIGAB
Optional: No
Call by Reference: No ( called with pass by value option)

GUELTIGBIS_OUT -

Data type: JSTORTPRO-GUELTIGBIS
Optional: No
Call by Reference: No ( called with pass by value option)

EXCEPTIONS details

NO_CITY -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ISP_ADDRESS_CHECK_DEFAULT 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_adr_in  TYPE JYTADR, "   
lv_adr_out  TYPE JYTADR, "   
lv_no_city  TYPE JYTADR, "   
lv_land1  TYPE JGTSADR-LAND1, "   
lv_pfort  TYPE JGTSADR-PEINORTPF, "   
lv_postort  TYPE JGTSADR-POSTEINORT, "   
lv_transfer_mode  TYPE JGTSADR, "   SPACE
lv_poststr  TYPE JGTSADR-POSTEINSTR, "   
lv_gueltigab_in  TYPE JSTORTPRO-GUELTIGAB, "   
lv_uvadr_gk  TYPE JGTSADR-UVADR_GK, "   
lv_gueltigbis_in  TYPE JSTORTPRO-GUELTIGBIS, "   
lv_uvadr_pfach  TYPE JGTSADR-UVADR_PF, "   
lv_uvadr_strasse  TYPE JGTSADR-UVADR_ST, "   
lv_gueltigab_out  TYPE JSTORTPRO-GUELTIGAB, "   
lv_gueltigbis_out  TYPE JSTORTPRO-GUELTIGBIS. "   

  CALL FUNCTION 'ISP_ADDRESS_CHECK_DEFAULT'  "
    EXPORTING
         ADR_IN = lv_adr_in
         LAND1 = lv_land1
         TRANSFER_MODE = lv_transfer_mode
         GUELTIGAB_IN = lv_gueltigab_in
         GUELTIGBIS_IN = lv_gueltigbis_in
    IMPORTING
         ADR_OUT = lv_adr_out
         PFORT = lv_pfort
         POSTORT = lv_postort
         POSTSTR = lv_poststr
         UVADR_GK = lv_uvadr_gk
         UVADR_PFACH = lv_uvadr_pfach
         UVADR_STRASSE = lv_uvadr_strasse
         GUELTIGAB_OUT = lv_gueltigab_out
         GUELTIGBIS_OUT = lv_gueltigbis_out
    EXCEPTIONS
        NO_CITY = 1
. " ISP_ADDRESS_CHECK_DEFAULT




ABAP code using 7.40 inline data declarations to call FM ISP_ADDRESS_CHECK_DEFAULT

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 LAND1 FROM JGTSADR INTO @DATA(ld_land1).
 
"SELECT single PEINORTPF FROM JGTSADR INTO @DATA(ld_pfort).
 
"SELECT single POSTEINORT FROM JGTSADR INTO @DATA(ld_postort).
 
DATA(ld_transfer_mode) = ' '.
 
"SELECT single POSTEINSTR FROM JGTSADR INTO @DATA(ld_poststr).
 
"SELECT single GUELTIGAB FROM JSTORTPRO INTO @DATA(ld_gueltigab_in).
 
"SELECT single UVADR_GK FROM JGTSADR INTO @DATA(ld_uvadr_gk).
 
"SELECT single GUELTIGBIS FROM JSTORTPRO INTO @DATA(ld_gueltigbis_in).
 
"SELECT single UVADR_PF FROM JGTSADR INTO @DATA(ld_uvadr_pfach).
 
"SELECT single UVADR_ST FROM JGTSADR INTO @DATA(ld_uvadr_strasse).
 
"SELECT single GUELTIGAB FROM JSTORTPRO INTO @DATA(ld_gueltigab_out).
 
"SELECT single GUELTIGBIS FROM JSTORTPRO INTO @DATA(ld_gueltigbis_out).
 


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!