SAP SAA_NODES_FOR_LANDSCAPE Function Module for









SAA_NODES_FOR_LANDSCAPE is a standard saa nodes for landscape 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 saa nodes for landscape FM, simply by entering the name SAA_NODES_FOR_LANDSCAPE into the relevant SAP transaction such as SE37 or SE38.

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



Function SAA_NODES_FOR_LANDSCAPE 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 'SAA_NODES_FOR_LANDSCAPE'"
EXPORTING
* SAANODE = "
* NODEFUNC = "Node functions
* PRODONLY = "
* STANDALONE = "Standalone system
* CUSTOMER = "Transport type (SAP/CUSTOMER)
* SAPSYSTEM = "Transport type (SAP/CUSTOMER)
* NODEPOS = "Node position
* LANDSCAPE = "System Landscape
* MODIF = "Single-Character Flag
* DEPOPSYS = "Name of Operating System
* DEPDBSYS = "Database system in use
* DEPR3 = "Name of SAP R/3 System
* DEVSID = "Name of SAP R/3 System
* PRDSID = "Name of SAP R/3 System

IMPORTING
DELETE_FLAG = "Single-Character Flag

TABLES
* T_ISYS = "System Admin. Asst.: Struct. of Systems to Be Administrated
* T_ISAACONTC2 = "Customizing for more system administration (SSAA)
.



IMPORTING Parameters details for SAA_NODES_FOR_LANDSCAPE

SAANODE -

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

NODEFUNC - Node functions

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

PRODONLY -

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

STANDALONE - Standalone system

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

CUSTOMER - Transport type (SAP/CUSTOMER)

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

SAPSYSTEM - Transport type (SAP/CUSTOMER)

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

NODEPOS - Node position

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

LANDSCAPE - System Landscape

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

MODIF - Single-Character Flag

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

DEPOPSYS - Name of Operating System

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

DEPDBSYS - Database system in use

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

DEPR3 - Name of SAP R/3 System

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

DEVSID - Name of SAP R/3 System

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

PRDSID - Name of SAP R/3 System

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

EXPORTING Parameters details for SAA_NODES_FOR_LANDSCAPE

DELETE_FLAG - Single-Character Flag

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

TABLES Parameters details for SAA_NODES_FOR_LANDSCAPE

T_ISYS - System Admin. Asst.: Struct. of Systems to Be Administrated

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

T_ISAACONTC2 - Customizing for more system administration (SSAA)

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

Copy and paste ABAP code example for SAA_NODES_FOR_LANDSCAPE 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:
lt_t_isys  TYPE STANDARD TABLE OF SAA_WPSYS, "   
lv_saanode  TYPE SAACONT-SAANODE, "   
lv_delete_flag  TYPE CHAR1, "   
lv_nodefunc  TYPE SAACONT-NODEFUNC, "   
lv_prodonly  TYPE SAACONT-PRODONLY, "   
lv_standalone  TYPE CHAR1, "   
lv_customer  TYPE SAACOMP-TRANSTYPE, "   
lv_sapsystem  TYPE SAACOMP-TRANSTYPE, "   
lv_nodepos  TYPE SAACONT-NODEPOS, "   
lt_t_isaacontc2  TYPE STANDARD TABLE OF SAACONTC2, "   
lv_landscape  TYPE SAACONTC-LANDSCAPE, "   
lv_modif  TYPE CHAR1, "   
lv_depopsys  TYPE SAACONT-DEPOPSYS, "   
lv_depdbsys  TYPE SAACONT-DEPDBSYS, "   
lv_depr3  TYPE SY-SYSID, "   
lv_devsid  TYPE SY-SYSID, "   
lv_prdsid  TYPE SY-SYSID. "   

  CALL FUNCTION 'SAA_NODES_FOR_LANDSCAPE'  "
    EXPORTING
         SAANODE = lv_saanode
         NODEFUNC = lv_nodefunc
         PRODONLY = lv_prodonly
         STANDALONE = lv_standalone
         CUSTOMER = lv_customer
         SAPSYSTEM = lv_sapsystem
         NODEPOS = lv_nodepos
         LANDSCAPE = lv_landscape
         MODIF = lv_modif
         DEPOPSYS = lv_depopsys
         DEPDBSYS = lv_depdbsys
         DEPR3 = lv_depr3
         DEVSID = lv_devsid
         PRDSID = lv_prdsid
    IMPORTING
         DELETE_FLAG = lv_delete_flag
    TABLES
         T_ISYS = lt_t_isys
         T_ISAACONTC2 = lt_t_isaacontc2
. " SAA_NODES_FOR_LANDSCAPE




ABAP code using 7.40 inline data declarations to call FM SAA_NODES_FOR_LANDSCAPE

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 SAANODE FROM SAACONT INTO @DATA(ld_saanode).
 
 
"SELECT single NODEFUNC FROM SAACONT INTO @DATA(ld_nodefunc).
 
"SELECT single PRODONLY FROM SAACONT INTO @DATA(ld_prodonly).
 
 
"SELECT single TRANSTYPE FROM SAACOMP INTO @DATA(ld_customer).
 
"SELECT single TRANSTYPE FROM SAACOMP INTO @DATA(ld_sapsystem).
 
"SELECT single NODEPOS FROM SAACONT INTO @DATA(ld_nodepos).
 
 
"SELECT single LANDSCAPE FROM SAACONTC INTO @DATA(ld_landscape).
 
 
"SELECT single DEPOPSYS FROM SAACONT INTO @DATA(ld_depopsys).
 
"SELECT single DEPDBSYS FROM SAACONT INTO @DATA(ld_depdbsys).
 
"SELECT single SYSID FROM SY INTO @DATA(ld_depr3).
 
"SELECT single SYSID FROM SY INTO @DATA(ld_devsid).
 
"SELECT single SYSID FROM SY INTO @DATA(ld_prdsid).
 


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!