DBA Data[Home] [Help]

APPS.WIP_WS_UTIL dependencies on WIP_EXCEPTIONS

Line 669: select note into l_note from wip_exceptions

665: FND_MSG_PUB.initialize;
666: END IF;
667: x_return_status := FND_API.G_RET_STS_SUCCESS;
668:
669: select note into l_note from wip_exceptions
670: where exception_id = p_exception_id;
671:
672: if(l_note is null OR l_note ='') then
673: l_note := p_msg;

Line 678: update wip_exceptions we

674: else
675: l_note := l_note ||'
'||p_msg;
676: end if;
677:
678: update wip_exceptions we
679: set we.note = l_note
680: where we.exception_id = p_exception_id;
681:
682: exception when others then