cancel
Showing results for 
Search instead for 
Did you mean: 

how to hide a "column" from ovs window in NWDS 7.3

Former Member
0 Kudos

hi experts,

               for example i have 4 fields

        1. Unique_ID
        2. Enroll_No
        3. Name
        4. Age

              

               Now i wan to all the value in ovs pop up ..

               but i also want to hide "unique_id" column from user.

               but i dont want to delete this field from Ovs Output node.

i need current record in other node..

plz help me

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Dear Aasif,

Please check this link:

Thanks & Regards,

Patralekha

Former Member
0 Kudos

this is only for how to develop ovs....

my question is how to hide a column in ovs from ovs window at runtime....

Former Member
0 Kudos

Dear Aasif,

applyResult : notifies about the successful selection of a result element, now it's the moment to apply the query result to the application node. Selected element is marked byleadselection

So can you please set only Enroll_No , Name & Age in applyResult() method of IWDOVSContextNotificationListener interface and check?

Value Help - Object Value Selector - Web Dynpro Java - SCN Wiki

Thanks & Regards,

Patralekha

Former Member
0 Kudos

see in below window here retailer column is there....

this is in output node of ovs now i wand to unvisible this column...

other parameters i'll set in apply result

i am asking about any method of ovs which can modify standard window of ovs...

former_member191044
Active Contributor
0 Kudos

Hi Asif,

try to override this method of the WDOVSConfigurator:

@Override

public java.util.List<String> selectResultColumns(java.util.List<String> names) {

       for (String name : names) {

             if (name.equals("ColumnNameYouDontNeed")) {

              names.remove(name);

        }

  }

       return names;

};

Haven't tryed it myself since i have no time at the moment.

Maybe it works.

Regards Tobias.

Former Member
0 Kudos

thank you Hamdorf

Regard

Aasif Shah

former_member191044
Active Contributor
0 Kudos

If that solved the problem. Please mark answer as right so that other user will see the solution.

Your welcome. By the way my first name is "Tobias". My user was created wrong.

Regards Tobias

Answers (0)