ABAP OO Class Methods

WD_GET_API SAP Method - Wd Get Api







Below is documentation, parameters and attributes of ABAP Method WD_GET_API within SAP class IWCI_GRPC_ANA_HOMEPAGE. 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 IWCI_GRPC_ANA_HOMEPAGE 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

IWCI_GRPC_ANA_HOMEPAGE

Method Name

WD_GET_API

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.







Returning Parameters:


RESULT " TYPE REF TO IF_WD_CONTROLLER

Exceptions:



Example ABAP coding


DATA:
ld_RESULT TYPE REF TO IF_WD_CONTROLLER.


DATA: lo_HOMEPAGE TYPE REF TO IWCI_GRPC_ANA_HOMEPAGE .
CALL METHOD lo_HOMEPAGE->WD_GET_API(
RECEIVING
RESULT = ld_RESULT ).

"Alternate coding for Method Call with returning parameter



ld_RESULT = lo_HOMEPAGE->WD_GET_API().


ld_RESULT = lo_HOMEPAGE->WD_GET_API().