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 209: fnd_attached_documents2_pkg.delete_attachments('PO_SHIPMENTS',

205: x_po_line_id,
206: x_original_quantity;
207: EXIT WHEN C_RELEASE%notfound;
208:
209: fnd_attached_documents2_pkg.delete_attachments('PO_SHIPMENTS',
210: x_line_location_id,
211: '', '', '', '', 'Y');
212:
213: /* Bug 1560839 - Released quantity should be updated only when

Line 437: fnd_attached_documents2_pkg.delete_attachments('PO_SHIPMENTS',

433: END IF;
434:
435:
436: -- Delete attachements.
437: fnd_attached_documents2_pkg.delete_attachments('PO_SHIPMENTS',
438: X_line_location_id,
439: '', '', '', '', 'Y');
440:
441: EXCEPTION