SAP SCI_REMOTE_OBJLIST_RESULT_SHOW Function Module for









SCI_REMOTE_OBJLIST_RESULT_SHOW is a standard sci remote objlist result show 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 sci remote objlist result show FM, simply by entering the name SCI_REMOTE_OBJLIST_RESULT_SHOW into the relevant SAP transaction such as SE37 or SE38.

Function Group: S_CODE_INSPECTOR
Program Name: SAPLS_CODE_INSPECTOR
Main Program: SAPLS_CODE_INSPECTOR
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled + BasXML supported
Update:



Function SCI_REMOTE_OBJLIST_RESULT_SHOW 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 'SCI_REMOTE_OBJLIST_RESULT_SHOW'"
EXPORTING
* I_PROG_CONTOFFS = "
* I_INCL_LINES = "
I_INSPECTION = "
* I_FUZZY_LINES = FL_SMALL "
* I_FILTER_DEPTH = FD_INCLUDE_LINE "
* I_WHICH_RESULT = WR_SHOW_TREE "

IMPORTING
E_RESULT_LIST = "

EXCEPTIONS
INSPECTION_NOT_EXISTS = 1
.



IMPORTING Parameters details for SCI_REMOTE_OBJLIST_RESULT_SHOW

I_PROG_CONTOFFS -

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

I_INCL_LINES -

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

I_INSPECTION -

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

I_FUZZY_LINES -

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

I_FILTER_DEPTH -

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

I_WHICH_RESULT -

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

EXPORTING Parameters details for SCI_REMOTE_OBJLIST_RESULT_SHOW

E_RESULT_LIST -

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

EXCEPTIONS details

INSPECTION_NOT_EXISTS -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for SCI_REMOTE_OBJLIST_RESULT_SHOW 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_e_result_list  TYPE SCIT_ALVLISTN, "   
lv_i_prog_contoffs  TYPE SCIT_PROG_CONTOFFS, "   
lv_inspection_not_exists  TYPE SCIT_PROG_CONTOFFS, "   
lv_i_incl_lines  TYPE SCIT_INCL_LINE, "   
lv_i_inspection  TYPE SCIINS_INF, "   
lv_i_fuzzy_lines  TYPE INT2, "   FL_SMALL
lv_i_filter_depth  TYPE INT2, "   FD_INCLUDE_LINE
lv_i_which_result  TYPE INT2. "   WR_SHOW_TREE

  CALL FUNCTION 'SCI_REMOTE_OBJLIST_RESULT_SHOW'  "
    EXPORTING
         I_PROG_CONTOFFS = lv_i_prog_contoffs
         I_INCL_LINES = lv_i_incl_lines
         I_INSPECTION = lv_i_inspection
         I_FUZZY_LINES = lv_i_fuzzy_lines
         I_FILTER_DEPTH = lv_i_filter_depth
         I_WHICH_RESULT = lv_i_which_result
    IMPORTING
         E_RESULT_LIST = lv_e_result_list
    EXCEPTIONS
        INSPECTION_NOT_EXISTS = 1
. " SCI_REMOTE_OBJLIST_RESULT_SHOW




ABAP code using 7.40 inline data declarations to call FM SCI_REMOTE_OBJLIST_RESULT_SHOW

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.

 
 
 
 
 
DATA(ld_i_fuzzy_lines) = FL_SMALL.
 
DATA(ld_i_filter_depth) = FD_INCLUDE_LINE.
 
DATA(ld_i_which_result) = WR_SHOW_TREE.
 


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!