SAP RPY_CLIF_MULTI_READ Function Module for









RPY_CLIF_MULTI_READ is a standard rpy clif multi read 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 rpy clif multi read FM, simply by entering the name RPY_CLIF_MULTI_READ into the relevant SAP transaction such as SE37 or SE38.

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



Function RPY_CLIF_MULTI_READ 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 'RPY_CLIF_MULTI_READ'"
EXPORTING
* LANGUAGE = SY-LANGU "Language
* WITH_INSTANCE_RELATIONS = SEOX_TRUE "With instance relationships
* WITH_FRIENDS_RELATIONS = SEOX_TRUE "With friend relationships
* DEVELOPMENT_CLASS = ' ' "Development class
* WITH_CLASS_INTERFACE_INFOS = SEOX_TRUE "With basic information about classes/interfaces
* WITH_ATTRIBUTES = SEOX_TRUE "With attributes
* WITH_METHODS = SEOX_TRUE "With methods
* WITH_EVENTS = SEOX_TRUE "With events
* WITH_PARAMETERS = SEOX_TRUE "With parameters
* WITH_EXCEPTIONS = SEOX_TRUE "w/exceptions
* WITH_META_RELATIONS = SEOX_TRUE "With metarelationships

TABLES
* CLASS_INTERFACE_IDS = "Input: Class/interface IDs
* FRIENDS_RELATION_SET = "Output: Friend relationships
* ERROR_SET = "Output: Error messages
* CLASS_INTERFACE_INFO_SET = "Output: Basic information about classes and interfaces
* ATTRIBUTE_SET = "Output: Attributes
* METHOD_SET = "Output: Methods
* EVENT_SET = "Output: Events
* PARAMETER_SET = "Output: Parameters
* EXCEPTION_SET = "Output: Exceptions
* META_RELATION_SET = "Output: Metarelationships
* INSTANCE_RELATION_SET = "Output: Instance relationships
.



IMPORTING Parameters details for RPY_CLIF_MULTI_READ

LANGUAGE - Language

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

WITH_INSTANCE_RELATIONS - With instance relationships

Data type: RPYCLGF-FLAG
Default: SEOX_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_FRIENDS_RELATIONS - With friend relationships

Data type: RPYCLGF-FLAG
Default: SEOX_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)

DEVELOPMENT_CLASS - Development class

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

WITH_CLASS_INTERFACE_INFOS - With basic information about classes/interfaces

Data type: RPYCLGF-FLAG
Default: SEOX_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_ATTRIBUTES - With attributes

Data type: RPYCLGF-FLAG
Default: SEOX_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_METHODS - With methods

Data type: RPYCLGF-FLAG
Default: SEOX_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_EVENTS - With events

Data type: RPYCLGF-FLAG
Default: SEOX_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_PARAMETERS - With parameters

Data type: RPYCLGF-FLAG
Default: SEOX_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_EXCEPTIONS - w/exceptions

Data type: RPYCLGF-FLAG
Default: SEOX_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)

WITH_META_RELATIONS - With metarelationships

Data type: RPYCLGF-FLAG
Default: SEOX_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for RPY_CLIF_MULTI_READ

CLASS_INTERFACE_IDS - Input: Class/interface IDs

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

FRIENDS_RELATION_SET - Output: Friend relationships

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

ERROR_SET - Output: Error messages

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

CLASS_INTERFACE_INFO_SET - Output: Basic information about classes and interfaces

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

ATTRIBUTE_SET - Output: Attributes

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

METHOD_SET - Output: Methods

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

EVENT_SET - Output: Events

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

PARAMETER_SET - Output: Parameters

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

EXCEPTION_SET - Output: Exceptions

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

META_RELATION_SET - Output: Metarelationships

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

INSTANCE_RELATION_SET - Output: Instance relationships

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

