DBA Data[Home] [Help]

APPS.PO_PRICE_DIFF_DRAFT_PVT dependencies on FND_API

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

13: -- None
14: --Function:
15: -- Checks whether there is any draft changes in the draft table
16: -- given the draft_id or draft_id + price_differential_id
17: -- If only draft_id is provided, this program returns FND_API.G_TRUE for
18: -- any draft changes in this table for the draft
19: -- If the whole primary key is provided (draft_id + price differential id),
20: -- then it return true if there is draft for this particular record in
21: -- the draft table

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

29: --OUT:
30: --Returns:
31: -- Array of flags indicating whether draft changes exist for the corresponding
32: -- entry in the input parameter. For each entry in the returning array:
33: -- FND_API.G_TRUE if there are draft changes
34: -- FND_API.G_FALSE if there aren't draft changes
35: --Notes:
36: --Testing:
37: --End of Comments

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

30: --Returns:
31: -- Array of flags indicating whether draft changes exist for the corresponding
32: -- entry in the input parameter. For each entry in the returning array:
33: -- FND_API.G_TRUE if there are draft changes
34: -- FND_API.G_FALSE if there aren't draft changes
35: --Notes:
36: --Testing:
37: --End of Comments
38: ------------------------------------------------------------------------

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

60: l_dft_exists_tbl.extend(p_draft_id_tbl.COUNT);
61:
62: FOR i IN 1..l_index_tbl.COUNT LOOP
63: l_index_tbl(i) := i;
64: l_dft_exists_tbl(i) := FND_API.G_FALSE;
65: END LOOP;
66:
67: d_position := 10;
68:

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

97:
98: d_position := 40;
99:
100: FOR i IN 1..l_dft_exists_index_tbl.COUNT LOOP
101: l_dft_exists_tbl(l_dft_exists_index_tbl(i)) := FND_API.G_TRUE;
102: END LOOP;
103:
104: IF (PO_LOG.d_stmt) THEN
105: PO_LOG.stmt(d_module, d_position, '# of records that have dft changes',

Line 117: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

113: PO_MESSAGE_S.add_exc_msg
114: ( p_pkg_name => d_pkg_name,
115: p_procedure_name => d_api_name || '.' || d_position
116: );
117: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
118: END draft_changes_exist;
119:
120: -----------------------------------------------------------------------
121: --Start of Comments

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

134: -- price differential unique identifier
135: --IN OUT:
136: --OUT:
137: --Returns:
138: -- FND_API.G_TRUE if there are draft changes
139: -- FND_API.G_FALSE if there aren't draft changes
140: --Notes:
141: --Testing:
142: --End of Comments

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

135: --IN OUT:
136: --OUT:
137: --Returns:
138: -- FND_API.G_TRUE if there are draft changes
139: -- FND_API.G_FALSE if there aren't draft changes
140: --Notes:
141: --Testing:
142: --End of Comments
143: ------------------------------------------------------------------------

Line 178: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

174: PO_MESSAGE_S.add_exc_msg
175: ( p_pkg_name => d_pkg_name,
176: p_procedure_name => d_api_name || '.' || d_position
177: );
178: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
179: END draft_changes_exist;
180:
181:
182: -----------------------------------------------------------------------

Line 217: IF (p_draft_info.price_diff_changed = FND_API.G_FALSE) THEN

213: IF (PO_LOG.d_proc) THEN
214: PO_LOG.proc_begin(d_module);
215: END IF;
216:
217: IF (p_draft_info.price_diff_changed = FND_API.G_FALSE) THEN
218: IF (PO_LOG.d_stmt) THEN
219: PO_LOG.stmt(d_module, d_position, 'no change-no need to apply');
220: END IF;
221:

Line 238: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

234: PO_MESSAGE_S.add_exc_msg
235: ( p_pkg_name => d_pkg_name,
236: p_procedure_name => d_api_name || '.' || d_position
237: );
238: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
239: END apply_changes;
240:
241: END PO_PRICE_DIFF_DRAFT_PVT;