SAP IOB_STRUCTURE_ROOT_PROPS_GET Function Module for IWB: Read structure root topic attributes









IOB_STRUCTURE_ROOT_PROPS_GET is a standard iob structure root props 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 IWB: Read structure root topic attributes 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 iob structure root props get FM, simply by entering the name IOB_STRUCTURE_ROOT_PROPS_GET into the relevant SAP transaction such as SE37 or SE38.

Function Group: SI30
Program Name: SAPLSI30
Main Program: SAPLSI30
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function IOB_STRUCTURE_ROOT_PROPS_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 'IOB_STRUCTURE_ROOT_PROPS_GET'"IWB: Read structure root topic attributes
EXPORTING
STRUCTURE_OBJECT = "
* ONLY_TITLE = ' ' "
* ONLY_INFO_OBJECT = ' ' "
* NO_SEC_LANGUAGE = ' ' "
* SUPPRESS_AUTHORITY_CHECK = 'X' "

IMPORTING
INFO_OBJECT = "
CHECK_OUT_INFO = "
IWB_TITLE = "
TECH_NAME = "
TYPE = "
IWB_STATE = "
LANGUAGE = "
CHANGE_RELEASE = "
INDUSTRY = "
COUNTRY = "

TABLES
CONTEXT = "

EXCEPTIONS
NOT_FOUND = 1
.



IMPORTING Parameters details for IOB_STRUCTURE_ROOT_PROPS_GET

STRUCTURE_OBJECT -

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

ONLY_TITLE -

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

ONLY_INFO_OBJECT -

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

NO_SEC_LANGUAGE -

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

SUPPRESS_AUTHORITY_CHECK -

Data type: IWPARAMS-FLAG
Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for IOB_STRUCTURE_ROOT_PROPS_GET

INFO_OBJECT -

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

CHECK_OUT_INFO -

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

IWB_TITLE -

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

TECH_NAME -

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

TYPE -

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

IWB_STATE -

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

LANGUAGE -

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

CHANGE_RELEASE -

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

INDUSTRY -

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

COUNTRY -

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

TABLES Parameters details for IOB_STRUCTURE_ROOT_PROPS_GET

CONTEXT -

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

EXCEPTIONS details

NOT_FOUND -

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

Copy and paste ABAP code example for IOB_STRUCTURE_ROOT_PROPS_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:
lt_context  TYPE STANDARD TABLE OF SDOKPROPTY, "   
lv_not_found  TYPE SDOKPROPTY, "   
lv_info_object  TYPE SDOKOBJECT, "   
lv_structure_object  TYPE SDOKOBJECT, "   
lv_check_out_info  TYPE IWDIALOG-CHOUT_INFO, "   
lv_iwb_title  TYPE IWIOPROPS-TITLE, "   
lv_only_title  TYPE IWDIALOG-MARK_COL, "   SPACE
lv_tech_name  TYPE IWIOPROPS-TECH_NAME, "   
lv_only_info_object  TYPE IWDIALOG-MARK_COL, "   SPACE
lv_type  TYPE IWIOPROPS-TYPE, "   
lv_no_sec_language  TYPE IWDIALOG-MARK_COL, "   SPACE
lv_iwb_state  TYPE IWIOPROPS-STATE, "   
lv_suppress_authority_check  TYPE IWPARAMS-FLAG, "   'X'
lv_language  TYPE IWIOPROPS-LANGUAGE, "   
lv_change_release  TYPE IWEXTEND-ID, "   
lv_industry  TYPE IWIOPROPS-INDUSTRY, "   
lv_country  TYPE IWIOPROPS-COUNTRY. "   

  CALL FUNCTION 'IOB_STRUCTURE_ROOT_PROPS_GET'  "IWB: Read structure root topic attributes
    EXPORTING
         STRUCTURE_OBJECT = lv_structure_object
         ONLY_TITLE = lv_only_title
         ONLY_INFO_OBJECT = lv_only_info_object
         NO_SEC_LANGUAGE = lv_no_sec_language
         SUPPRESS_AUTHORITY_CHECK = lv_suppress_authority_check
    IMPORTING
         INFO_OBJECT = lv_info_object
         CHECK_OUT_INFO = lv_check_out_info
         IWB_TITLE = lv_iwb_title
         TECH_NAME = lv_tech_name
         TYPE = lv_type
         IWB_STATE = lv_iwb_state
         LANGUAGE = lv_language
         CHANGE_RELEASE = lv_change_release
         INDUSTRY = lv_industry
         COUNTRY = lv_country
    TABLES
         CONTEXT = lt_context
    EXCEPTIONS
        NOT_FOUND = 1
. " IOB_STRUCTURE_ROOT_PROPS_GET




ABAP code using 7.40 inline data declarations to call FM IOB_STRUCTURE_ROOT_PROPS_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 CHOUT_INFO FROM IWDIALOG INTO @DATA(ld_check_out_info).
 
"SELECT single TITLE FROM IWIOPROPS INTO @DATA(ld_iwb_title).
 
"SELECT single MARK_COL FROM IWDIALOG INTO @DATA(ld_only_title).
DATA(ld_only_title) = ' '.
 
"SELECT single TECH_NAME FROM IWIOPROPS INTO @DATA(ld_tech_name).
 
"SELECT single MARK_COL FROM IWDIALOG INTO @DATA(ld_only_info_object).
DATA(ld_only_info_object) = ' '.
 
"SELECT single TYPE FROM IWIOPROPS INTO @DATA(ld_type).
 
"SELECT single MARK_COL FROM IWDIALOG INTO @DATA(ld_no_sec_language).
DATA(ld_no_sec_language) = ' '.
 
"SELECT single STATE FROM IWIOPROPS INTO @DATA(ld_iwb_state).
 
"SELECT single FLAG FROM IWPARAMS INTO @DATA(ld_suppress_authority_check).
DATA(ld_suppress_authority_check) = 'X'.
 
"SELECT single LANGUAGE FROM IWIOPROPS INTO @DATA(ld_language).
 
"SELECT single ID FROM IWEXTEND INTO @DATA(ld_change_release).
 
"SELECT single INDUSTRY FROM IWIOPROPS INTO @DATA(ld_industry).
 
"SELECT single COUNTRY FROM IWIOPROPS INTO @DATA(ld_country).
 


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!