cancel
Showing results for 
Search instead for 
Did you mean: 

Table headings and search text in OVS

Former Member
0 Kudos

Hi

Is there a way by which the column headings in the results table and the text for the search criteria can be changed in the OVS.

Regrads

Pran

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

The table heading details are extracted from the metadata information of the Simple type(data type) that gets generated. This is non editable and the information on it is fetched from SAP data element.So I don't think you could possible change it.

Cheers,

Sam

Former Member
0 Kudos

I take back my words...I have a solution for it..

Shall post the details in another shortly..

Former Member
0 Kudos

In the Custom controller for OVS,

probably in the init() method please do the coding similar to below..

ISimpleTypeModifiable stype =

wdContext.node<model>().getgetNodeInfo().getAttribute("<ModelAttribute>").getModifiableSimpleType();

stype.setFieldLabel("<New Field Label");

stype.setColumnLabel("<New Column Label>");

Cheers,

Sam Mathew