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