cancel
Showing results for 
Search instead for 
Did you mean: 

EVS.

Former Member
0 Kudos

I have to implement EVS as per the requirement.. But have no idea about EVS EVS+ EVS ++....

Can anyone throw some light on this....

I have to get data from R3... So which should i go for and how....??

Any inputs or sample applications....??

Accepted Solutions (1)

Accepted Solutions (1)

0 Kudos

Hi,

EVS provides the value help similar to the value help present in R3, with search facility.

To implement this, you have to bind a context variable(Say EVS) to an input field and use the following coding

IWDAttributeInfo a=wdContext.getNodeInfo().getAttribute(IPrivateHelloCompView.IContextElement.EVS);

ISimpleTypeModifiable stm=a.getModifiableSimpleType();

IModifiableSimpleValueSet svs=stm.getSVServices().getModifiableSimpleValueSet();

svs.put("1","One");//Key,Value

svs.put("2","Two");//Key,Value

This will create a value help with two values One and Two.

You can populate values from backend to value help using a simple loop like this.

for(int i=0;i<modelNode.size();i++)

{

String key=modelNode.getModelNodeElementAt(i).getKey();

String value=modelNode.getModelNodeElementAt(i).getValue();

svs.put(key,value);

}

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

refers the following links

Former Member
0 Kudos