SAP MCI1_SHOW_OBJECTS Function Module for NOTRANSL: Anzeigen Objekte in den Standardanalysen









MCI1_SHOW_OBJECTS is a standard mci1 show objects SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Anzeigen Objekte in den Standardanalysen 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 mci1 show objects FM, simply by entering the name MCI1_SHOW_OBJECTS into the relevant SAP transaction such as SE37 or SE38.

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



Function MCI1_SHOW_OBJECTS 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 'MCI1_SHOW_OBJECTS'"NOTRANSL: Anzeigen Objekte in den Standardanalysen
EXPORTING
I_TABLE = "Name of information structure
I_FIELD = "Field name
I_OBJECT = "Object name
* I_SPA = "Set/Get parameter ID
I_FDATE = "ABAP System Field: Current Date of Application Server
I_TDATE = "ABAP System Field: Current Date of Application Server
I_ROLLNAME = "Data element (semantic domain)
I_VALUE = "

TABLES
I_S061 = "Location and planning
I_S062 = "Object class and manufacturer
I_S063 = "Damage Analysis 30 .
I_S065 = "Object statistics
I_S070 = "Breakdown Statistics
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLMCI1_001 PMIS/QMIS User Exit: Update

IMPORTING Parameters details for MCI1_SHOW_OBJECTS

I_TABLE - Name of information structure

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

I_FIELD - Field name

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

I_OBJECT - Object name

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

I_SPA - Set/Get parameter ID

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

I_FDATE - ABAP System Field: Current Date of Application Server

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

I_TDATE - ABAP System Field: Current Date of Application Server

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

I_ROLLNAME - Data element (semantic domain)

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

I_VALUE -

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

TABLES Parameters details for MCI1_SHOW_OBJECTS

I_S061 - Location and planning

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

I_S062 - Object class and manufacturer

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

I_S063 - Damage Analysis 30 .

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

I_S065 - Object statistics

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

I_S070 - Breakdown Statistics

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

Copy and paste ABAP code example for MCI1_SHOW_OBJECTS 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_i_s061  TYPE STANDARD TABLE OF S061, "   
lv_i_table  TYPE TMC7-MCINF, "   
lt_i_s062  TYPE STANDARD TABLE OF S062, "   
lv_i_field  TYPE DD03D-FIELDNAME, "   
lt_i_s063  TYPE STANDARD TABLE OF S063, "   
lv_i_object  TYPE STREENODE-NAME, "   
lv_i_spa  TYPE MCS04-MEMORYID, "   
lt_i_s065  TYPE STANDARD TABLE OF S065, "   
lt_i_s070  TYPE STANDARD TABLE OF S070, "   
lv_i_fdate  TYPE SY-DATUM, "   
lv_i_tdate  TYPE SY-DATUM, "   
lv_i_rollname  TYPE MCS04-ROLLNAME, "   
lv_i_value  TYPE MCS04. "   

  CALL FUNCTION 'MCI1_SHOW_OBJECTS'  "NOTRANSL: Anzeigen Objekte in den Standardanalysen
    EXPORTING
         I_TABLE = lv_i_table
         I_FIELD = lv_i_field
         I_OBJECT = lv_i_object
         I_SPA = lv_i_spa
         I_FDATE = lv_i_fdate
         I_TDATE = lv_i_tdate
         I_ROLLNAME = lv_i_rollname
         I_VALUE = lv_i_value
    TABLES
         I_S061 = lt_i_s061
         I_S062 = lt_i_s062
         I_S063 = lt_i_s063
         I_S065 = lt_i_s065
         I_S070 = lt_i_s070
. " MCI1_SHOW_OBJECTS




ABAP code using 7.40 inline data declarations to call FM MCI1_SHOW_OBJECTS

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 MCINF FROM TMC7 INTO @DATA(ld_i_table).
 
 
"SELECT single FIELDNAME FROM DD03D INTO @DATA(ld_i_field).
 
 
"SELECT single NAME FROM STREENODE INTO @DATA(ld_i_object).
 
"SELECT single MEMORYID FROM MCS04 INTO @DATA(ld_i_spa).
 
 
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_fdate).
 
"SELECT single DATUM FROM SY INTO @DATA(ld_i_tdate).
 
"SELECT single ROLLNAME FROM MCS04 INTO @DATA(ld_i_rollname).
 
 


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!