DBA Data[Home] [Help]

APPS.PO_SHIPMENTS_SV4 dependencies on FND_ATTACHED_DOCUMENTS2_PKG

Line 66: fnd_attached_documents2_pkg.delete_attachments('PO_SHIPMENTS',

62:
63: FETCH C_LINE INTO x_line_location_id;
64: EXIT WHEN C_LINE%notfound;
65:
66: fnd_attached_documents2_pkg.delete_attachments('PO_SHIPMENTS',
67: x_line_location_id,
68: '', '', '', '', 'Y');
69: --
70: --Delete the Price differentials entity type for the given Shipment

Line 138: fnd_attached_documents2_pkg.delete_attachments('PO_SHIPMENTS',

134:
135: FETCH C_HEADER INTO x_line_location_id;
136: EXIT WHEN C_HEADER%notfound;
137:
138: fnd_attached_documents2_pkg.delete_attachments('PO_SHIPMENTS',
139: x_line_location_id,
140: '', '', '', '', 'Y');
141: --
142: --Delete the Price differentials entity type for the given Shipment

Line 216: fnd_attached_documents2_pkg.delete_attachments('PO_SHIPMENTS',

212: x_po_line_id,
213: x_original_quantity;
214: EXIT WHEN C_RELEASE%notfound;
215:
216: fnd_attached_documents2_pkg.delete_attachments('PO_SHIPMENTS',
217: x_line_location_id,
218: '', '', '', '', 'Y');
219:
220: /* Bug 1560839 - Released quantity should be updated only when

Line 446: fnd_attached_documents2_pkg.delete_attachments('PO_SHIPMENTS',

442: END IF;
443:
444:
445: -- Delete attachements.
446: fnd_attached_documents2_pkg.delete_attachments('PO_SHIPMENTS',
447: X_line_location_id,
448: '', '', '', '', 'Y');
449:
450: EXCEPTION