DBA Data[Home] [Help]

APPS.WIP_WS_UTIL dependencies on WIP_DISCRETE_JOBS

Line 604: update wip_discrete_jobs wdj

600: FND_MSG_PUB.initialize;
601: END IF;
602: x_return_status := FND_API.G_RET_STS_SUCCESS;
603:
604: update wip_discrete_jobs wdj
605: set wdj.job_note = wdj.job_note || p_msg
606: where wdj.wip_entity_id = p_wip_entity_id;
607:
608: exception when others then

Line 635: from wip_discrete_jobs wdj

631: x_return_status := FND_API.G_RET_STS_SUCCESS;
632:
633: select wdj.job_note
634: into job_note
635: from wip_discrete_jobs wdj
636: where wdj.wip_entity_id = p_wip_entity_id
637: for update;
638:
639: dbms_lob.append(job_note, p_clob_msg);