cancel
Showing results for 
Search instead for 
Did you mean: 

EVS HElp

Former Member
0 Kudos

HI all,

HOw to set field descrition in EVS window

IWDAttributeInfo attributeInfo = wdContext.nodeJ().getNodeInfo().getAttribute("ka");

ISimpleTypeModifiable o = attributeInfo.getModifiableSimpleType();

// Set field label and populate valueset

<b>o.setFieldLabel("Number");</b>

<b>How to set descrition field(it sets as default Display Text how to change)(Second coloum)</b>

IModifiableSimpleValueSet ValueSet = attributeInfo.getModifiableSimpleType().getSVServices().getModifiableSimpleValueSet();

Please help me....

Thanks & regards

Mathi s

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi,

Mathi sent you solution regarding Close button, email application.. So don't forget to reward good points....

Thanks and Regards

Avijit

former_member751941
Active Contributor
0 Kudos

Hi Mathi,

o.setText("Description");

Check this links also.

/people/vikram.singh6/blog/2007/01/10/generic-value-help-services-in-web-dynpro--a-birds-eye-view

/people/valery.silaev/blog/2006/03/10/minus-evs-plus-ovs-value-help-smart-input

https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/2833ce90-0201-0010-f1af-d3cfe115...

Regards,

Mithu

Former Member
0 Kudos

Hi,

Thanks For ur reply...

o.setText("..");Not there in ISimpleTypeModifiable....

there are..

setColoumLabel(“..”);

setDescription(“..”)

setDefaultValue(obj a0);

setEnumeration(set a0);

setTextLocale(string a0);

.

.

Etc

So How to change Display Text(caption) in EVS...

Please Help Me..

Thanks...

Mathi..

Former Member
0 Kudos

Hi Mathi,

U have to use setDescription(“..”) only.

regards

Sumit

Former Member
0 Kudos

Hi,

I gave description only...

It is not triggered the Second Field...

It always display <b>Display TExt</b>...

How i do..

Thanks

Mathi

Mathi s

former_member186016
Active Contributor
0 Kudos

Hi Mathi,

Debug your application.

Just check the variables for "o" (in debugger)

Whatever attribute has value coming as Display Text, use o.set<that value>() to set that field.

Please share your attribute in "o" that you changed.

Regards,

Ashwani Kr Sharma

former_member186016
Active Contributor
0 Kudos

Setting description field:

o.setDescription("description");

Regards,

Ashwani Kr Sharma