DBA Data[Home] [Help]

APPS.PO_LINE_LOCATIONS_DRAFT_PVT dependencies on FND_API

Line 33: -- If only draft_id is provided, this program returns FND_API.G_TRUE for

29: -- None
30: --Function:
31: -- Checks whether there is any draft changes in the draft table
32: -- given the draft_id or draft_id + line_location_id
33: -- If only draft_id is provided, this program returns FND_API.G_TRUE for
34: -- any draft changes in this table for the draft
35: -- If the whole primary key is provided (draft_id + line location id), then
36: -- it return true if there is draft for this particular record in
37: -- the draft table

Line 49: -- FND_API.G_TRUE if there are draft changes

45: --OUT:
46: --Returns:
47: -- Array of flags indicating whether draft changes exist for the corresponding
48: -- entry in the input parameter. For each entry in the returning array:
49: -- FND_API.G_TRUE if there are draft changes
50: -- FND_API.G_FALSE if there aren't draft changes
51: --Notes:
52: --Testing:
53: --End of Comments

Line 50: -- FND_API.G_FALSE if there aren't draft changes

46: --Returns:
47: -- Array of flags indicating whether draft changes exist for the corresponding
48: -- entry in the input parameter. For each entry in the returning array:
49: -- FND_API.G_TRUE if there are draft changes
50: -- FND_API.G_FALSE if there aren't draft changes
51: --Notes:
52: --Testing:
53: --End of Comments
54: ------------------------------------------------------------------------

Line 80: l_dft_exists_tbl(i) := FND_API.G_FALSE;

76: l_dft_exists_tbl.extend(p_draft_id_tbl.COUNT);
77:
78: FOR i IN 1..l_index_tbl.COUNT LOOP
79: l_index_tbl(i) := i;
80: l_dft_exists_tbl(i) := FND_API.G_FALSE;
81: END LOOP;
82:
83: d_position := 10;
84:

Line 117: l_dft_exists_tbl(l_dft_exists_index_tbl(i)) := FND_API.G_TRUE;

113:
114: d_position := 40;
115:
116: FOR i IN 1..l_dft_exists_index_tbl.COUNT LOOP
117: l_dft_exists_tbl(l_dft_exists_index_tbl(i)) := FND_API.G_TRUE;
118: END LOOP;
119:
120: IF (PO_LOG.d_stmt) THEN
121: PO_LOG.stmt(d_module, d_position, '# of records that have dft changes',

Line 133: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

129: PO_MESSAGE_S.add_exc_msg
130: ( p_pkg_name => d_pkg_name,
131: p_procedure_name => d_api_name || '.' || d_position
132: );
133: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
134: END draft_changes_exist;
135:
136:
137: -----------------------------------------------------------------------

Line 155: -- FND_API.G_TRUE if there are draft changes

151: -- line location unique identifier
152: --IN OUT:
153: --OUT:
154: --Returns:
155: -- FND_API.G_TRUE if there are draft changes
156: -- FND_API.G_FALSE if there aren't draft changes
157: --Notes:
158: --Testing:
159: --End of Comments

Line 156: -- FND_API.G_FALSE if there aren't draft changes

152: --IN OUT:
153: --OUT:
154: --Returns:
155: -- FND_API.G_TRUE if there are draft changes
156: -- FND_API.G_FALSE if there aren't draft changes
157: --Notes:
158: --Testing:
159: --End of Comments
160: ------------------------------------------------------------------------

Line 195: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

191: PO_MESSAGE_S.add_exc_msg
192: ( p_pkg_name => d_pkg_name,
193: p_procedure_name => d_api_name || '.' || d_position
194: );
195: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
196: END draft_changes_exist;
197:
198: -----------------------------------------------------------------------
199: --Start of Comments

Line 239: IF (p_draft_info.line_locations_changed = FND_API.G_FALSE) THEN

235: IF (PO_LOG.d_proc) THEN
236: PO_LOG.proc_begin(d_module);
237: END IF;
238:
239: IF (p_draft_info.line_locations_changed = FND_API.G_FALSE) THEN
240: IF (PO_LOG.d_stmt) THEN
241: PO_LOG.stmt(d_module, d_position, 'no change-no need to apply');
242: END IF;
243:

Line 320: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

316: PO_MESSAGE_S.add_exc_msg
317: ( p_pkg_name => d_pkg_name,
318: p_procedure_name => d_api_name || '.' || d_position
319: );
320: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
321: END apply_changes;
322:
323: -- bug4176111
324: -----------------------------------------------------------------------

Line 366: p_draft_info.line_locations_changed = FND_API.G_FALSE) THEN

362: END IF;
363:
364: IF (NOT (p_draft_info.doc_type = 'PA' AND
365: p_draft_info.doc_subtype = 'BLANKET') OR
366: p_draft_info.line_locations_changed = FND_API.G_FALSE) THEN
367:
368: RETURN;
369: END IF;
370:

Line 459: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

455: PO_MESSAGE_S.add_exc_msg
456: ( p_pkg_name => d_pkg_name,
457: p_procedure_name => d_api_name || '.' || d_position
458: );
459: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
460:
461: END maintain_retroactive_change;
462:
463: -------------------------------------------------------

Line 559: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

555: PO_MESSAGE_S.add_exc_msg
556: ( p_pkg_name => d_pkg_name,
557: p_procedure_name => d_api_name || '.' || d_position
558: );
559: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
560: END group_records_by_dml_type;
561:
562: END PO_LINE_LOCATIONS_DRAFT_PVT;