Skip to Content
0
Former Member
Feb 18, 2009 at 03:05 AM

how used an evs inputfield in a table?

27 Views

How to insert an EVS inputfield in a Table??? in a Web Dynpro CO. I use this code:

IWDAttributeInfo attributeInfo = 
 wdContext.getNodeInfo().getAttribute(ITabla_traspasosElement.CC__EMISOR);
ISimpleTypeModifiable countryType = attributeInfo.getModifiableSimpleType();
	
countryType.setFieldLabel("Cc_emisor");
IModifiableSimpleValueSet valueSet = 
 countryType.getSVServices().getModifiableSimpleValueSet();
for (int i = 0; i < 40; i++){
 valueSet.put("Key_"+i,"Country "+i);
}
	
wdContext.currentContextElement().setIdmov_presupuesto("Key_0");

thanks