SAP INFO_MSD_IOS_GET Function Module for









INFO_MSD_IOS_GET is a standard info msd ios get 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 info msd ios get FM, simply by entering the name INFO_MSD_IOS_GET into the relevant SAP transaction such as SE37 or SE38.

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



Function INFO_MSD_IOS_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 'INFO_MSD_IOS_GET'"
EXPORTING
I_CHABASNM = "
I_ONLY_SEL = "

TABLES
E_T_IOBJ_LIST = "

EXCEPTIONS
INFO_NO_SUCH_CHABAS = 1 NO_INFO_OBJECTS = 2
.



IMPORTING Parameters details for INFO_MSD_IOS_GET

I_CHABASNM -

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

I_ONLY_SEL -

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

TABLES Parameters details for INFO_MSD_IOS_GET

E_T_IOBJ_LIST -

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

EXCEPTIONS details

INFO_NO_SUCH_CHABAS -

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

NO_INFO_OBJECTS -

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

Copy and paste ABAP code example for INFO_MSD_IOS_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_i_chabasnm  TYPE RODCHABAS-CHABASNM, "   
lt_e_t_iobj_list  TYPE STANDARD TABLE OF INFO_IOBJL, "   
lv_info_no_such_chabas  TYPE INFO_IOBJL, "   
lv_i_only_sel  TYPE INFO_IOBJL, "   
lv_no_info_objects  TYPE INFO_IOBJL. "   

  CALL FUNCTION 'INFO_MSD_IOS_GET'  "
    EXPORTING
         I_CHABASNM = lv_i_chabasnm
         I_ONLY_SEL = lv_i_only_sel
    TABLES
         E_T_IOBJ_LIST = lt_e_t_iobj_list
    EXCEPTIONS
        INFO_NO_SUCH_CHABAS = 1
        NO_INFO_OBJECTS = 2
. " INFO_MSD_IOS_GET




ABAP code using 7.40 inline data declarations to call FM INFO_MSD_IOS_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 CHABASNM FROM RODCHABAS INTO @DATA(ld_i_chabasnm).
 
 
 
 
 


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!