cancel
Showing results for 
Search instead for 
Did you mean: 

How to use table popin?

Former Member
0 Kudos

Hi Experts,

i want to usse table popin in one of my ui table element.

i have just starte webdynpro ABAP.

So if any one has steps for this problem.

plz help me.

Regards,

Susheel K Joshi

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi,

Refer Standard Component : wdr_test_Table and SAP Online help :

http://help.sap.com/saphelp_nw70/helpdata/EN/f4/546c42eed40e53e10000000a155106/frameset.htm

Above mentioned threads will also help you.

I hope if you will have a look at Standard componennt for Popins it would surely help you.

Thanx.

Answers (3)

Answers (3)

Former Member
0 Kudos

Thanks All

Former Member
0 Kudos

Follow these steps:

1. Create an attribute 'Selected_Popin' type string in your node bound to the table control.

2. Goto the layout. Select the column and right click to Insert a table popin in the column

3. Create a transaprent container under that and design the popin as per your requirement

4. Create OnAction method for the table column and write the following code

" create a importing parameter CONTEXT_ELEMENT type if_wd_Context_element

       context->element->set_attribute( exporting name = 'SELECTED_POPIN'  " attribute that we create above
                                value  = 'TABLE_POPIN ' ) . " id of your table popin

5. Create OnClose event for the Popin and write the following code.

" create a importing parameter CONTEXT_ELEMENT type if_wd_Context_element

     context->element->set_attribute( exporting name = 'SELECTED_POPIN'  " attribute that we create above
                                 value  = '  ' ) . " space

Hope this helps !

Regards,

Radhika.

Former Member
0 Kudos

hi,

Refer this blog by Mohammed Anzy. It gives step by step how to use Table Popins:

/people/mohammed.anzys/blog/2007/08/02/webdynpro-abap-quick-tips-11table-popin-in-steps

I hope this will solve your problem.

Thanx.

Saurav.