ABAP OO Class Methods

GET_LIST SAP Method - Return Current Setting







Below is documentation, parameters and attributes of ABAP Method GET_LIST within SAP class IF_GRPC_DL_ACTOR_UI. There is also a number of example ABAP code snipts to help you implement this method.

This method is available within SAP systems depending on your version and release level and you can view further information by entering the class name IF_GRPC_DL_ACTOR_UI into relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in. Also check out the contributions below to view or add related hints, tips, example screen shots and any other information.


SAP Class method belongs too

IF_GRPC_DL_ACTOR_UI

Method Name

GET_LIST

Method Type

Instance Method:   This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.







Exporting Parameters:


ET_ACTING_ENTRY " User Substituted by User TYPE GRPC_T_DELEGATE_OWN
E_INDEX " Internal Tables, Current Row Index TYPE SYTABIX

Exceptions:



Example ABAP coding


DATA:
ld_ET_ACTING_ENTRY TYPE GRPC_T_DELEGATE_OWN ,
ld_E_INDEX TYPE SYTABIX.


DATA: lo_UI TYPE REF TO IF_GRPC_DL_ACTOR_UI .
CALL METHOD lo_UI->GET_LIST(
IMPORTING
ET_ACTING_ENTRY = ld_ET_ACTING_ENTRY
E_INDEX = ld_E_INDEX ).