DBA Data[Home] [Help]

APPS.AP_IMPORT_UTILITIES_PKG dependencies on FND_ATTACHED_DOCUMENTS

Line 700: from fnd_attached_documents

696: debug_info VARCHAR2(500);
697: BEGIN
698: select count(1)
699: into l_attachments_count
700: from fnd_attached_documents
701: where entity_name = 'AP_INVOICES_INTERFACE'
702: and pk1_value = p_from_invoice_id;
703:
704: -- we only need to copy attachments if there is one

Line 707: fnd_attached_documents2_pkg.copy_attachments(

703:
704: -- we only need to copy attachments if there is one
705: if ( l_attachments_count > 0 )
706: then
707: fnd_attached_documents2_pkg.copy_attachments(
708: x_from_entity_name => 'AP_INVOICES_INTERFACE',
709: x_from_pk1_value => p_from_invoice_id,
710: x_to_entity_name => 'AP_INVOICES',
711: x_to_pk1_value => p_to_invoice_id);