cancel
Showing results for 
Search instead for 
Did you mean: 

Application iView details

fabio_bellocchio
Participant
0 Kudos

Hi experts,

please, how can I get the iView name of an ABAP WebDynpro application, on the Portal?

I tried right-clicking on an element of the app, and "more field help", but it only shows the WebDynpro component information, nothing about the iView.

How can I get that?

Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member199125
Active Contributor
0 Kudos

In general it will dispaly view and window names also, but am not sure whts wrong with ur system,

Okay if you want to get view name using code, check this.

DATA lo_controller TYPE REF TO if_wd_view_controller.

DATA lo_view_info TYPE REF TO if_wd_rr_view.

lo_controller = wd_this->wd_get_api( ).

  • get view name from controller api via view info

lo_view_info = lo_controller_api->get_view_info( ).

IF lo_view_info IS BOUND.

rv_view_name = lo_view_info->get_name( ).

ENDIF.