cancel
Showing results for 
Search instead for 
Did you mean: 

How to open a table in pop up window

Former Member
0 Kudos

Hi Experts,

Please suggest how to open a table in a pop up window?

Regards,

Anindita

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hello,

If you want to display a table in the popup, create a new view and in that insert TABLE element and do the necessary context mappings. And create a new window and embed the view which is created previously. And place the below code in a method from which you can open the popup.


lr_popup = lr_window_manager->create_window(
  window_name         = 'WND_POPUP'  "Name of the window created
  TITLE               = 'Please enter all information'
  BUTTON_KIND         = 1
  ).

Hope this helps!

Regards,

Srilatha

Answers (1)

Answers (1)

Former Member
0 Kudos

answered