cancel
Showing results for 
Search instead for 
Did you mean: 

Can table be inserted in table popin...

Former Member
0 Kudos

Hello all,

My requirement is as follows:

I have a table which has two colums , 1. type of message and 2. number

Now there are three rows error ,warning and sucess and correspoing to them there are numbers ..ie table looks like this :

error 22

warning 13

sucess 12

these numbers are nothig but the numbers of records with ,error or warning or sucess...

Now when i click on error i have to see all the 22 error recors between error and warning row....similarly for warning and sucess....

is it posible by table popin ??

i saw WDR_TEST_TABLE but its inserting only one row not a table...

Regards,

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member230839
Participant
0 Kudos

Yes it is possible. Create a table popin for the table control you created and in that table popin also create a table which will display the records. and put a link cloumn in parent table and on click of that set the selected popin property to the popin you created as follows.

context_element->set_attribute( name = 'SELECTED_POPIN' value =  'TABLEPOPIN_1' ).

so the table will be displayed in the table popin on click of the link. put a logic in the click itself to puplate the table inside the table popin.

Regards,

Anil kumar G

Former Member
0 Kudos

Thanks for the reply..

let me try it and i will get back if any issue