VO Row Iterator in OAF

OAApplicationModule am = oapagecontext.getApplicationModule(oawebbean);
OADBTransaction oadbtransaction = am.getOADBTransaction();
OAViewObject XXDraftASNLineEOVO =
(OAViewObject)am.findViewObject(“XXDraftASNLineEOVO1”);
if (XXDraftASNLineEOVO!= null)
XXDraftASNLineEOVO.reset();
while (XXDraftASNLineEOVO.hasNext())
{
OARow XXDraftASNLineEOVORow = (OARow)XXDraftASNLineEOVO. next ();
XXDraftASNLineEOVORow.setAttributes
String
XXAsn=(String)XXDraftASNLineEOVORow.getAttribute(“XXASN”);
XXDraftASNLineEOVORow.setAttribute(“XXASN”,”ASN”);
}

Recent Posts