DBA Data[Home] [Help]

APPS.AP_IMPORT_UTILITIES_PKG dependencies on FND_ATTACHED_DOCUMENTS

Line 23: from fnd_attached_documents

19: debug_info VARCHAR2(500);
20: BEGIN
21: select count(1)
22: into l_attachments_count
23: from fnd_attached_documents
24: where entity_name = 'AP_INVOICES_INTERFACE'
25: and pk1_value = p_from_invoice_id;
26:
27: -- we only need to copy attachments if there is one

Line 30: fnd_attached_documents2_pkg.copy_attachments(

26:
27: -- we only need to copy attachments if there is one
28: if ( l_attachments_count > 0 )
29: then
30: fnd_attached_documents2_pkg.copy_attachments(
31: x_from_entity_name => 'AP_INVOICES_INTERFACE',
32: x_from_pk1_value => p_from_invoice_id,
33: x_to_entity_name => 'AP_INVOICES',
34: x_to_pk1_value => p_to_invoice_id);