DBA Data[Home] [Help]

APPS.JTS_CONFIG_VERSION_FLOW_PVT dependencies on FND_API

Line 58: IF NOT fnd_api.compatible_api_call ( l_api_version,

54: l_flow_id JTS_SETUP_FLOWS_B.flow_id%TYPE;
55: l_parent_id JTS_SETUP_FLOWS_B.parent_id%TYPE;
56: BEGIN
57:
58: IF NOT fnd_api.compatible_api_call ( l_api_version,
59: p_api_version,
60: l_api_name,
61: G_PKG_NAME
62: )

Line 64: RAISE fnd_api.g_exc_unexpected_error;

60: l_api_name,
61: G_PKG_NAME
62: )
63: THEN
64: RAISE fnd_api.g_exc_unexpected_error;
65: END IF;
66:
67: --propagate the changes up the root for last update fields
68: UPDATE jts_config_version_flows

Line 109: IF NOT fnd_api.compatible_api_call ( l_api_version,

105: l_api_version CONSTANT NUMBER := 1.0;
106: l_api_name CONSTANT VARCHAR2 (30) := 'CREATE_VERSION_FLOWS';
107: BEGIN
108:
109: IF NOT fnd_api.compatible_api_call ( l_api_version,
110: p_api_version,
111: l_api_name,
112: G_PKG_NAME
113: )

Line 115: RAISE fnd_api.g_exc_unexpected_error;

111: l_api_name,
112: G_PKG_NAME
113: )
114: THEN
115: RAISE fnd_api.g_exc_unexpected_error;
116: END IF;
117:
118: FOR I IN 1..p_flow_hiearchy.count LOOP
119: INSERT INTO jts_config_version_flows(

Line 154: IF NOT fnd_api.compatible_api_call ( l_api_version,

150: l_api_version CONSTANT NUMBER := 1.0;
151: l_api_name CONSTANT VARCHAR2 (30) := 'DELETE_VERSION_FLOWS';
152: BEGIN
153:
154: IF NOT fnd_api.compatible_api_call ( l_api_version,
155: p_api_version,
156: l_api_name,
157: G_PKG_NAME
158: )

Line 160: RAISE fnd_api.g_exc_unexpected_error;

156: l_api_name,
157: G_PKG_NAME
158: )
159: THEN
160: RAISE fnd_api.g_exc_unexpected_error;
161: END IF;
162:
163: DELETE FROM jts_config_version_flows
164: WHERE version_id = p_version_id;

Line 183: IF NOT fnd_api.compatible_api_call ( l_api_version,

179: versions_csr JTS_CONFIG_UTIL_PVT.Versions_Csr_Type;
180: l_version_id JTS_CONFIG_VERSION_FLOWS.version_id%TYPE;
181: BEGIN
182:
183: IF NOT fnd_api.compatible_api_call ( l_api_version,
184: p_api_version,
185: l_api_name,
186: G_PKG_NAME
187: )

Line 189: RAISE fnd_api.g_exc_unexpected_error;

185: l_api_name,
186: G_PKG_NAME
187: )
188: THEN
189: RAISE fnd_api.g_exc_unexpected_error;
190: END IF;
191:
192: JTS_CONFIG_UTIL_PVT.GET_VERSIONS_CURSOR(p_api_version,
193: p_config_id,

Line 232: IF NOT fnd_api.compatible_api_call ( l_api_version,

228: AND u2.user_id (+) = v.last_updated_by
229: ORDER BY flow_id;
230: BEGIN
231:
232: IF NOT fnd_api.compatible_api_call ( l_api_version,
233: p_api_version,
234: l_api_name,
235: G_PKG_NAME
236: )

Line 238: RAISE fnd_api.g_exc_unexpected_error;

234: l_api_name,
235: G_PKG_NAME
236: )
237: THEN
238: RAISE fnd_api.g_exc_unexpected_error;
239: END IF;
240:
241: OPEN vflows_csr;
242: i:=1;