SAP ISP_UPDA_SELECT_AENDNR Function Module for IS-M/SD: Time-Dependent Buffered Reading of UPDA Structures









ISP_UPDA_SELECT_AENDNR is a standard isp upda select aendnr SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for IS-M/SD: Time-Dependent Buffered Reading of UPDA Structures 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 isp upda select aendnr FM, simply by entering the name ISP_UPDA_SELECT_AENDNR into the relevant SAP transaction such as SE37 or SE38.

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



Function ISP_UPDA_SELECT_AENDNR 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_UPDA_SELECT_AENDNR'"IS-M/SD: Time-Dependent Buffered Reading of UPDA Structures
EXPORTING
AENDNRINIT = "
* X_POST_DB = "
* X_STRUKTUR = "
* X_ADRESSEN = "
* MANDT = SY-MANDT "
* AENDNRAKT = "

TABLES
STR_UPDA_TAB = "
ORT_UPDA_TAB = "
PLZ_UPDA_TAB = "
OTL_UPDA_TAB = "
POF_UPDA_TAB = "
KGS_UPDA_TAB = "
PLO_UPDA_TAB = "
* PLZ6_UPDA_TAB = "Change Records PCd 4-/6-Digit (Postal Data CH)

EXCEPTIONS
NO_DATA_FOUND = 1 ONLY_INSERTS = 2
.



IMPORTING Parameters details for ISP_UPDA_SELECT_AENDNR

AENDNRINIT -

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

X_POST_DB -

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

X_STRUKTUR -

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

X_ADRESSEN -

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

MANDT -

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

AENDNRAKT -

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

TABLES Parameters details for ISP_UPDA_SELECT_AENDNR

STR_UPDA_TAB -

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

ORT_UPDA_TAB -

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

PLZ_UPDA_TAB -

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

OTL_UPDA_TAB -

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

POF_UPDA_TAB -

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

KGS_UPDA_TAB -

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

PLO_UPDA_TAB -

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

PLZ6_UPDA_TAB - Change Records PCd 4-/6-Digit (Postal Data CH)

Data type: JSPLZZUOUPDA
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

NO_DATA_FOUND -

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

ONLY_INSERTS -

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

Copy and paste ABAP code example for ISP_UPDA_SELECT_AENDNR 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_aendnrinit  TYPE JSTAENDER-AENDNR, "   
lt_str_upda_tab  TYPE STANDARD TABLE OF JSTSTRUPDA, "   
lv_no_data_found  TYPE JSTSTRUPDA, "   
lv_x_post_db  TYPE JSTORTUPDA-X_POST_DB, "   
lv_only_inserts  TYPE JSTORTUPDA, "   
lt_ort_upda_tab  TYPE STANDARD TABLE OF JSTORTUPDA, "   
lv_x_struktur  TYPE JSTORTUPDA-X_STRUKTUR, "   
lt_plz_upda_tab  TYPE STANDARD TABLE OF JSTPLZUPDA, "   
lv_x_adressen  TYPE JSTORTUPDA-X_ADRESSEN, "   
lt_otl_upda_tab  TYPE STANDARD TABLE OF JSTOTLUPDA, "   
lv_mandt  TYPE SY-MANDT, "   SY-MANDT
lt_pof_upda_tab  TYPE STANDARD TABLE OF JSTPOFUPDA, "   
lv_aendnrakt  TYPE JSTAENDER-AENDNR, "   
lt_kgs_upda_tab  TYPE STANDARD TABLE OF JSTKGSUPDA, "   
lt_plo_upda_tab  TYPE STANDARD TABLE OF JSTPLOUPDA, "   
lt_plz6_upda_tab  TYPE STANDARD TABLE OF JSPLZZUOUPDA. "   

  CALL FUNCTION 'ISP_UPDA_SELECT_AENDNR'  "IS-M/SD: Time-Dependent Buffered Reading of UPDA Structures
    EXPORTING
         AENDNRINIT = lv_aendnrinit
         X_POST_DB = lv_x_post_db
         X_STRUKTUR = lv_x_struktur
         X_ADRESSEN = lv_x_adressen
         MANDT = lv_mandt
         AENDNRAKT = lv_aendnrakt
    TABLES
         STR_UPDA_TAB = lt_str_upda_tab
         ORT_UPDA_TAB = lt_ort_upda_tab
         PLZ_UPDA_TAB = lt_plz_upda_tab
         OTL_UPDA_TAB = lt_otl_upda_tab
         POF_UPDA_TAB = lt_pof_upda_tab
         KGS_UPDA_TAB = lt_kgs_upda_tab
         PLO_UPDA_TAB = lt_plo_upda_tab
         PLZ6_UPDA_TAB = lt_plz6_upda_tab
    EXCEPTIONS
        NO_DATA_FOUND = 1
        ONLY_INSERTS = 2
. " ISP_UPDA_SELECT_AENDNR




ABAP code using 7.40 inline data declarations to call FM ISP_UPDA_SELECT_AENDNR

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 AENDNR FROM JSTAENDER INTO @DATA(ld_aendnrinit).
 
 
 
"SELECT single X_POST_DB FROM JSTORTUPDA INTO @DATA(ld_x_post_db).
 
 
 
"SELECT single X_STRUKTUR FROM JSTORTUPDA INTO @DATA(ld_x_struktur).
 
 
"SELECT single X_ADRESSEN FROM JSTORTUPDA INTO @DATA(ld_x_adressen).
 
 
"SELECT single MANDT FROM SY INTO @DATA(ld_mandt).
DATA(ld_mandt) = SY-MANDT.
 
 
"SELECT single AENDNR FROM JSTAENDER INTO @DATA(ld_aendnrakt).
 
 
 
 


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!