Start of Content Area

Background documentation IF_WD_RR_CONTROLLER  Locate the document in its SAP Library structure

Interface IF_WD_RR_CONTROLLER belongs to the API for the Web Dynpro Runtime Repository.

Interface IF_WD_RR_CONTROLLER allows access to the metadata for a Web Dynpro controller.

Use

This interface is accessed, for example, in a controller method of a Web Dynpro component as follows:

data:

data: l_cmp_api           type ref to if_wd_component,

l_controller_info type ref to if_wd_rr_controller.

l_controller_api = wd_this->wd_get_api( ).

l_controller_info = l_controller_api->get_controller_info( ).

 

Method GET_NAME

This method returns the name of the Web Dynpro controller.

Result

Name

Description

RESULT (Type STRING)

Name of the controller

 

 

End of Content Area