DBA Data[Home] [Help]

APPS.PO_ATTR_VALUES_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 + attribute_values_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 + attribut_values id), then
20: -- 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 102: l_dft_exists_tbl(l_dft_exists_index_tbl(i)) := FND_API.G_TRUE;

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

Line 118: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

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

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

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

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

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

Line 179: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

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

Line 218: IF (p_draft_info.attr_values_changed = FND_API.G_FALSE) THEN

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

Line 239: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

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