DBA Data[Home] [Help]

APPS.PO_ATTR_VALUES_TLP_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_tlp_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 + attribute_values_tlp id),
20: -- then it returns 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: -----------------------------------------------------------------------

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

128: -- None
129: --Function:
130: -- Checks whether there is any draft changes in the draft table
131: -- given the primary key or part of the primary key
132: -- If only draft_id is provided, this program returns FND_API.G_TRUE for
133: -- any draft changes in this table for the draft
134: -- If the whole primary key is provided (draft_id+attribute_values_tlp_id),
135: -- then it return true if there is draft for this particular record in
136: -- the draft table

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

142: -- attribute values tlp record unique identifier
143: --IN OUT:
144: --OUT:
145: --Returns:
146: -- FND_API.G_TRUE if there are draft changes
147: -- FND_API.G_FALSE if there aren't draft changes
148: --Notes:
149: --Testing:
150: --End of Comments

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

143: --IN OUT:
144: --OUT:
145: --Returns:
146: -- FND_API.G_TRUE if there are draft changes
147: -- FND_API.G_FALSE if there aren't draft changes
148: --Notes:
149: --Testing:
150: --End of Comments
151: ------------------------------------------------------------------------

Line 186: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

182: PO_MESSAGE_S.add_exc_msg
183: ( p_pkg_name => d_pkg_name,
184: p_procedure_name => d_api_name || '.' || d_position
185: );
186: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
187: END draft_changes_exist;
188:
189:
190: -----------------------------------------------------------------------

Line 225: IF (p_draft_info.attr_values_tlp_changed = FND_API.G_FALSE) THEN

221: IF (PO_LOG.d_proc) THEN
222: PO_LOG.proc_begin(d_module);
223: END IF;
224:
225: IF (p_draft_info.attr_values_tlp_changed = FND_API.G_FALSE) THEN
226: IF (PO_LOG.d_stmt) THEN
227: PO_LOG.stmt(d_module, d_position, 'no change-no need to apply');
228: END IF;
229:

Line 246: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

242: PO_MESSAGE_S.add_exc_msg
243: ( p_pkg_name => d_pkg_name,
244: p_procedure_name => d_api_name || '.' || d_position
245: );
246: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
247: END apply_changes;
248:
249: END PO_ATTR_VALUES_TLP_DRAFT_PVT;