DBA Data[Home] [Help]

APPS.WIP_BOMROUTINGUTIL_PVT dependencies on FND_ATTACHED_DOCUMENTS

Line 35: from fnd_attached_documents fad

31: from wip_operations wo
32: where wo.organization_id = p_org_id
33: and wo.wip_entity_id = p_wip_entity_id
34: and exists (select fad.pk1_value
35: from fnd_attached_documents fad
36: where fad.pk1_value = to_char(wo.operation_sequence_id)
37: and fad.entity_name = 'BOM_OPERATION_SEQUENCES');
38: begin
39: x_returnStatus := fnd_api.g_ret_sts_success;

Line 106: fnd_attached_documents2_pkg.delete_attachments(

102: delete from wip_sub_operation_resources
103: where wip_entity_id = p_wipEntityID
104: and organization_id = p_orgID;
105:
106: fnd_attached_documents2_pkg.delete_attachments(
107: x_entity_name => 'WIP_DISCRETE_OPERATIONS',
108: x_pk1_value => to_char(p_wipEntityID),
109: x_pk3_value => to_char(p_orgID),
110: x_delete_document_flag => 'Y');

Line 516: fnd_attached_documents2_pkg.copy_attachments(

512: end if;
513:
514:
515: FOR op_attach IN op_attachments(p_orgID, p_wipEntityID) LOOP
516: fnd_attached_documents2_pkg.copy_attachments(
517: x_from_entity_name => 'BOM_OPERATION_SEQUENCES',
518: x_from_pk1_value => to_char(op_attach.operation_sequence_id),
519: x_to_entity_name => 'WIP_DISCRETE_OPERATIONS',
520: x_to_pk1_value => to_char(p_wipEntityID),