Extension for copying ORdered Date to EFF line level
Summary:
Content (required):
HI,
we are trying to copy Ordered Date at SO header to one of the Line Level EFF fields. The extension does not seem to be working. Any suggestions will be of great help.
Regards,
Harsha
Version (include the version you are using, if applicable):
Code Snippet (add any code snippets that support your topic, if applicable):
import oracle.apps.scm.doo.common.extensions.ValidationException;
import oracle.apps.scm.doo.common.extensions.Message;
List<Message> messages = new ArrayList<Message>();
Date OrderedDate = header.getAttribute("OrderedDate");
if(OrderedDate != null)
{
def lines = header.getAttribute("Lines");
while( lines.hasNext() ) {
def line = lines.next();
Tagged:
0