cancel
Showing results for 
Search instead for 
Did you mean: 

Displaying the user selected Dropdown values in a table in webdynprotttt

Former Member
0 Kudos

Hi techies,

    Here iam having 4 columns(1st column is to display names of supporting documents,2nd one is dropdown for user1,3rd one is dropdown for user2,4th one is dropdown for user3). whatever document user having then corresponds the document in column1, user1 select yes/No from 2nd column(dropdown by key),and iam capturing the user selected values through context.

whenver this application opens by user2 i need to display this table with the user1 selectd dropdown values in display mode.Now based on this user2 selects yes/No from 2nd dropdown...similarly based on user2 this action needto be performed at user3...

           Anyone could u please help in this is grately appreicated....thanks in advance.

Regards,

Kranthi

Accepted Solutions (0)

Answers (1)

Answers (1)

ramakrishnappa
Active Contributor
0 Kudos

Hi Kranthi,

Hope you are using table to store this data.


Let us say you have a ztable to store this data with fields

KEY , DOCUMENT, DDBK_1, DDBK_2, DDBK_3

In your WDA application, you have context node created by using this ztable, create a table ui element with this.

You can save the data from user1 into table and retrieve it when user2 opens application, so.. on

But, question is how to find out which user is accessing the application? i.e. user1 or user2 or user 3

So, when user1 logs in , we need to open only DDBK_1 column for input and lock the other 2 columns ( ddbk_2, ddbk_3 ).

Upon save, we need to generate a key to store in table.

When user2, opens the application, we need to get the data based on the KEY and lock the columns DDBK_1 & DDBK_3.

Similarly, if user3 runs application, ddbk_1 & ddbk_2 columns should be made as read only.

Hope this helps you.

Regards,

Rama