Copy and paste ABAP code example for RPY_CLIF_MULTI_READ 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_language  TYPE SY-LANGU, "   SY-LANGU
lt_class_interface_ids  TYPE STANDARD TABLE OF RPYCLOK, "   
lt_friends_relation_set  TYPE STANDARD TABLE OF RPYCLFR, "   
lv_with_instance_relations  TYPE RPYCLGF-FLAG, "   SEOX_TRUE
lt_error_set  TYPE STANDARD TABLE OF RPYGSER, "   
lv_with_friends_relations  TYPE RPYCLGF-FLAG, "   SEOX_TRUE
lv_development_class  TYPE RPYCLGF-DEVCLASS, "   SPACE
lt_class_interface_info_set  TYPE STANDARD TABLE OF RPYCLCI, "   
lt_attribute_set  TYPE STANDARD TABLE OF RPYCLAT, "   
lv_with_class_interface_infos  TYPE RPYCLGF-FLAG, "   SEOX_TRUE
lt_method_set  TYPE STANDARD TABLE OF RPYCLME, "   
lv_with_attributes  TYPE RPYCLGF-FLAG, "   SEOX_TRUE
lt_event_set  TYPE STANDARD TABLE OF RPYCLEV, "   
lv_with_methods  TYPE RPYCLGF-FLAG, "   SEOX_TRUE
lv_with_events  TYPE RPYCLGF-FLAG, "   SEOX_TRUE
lt_parameter_set  TYPE STANDARD TABLE OF RPYCLPA, "   
lt_exception_set  TYPE STANDARD TABLE OF RPYCLEX, "   
lv_with_parameters  TYPE RPYCLGF-FLAG, "   SEOX_TRUE
lv_with_exceptions  TYPE RPYCLGF-FLAG, "   SEOX_TRUE
lt_meta_relation_set  TYPE STANDARD TABLE OF RPYCLMR, "   
lv_with_meta_relations  TYPE RPYCLGF-FLAG, "   SEOX_TRUE
lt_instance_relation_set  TYPE STANDARD TABLE OF RPYCLIR. "   

  CALL FUNCTION 'RPY_CLIF_MULTI_READ'  "
    EXPORTING
         LANGUAGE = lv_language
         WITH_INSTANCE_RELATIONS = lv_with_instance_relations
         WITH_FRIENDS_RELATIONS = lv_with_friends_relations
         DEVELOPMENT_CLASS = lv_development_class
         WITH_CLASS_INTERFACE_INFOS = lv_with_class_interface_infos
         WITH_ATTRIBUTES = lv_with_attributes
         WITH_METHODS = lv_with_methods
         WITH_EVENTS = lv_with_events
         WITH_PARAMETERS = lv_with_parameters
         WITH_EXCEPTIONS = lv_with_exceptions
         WITH_META_RELATIONS = lv_with_meta_relations
    TABLES
         CLASS_INTERFACE_IDS = lt_class_interface_ids
         FRIENDS_RELATION_SET = lt_friends_relation_set
         ERROR_SET = lt_error_set
         CLASS_INTERFACE_INFO_SET = lt_class_interface_info_set
         ATTRIBUTE_SET = lt_attribute_set
         METHOD_SET = lt_method_set
         EVENT_SET = lt_event_set
         PARAMETER_SET = lt_parameter_set
         EXCEPTION_SET = lt_exception_set
         META_RELATION_SET = lt_meta_relation_set
         INSTANCE_RELATION_SET = lt_instance_relation_set
. " RPY_CLIF_MULTI_READ




ABAP code using 7.40 inline data declarations to call FM RPY_CLIF_MULTI_READ

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 LANGU FROM SY INTO @DATA(ld_language).
DATA(ld_language) = SY-LANGU.
 
 
 
"SELECT single FLAG FROM RPYCLGF INTO @DATA(ld_with_instance_relations).
DATA(ld_with_instance_relations) = SEOX_TRUE.
 
 
"SELECT single FLAG FROM RPYCLGF INTO @DATA(ld_with_friends_relations).
DATA(ld_with_friends_relations) = SEOX_TRUE.
 
"SELECT single DEVCLASS FROM RPYCLGF INTO @DATA(ld_development_class).
DATA(ld_development_class) = ' '.
 
 
 
"SELECT single FLAG FROM RPYCLGF INTO @DATA(ld_with_class_interface_infos).
DATA(ld_with_class_interface_infos) = SEOX_TRUE.
 
 
"SELECT single FLAG FROM RPYCLGF INTO @DATA(ld_with_attributes).
DATA(ld_with_attributes) = SEOX_TRUE.
 
 
"SELECT single FLAG FROM RPYCLGF INTO @DATA(ld_with_methods).
DATA(ld_with_methods) = SEOX_TRUE.
 
"SELECT single FLAG FROM RPYCLGF INTO @DATA(ld_with_events).
DATA(ld_with_events) = SEOX_TRUE.
 
 
 
"SELECT single FLAG FROM RPYCLGF INTO @DATA(ld_with_parameters).
DATA(ld_with_parameters) = SEOX_TRUE.
 
"SELECT single FLAG FROM RPYCLGF INTO @DATA(ld_with_exceptions).
DATA(ld_with_exceptions) = SEOX_TRUE.
 
 
"SELECT single FLAG FROM RPYCLGF INTO @DATA(ld_with_meta_relations).
DATA(ld_with_meta_relations) = SEOX_TRUE.
 
 


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!