DBA Data[Home] [Help]

APPS.CSI_T_TXN_SYSTEMS_GRP dependencies on FND_API

Line 16: p_commit IN VARCHAR2 := fnd_api.g_false,

12: G_FILE_NAME CONSTANT VARCHAR2(12) := 'csigtsyb.pls';
13:
14: PROCEDURE create_txn_system(
15: p_api_version IN NUMBER,
16: p_commit IN VARCHAR2 := fnd_api.g_false,
17: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
18: p_validation_level IN NUMBER := fnd_api.g_valid_level_full,
19: p_txn_system_rec IN csi_t_datastructures_grp.txn_system_rec,
20: x_txn_system_id OUT NOCOPY NUMBER,

Line 17: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

13:
14: PROCEDURE create_txn_system(
15: p_api_version IN NUMBER,
16: p_commit IN VARCHAR2 := fnd_api.g_false,
17: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
18: p_validation_level IN NUMBER := fnd_api.g_valid_level_full,
19: p_txn_system_rec IN csi_t_datastructures_grp.txn_system_rec,
20: x_txn_system_id OUT NOCOPY NUMBER,
21: x_return_status OUT NOCOPY VARCHAR2,

Line 18: p_validation_level IN NUMBER := fnd_api.g_valid_level_full,

14: PROCEDURE create_txn_system(
15: p_api_version IN NUMBER,
16: p_commit IN VARCHAR2 := fnd_api.g_false,
17: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
18: p_validation_level IN NUMBER := fnd_api.g_valid_level_full,
19: p_txn_system_rec IN csi_t_datastructures_grp.txn_system_rec,
20: x_txn_system_id OUT NOCOPY NUMBER,
21: x_return_status OUT NOCOPY VARCHAR2,
22: x_msg_count OUT NOCOPY NUMBER,

Line 40: IF NOT fnd_api.compatible_api_call ( l_api_version,

36: -- standard start of api savepoint
37: SAVEPOINT csi_t_txn_systems_grp;
38:
39: -- standard call to check for call compatibility.
40: IF NOT fnd_api.compatible_api_call ( l_api_version,
41: p_api_version,
42: l_api_name,
43: g_pkg_name)
44: THEN

Line 45: RAISE fnd_api.g_exc_unexpected_error;

41: p_api_version,
42: l_api_name,
43: g_pkg_name)
44: THEN
45: RAISE fnd_api.g_exc_unexpected_error;
46: END IF;
47:
48:
49: -- initialize message list IF p_init_msg_list is set to true.

Line 50: IF fnd_api.to_boolean( p_init_msg_list )

46: END IF;
47:
48:
49: -- initialize message list IF p_init_msg_list is set to true.
50: IF fnd_api.to_boolean( p_init_msg_list )
51: THEN
52: fnd_msg_pub.initialize;
53: END IF;
54:

Line 58: x_return_status := fnd_api.g_ret_sts_success;

54:
55:
56:
57: -- initialize api return status to success
58: x_return_status := fnd_api.g_ret_sts_success;
59:
60: --debug messages
61: csi_t_gen_utility_pvt.dump_api_info(
62: p_pkg_name => g_pkg_name,

Line 87: -- fnd_api.g_exc_error exception

83:
84: --
85: -- This procedure check if the installed base is active, If not active
86: -- populates the error message in the message queue and raises the
87: -- fnd_api.g_exc_error exception
88: --
89:
90: csi_utility_grp.check_ib_active;
91:

Line 112: IF x_return_status = fnd_api.g_ret_sts_error THEN

108:
109:
110:
111: -- check return status from the above procedure call
112: IF x_return_status = fnd_api.g_ret_sts_error THEN
113: RAISE fnd_api.g_exc_error;
114: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
115: RAISE fnd_api.g_exc_unexpected_error;
116: END IF;

Line 113: RAISE fnd_api.g_exc_error;

109:
110:
111: -- check return status from the above procedure call
112: IF x_return_status = fnd_api.g_ret_sts_error THEN
113: RAISE fnd_api.g_exc_error;
114: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
115: RAISE fnd_api.g_exc_unexpected_error;
116: END IF;
117:

Line 114: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN

110:
111: -- check return status from the above procedure call
112: IF x_return_status = fnd_api.g_ret_sts_error THEN
113: RAISE fnd_api.g_exc_error;
114: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
115: RAISE fnd_api.g_exc_unexpected_error;
116: END IF;
117:
118: --

Line 115: RAISE fnd_api.g_exc_unexpected_error;

111: -- check return status from the above procedure call
112: IF x_return_status = fnd_api.g_ret_sts_error THEN
113: RAISE fnd_api.g_exc_error;
114: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
115: RAISE fnd_api.g_exc_unexpected_error;
116: END IF;
117:
118: --
119: -- END of api body.

Line 123: IF fnd_api.to_boolean( p_commit )

119: -- END of api body.
120: --
121:
122: -- standard check for p_commit
123: IF fnd_api.to_boolean( p_commit )
124: THEN
125: COMMIT WORK;
126: END IF;
127:

Line 140: WHEN fnd_api.g_exc_error THEN

136: p_data => x_msg_data
137: );
138:
139: EXCEPTION
140: WHEN fnd_api.g_exc_error THEN
141: ROLLBACK TO csi_t_txn_systems_grp;
142: x_return_status := fnd_api.g_ret_sts_error ;
143: fnd_msg_pub.count_and_get
144: (p_count => x_msg_count ,

Line 142: x_return_status := fnd_api.g_ret_sts_error ;

138:
139: EXCEPTION
140: WHEN fnd_api.g_exc_error THEN
141: ROLLBACK TO csi_t_txn_systems_grp;
142: x_return_status := fnd_api.g_ret_sts_error ;
143: fnd_msg_pub.count_and_get
144: (p_count => x_msg_count ,
145: p_data => x_msg_data
146: );

Line 148: WHEN fnd_api.g_exc_unexpected_error THEN

144: (p_count => x_msg_count ,
145: p_data => x_msg_data
146: );
147:
148: WHEN fnd_api.g_exc_unexpected_error THEN
149: ROLLBACK TO csi_t_txn_systems_grp;
150: x_return_status := fnd_api.g_ret_sts_unexp_error ;
151: fnd_msg_pub.count_and_get
152: (p_count => x_msg_count ,

Line 150: x_return_status := fnd_api.g_ret_sts_unexp_error ;

146: );
147:
148: WHEN fnd_api.g_exc_unexpected_error THEN
149: ROLLBACK TO csi_t_txn_systems_grp;
150: x_return_status := fnd_api.g_ret_sts_unexp_error ;
151: fnd_msg_pub.count_and_get
152: (p_count => x_msg_count ,
153: p_data => x_msg_data
154: );

Line 158: x_return_status := fnd_api.g_ret_sts_unexp_error ;

154: );
155:
156: WHEN OTHERS THEN
157: ROLLBACK TO csi_t_txn_systems_grp;
158: x_return_status := fnd_api.g_ret_sts_unexp_error ;
159: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
160: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
161: END IF;
162: fnd_msg_pub.count_and_get

Line 172: p_commit IN VARCHAR2 := fnd_api.g_false,

168:
169:
170: PROCEDURE update_txn_system(
171: p_api_version IN NUMBER,
172: p_commit IN VARCHAR2 := fnd_api.g_false,
173: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
174: p_validation_level IN NUMBER := fnd_api.g_valid_level_full,
175: p_txn_system_rec IN csi_t_datastructures_grp.txn_system_rec,
176: x_return_status OUT NOCOPY VARCHAR2,

Line 173: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

169:
170: PROCEDURE update_txn_system(
171: p_api_version IN NUMBER,
172: p_commit IN VARCHAR2 := fnd_api.g_false,
173: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
174: p_validation_level IN NUMBER := fnd_api.g_valid_level_full,
175: p_txn_system_rec IN csi_t_datastructures_grp.txn_system_rec,
176: x_return_status OUT NOCOPY VARCHAR2,
177: x_msg_count OUT NOCOPY NUMBER,

Line 174: p_validation_level IN NUMBER := fnd_api.g_valid_level_full,

170: PROCEDURE update_txn_system(
171: p_api_version IN NUMBER,
172: p_commit IN VARCHAR2 := fnd_api.g_false,
173: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
174: p_validation_level IN NUMBER := fnd_api.g_valid_level_full,
175: p_txn_system_rec IN csi_t_datastructures_grp.txn_system_rec,
176: x_return_status OUT NOCOPY VARCHAR2,
177: x_msg_count OUT NOCOPY NUMBER,
178: x_msg_data OUT NOCOPY VARCHAR2

Line 194: IF NOT fnd_api.compatible_api_call ( l_api_version,

190: -- standard start of api savepoint
191: SAVEPOINT update_txn_system_grp;
192:
193: -- standard call to check for call compatibility.
194: IF NOT fnd_api.compatible_api_call ( l_api_version,
195: p_api_version,
196: l_api_name,
197: g_pkg_name)
198: THEN

Line 199: RAISE fnd_api.g_exc_unexpected_error;

195: p_api_version,
196: l_api_name,
197: g_pkg_name)
198: THEN
199: RAISE fnd_api.g_exc_unexpected_error;
200: END IF;
201:
202:
203: -- initialize message list IF p_init_msg_list is set to true.

Line 204: IF fnd_api.to_boolean( p_init_msg_list )

200: END IF;
201:
202:
203: -- initialize message list IF p_init_msg_list is set to true.
204: IF fnd_api.to_boolean( p_init_msg_list )
205: THEN
206: fnd_msg_pub.initialize;
207: END IF;
208:

Line 211: x_return_status := fnd_api.g_ret_sts_success;

207: END IF;
208:
209:
210: -- initialize api return status to success
211: x_return_status := fnd_api.g_ret_sts_success;
212:
213: --debug messages
214: csi_t_gen_utility_pvt.dump_api_info(
215: p_pkg_name => g_pkg_name,

Line 239: -- fnd_api.g_exc_error exception

235:
236: --
237: -- This procedure check if the installed base is active, If not active
238: -- populates the error message in the message queue and raises the
239: -- fnd_api.g_exc_error exception
240: --
241:
242: csi_utility_grp.check_ib_active;
243:

Line 260: IF x_return_status = fnd_api.g_ret_sts_error THEN

256:
257:
258:
259: -- check return status from the above procedure call
260: IF x_return_status = fnd_api.g_ret_sts_error THEN
261: RAISE fnd_api.g_exc_error;
262: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
263: RAISE fnd_api.g_exc_unexpected_error;
264: END IF;

Line 261: RAISE fnd_api.g_exc_error;

257:
258:
259: -- check return status from the above procedure call
260: IF x_return_status = fnd_api.g_ret_sts_error THEN
261: RAISE fnd_api.g_exc_error;
262: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
263: RAISE fnd_api.g_exc_unexpected_error;
264: END IF;
265:

Line 262: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN

258:
259: -- check return status from the above procedure call
260: IF x_return_status = fnd_api.g_ret_sts_error THEN
261: RAISE fnd_api.g_exc_error;
262: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
263: RAISE fnd_api.g_exc_unexpected_error;
264: END IF;
265:
266: --

Line 263: RAISE fnd_api.g_exc_unexpected_error;

259: -- check return status from the above procedure call
260: IF x_return_status = fnd_api.g_ret_sts_error THEN
261: RAISE fnd_api.g_exc_error;
262: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
263: RAISE fnd_api.g_exc_unexpected_error;
264: END IF;
265:
266: --
267: -- end of api body

Line 271: IF fnd_api.to_boolean( p_commit )

267: -- end of api body
268: --
269:
270: -- standard check for p_commit
271: IF fnd_api.to_boolean( p_commit )
272: THEN
273: COMMIT WORK;
274: END IF;
275:

Line 287: WHEN fnd_api.g_exc_error THEN

283: p_data => x_msg_data
284: );
285:
286: EXCEPTION
287: WHEN fnd_api.g_exc_error THEN
288: ROLLBACK TO update_txn_system_grp;
289: x_return_status := fnd_api.g_ret_sts_error ;
290: fnd_msg_pub.count_and_get
291: (p_count => x_msg_count ,

Line 289: x_return_status := fnd_api.g_ret_sts_error ;

285:
286: EXCEPTION
287: WHEN fnd_api.g_exc_error THEN
288: ROLLBACK TO update_txn_system_grp;
289: x_return_status := fnd_api.g_ret_sts_error ;
290: fnd_msg_pub.count_and_get
291: (p_count => x_msg_count ,
292: p_data => x_msg_data
293: );

Line 295: WHEN fnd_api.g_exc_unexpected_error THEN

291: (p_count => x_msg_count ,
292: p_data => x_msg_data
293: );
294:
295: WHEN fnd_api.g_exc_unexpected_error THEN
296: ROLLBACK TO update_txn_system_grp;
297: x_return_status := fnd_api.g_ret_sts_unexp_error ;
298: fnd_msg_pub.count_and_get
299: (p_count => x_msg_count ,

Line 297: x_return_status := fnd_api.g_ret_sts_unexp_error ;

293: );
294:
295: WHEN fnd_api.g_exc_unexpected_error THEN
296: ROLLBACK TO update_txn_system_grp;
297: x_return_status := fnd_api.g_ret_sts_unexp_error ;
298: fnd_msg_pub.count_and_get
299: (p_count => x_msg_count ,
300: p_data => x_msg_data
301: );

Line 305: x_return_status := fnd_api.g_ret_sts_unexp_error ;

301: );
302:
303: WHEN OTHERS THEN
304: ROLLBACK TO update_txn_system_grp;
305: x_return_status := fnd_api.g_ret_sts_unexp_error ;
306: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
307: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
308: END IF;
309: fnd_msg_pub.count_and_get

Line 318: p_commit IN VARCHAR2 := fnd_api.g_false,

314:
315: PROCEDURE delete_txn_system
316: (
317: p_api_version IN NUMBER,
318: p_commit IN VARCHAR2 := fnd_api.g_false,
319: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
320: p_validation_level IN NUMBER := fnd_api.g_valid_level_full,
321: p_txn_system_id IN NUMBER,
322: x_return_status OUT NOCOPY VARCHAR2,

Line 319: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,

315: PROCEDURE delete_txn_system
316: (
317: p_api_version IN NUMBER,
318: p_commit IN VARCHAR2 := fnd_api.g_false,
319: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
320: p_validation_level IN NUMBER := fnd_api.g_valid_level_full,
321: p_txn_system_id IN NUMBER,
322: x_return_status OUT NOCOPY VARCHAR2,
323: x_msg_count OUT NOCOPY NUMBER,

Line 320: p_validation_level IN NUMBER := fnd_api.g_valid_level_full,

316: (
317: p_api_version IN NUMBER,
318: p_commit IN VARCHAR2 := fnd_api.g_false,
319: p_init_msg_list IN VARCHAR2 := fnd_api.g_false,
320: p_validation_level IN NUMBER := fnd_api.g_valid_level_full,
321: p_txn_system_id IN NUMBER,
322: x_return_status OUT NOCOPY VARCHAR2,
323: x_msg_count OUT NOCOPY NUMBER,
324: x_msg_data OUT NOCOPY VARCHAR2

Line 340: IF NOT fnd_api.compatible_api_call ( l_api_version,

336: -- standard start of api savepoint
337: SAVEPOINT delete_txn_system_grp;
338:
339: -- standard call to check for call compatibility.
340: IF NOT fnd_api.compatible_api_call ( l_api_version,
341: p_api_version,
342: l_api_name,
343: g_pkg_name)
344: THEN

Line 345: RAISE fnd_api.g_exc_unexpected_error;

341: p_api_version,
342: l_api_name,
343: g_pkg_name)
344: THEN
345: RAISE fnd_api.g_exc_unexpected_error;
346: END IF;
347:
348:
349: -- initialize message list IF p_init_msg_list is set to true.

Line 350: IF fnd_api.to_boolean( p_init_msg_list )

346: END IF;
347:
348:
349: -- initialize message list IF p_init_msg_list is set to true.
350: IF fnd_api.to_boolean( p_init_msg_list )
351: THEN
352: fnd_msg_pub.initialize;
353: END IF;
354:

Line 357: x_return_status := fnd_api.g_ret_sts_success;

353: END IF;
354:
355:
356: -- initialize api return status to success
357: x_return_status := fnd_api.g_ret_sts_success;
358:
359: --debug messages
360: csi_t_gen_utility_pvt.dump_api_info(
361: p_pkg_name => g_pkg_name,

Line 383: -- fnd_api.g_exc_error exception

379:
380: --
381: -- This procedure check if the installed base is active, If not active
382: -- populates the error message in the message queue and raises the
383: -- fnd_api.g_exc_error exception
384: --
385:
386: csi_utility_grp.check_ib_active;
387:

Line 404: IF x_return_status = fnd_api.g_ret_sts_error THEN

400:
401:
402:
403: -- check return status from the above procedure call
404: IF x_return_status = fnd_api.g_ret_sts_error THEN
405: RAISE fnd_api.g_exc_error;
406: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
407: RAISE fnd_api.g_exc_unexpected_error;
408: END IF;

Line 405: RAISE fnd_api.g_exc_error;

401:
402:
403: -- check return status from the above procedure call
404: IF x_return_status = fnd_api.g_ret_sts_error THEN
405: RAISE fnd_api.g_exc_error;
406: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
407: RAISE fnd_api.g_exc_unexpected_error;
408: END IF;
409:

Line 406: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN

402:
403: -- check return status from the above procedure call
404: IF x_return_status = fnd_api.g_ret_sts_error THEN
405: RAISE fnd_api.g_exc_error;
406: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
407: RAISE fnd_api.g_exc_unexpected_error;
408: END IF;
409:
410: --

Line 407: RAISE fnd_api.g_exc_unexpected_error;

403: -- check return status from the above procedure call
404: IF x_return_status = fnd_api.g_ret_sts_error THEN
405: RAISE fnd_api.g_exc_error;
406: ELSIF x_return_status = fnd_api.g_ret_sts_unexp_error THEN
407: RAISE fnd_api.g_exc_unexpected_error;
408: END IF;
409:
410: --
411: -- END of api body

Line 415: IF fnd_api.to_boolean( p_commit )

411: -- END of api body
412: --
413:
414: -- standard check for p_commit
415: IF fnd_api.to_boolean( p_commit )
416: THEN
417: COMMIT WORK;
418: END IF;
419:

Line 431: WHEN fnd_api.g_exc_error THEN

427: p_data => x_msg_data
428: );
429:
430: EXCEPTION
431: WHEN fnd_api.g_exc_error THEN
432: ROLLBACK TO delete_txn_system_grp;
433: x_return_status := fnd_api.g_ret_sts_error ;
434: fnd_msg_pub.count_and_get
435: (p_count => x_msg_count ,

Line 433: x_return_status := fnd_api.g_ret_sts_error ;

429:
430: EXCEPTION
431: WHEN fnd_api.g_exc_error THEN
432: ROLLBACK TO delete_txn_system_grp;
433: x_return_status := fnd_api.g_ret_sts_error ;
434: fnd_msg_pub.count_and_get
435: (p_count => x_msg_count ,
436: p_data => x_msg_data
437: );

Line 439: WHEN fnd_api.g_exc_unexpected_error THEN

435: (p_count => x_msg_count ,
436: p_data => x_msg_data
437: );
438:
439: WHEN fnd_api.g_exc_unexpected_error THEN
440: ROLLBACK TO delete_txn_system_grp;
441: x_return_status := fnd_api.g_ret_sts_unexp_error ;
442: fnd_msg_pub.count_and_get
443: (p_count => x_msg_count ,

Line 441: x_return_status := fnd_api.g_ret_sts_unexp_error ;

437: );
438:
439: WHEN fnd_api.g_exc_unexpected_error THEN
440: ROLLBACK TO delete_txn_system_grp;
441: x_return_status := fnd_api.g_ret_sts_unexp_error ;
442: fnd_msg_pub.count_and_get
443: (p_count => x_msg_count ,
444: p_data => x_msg_data
445: );

Line 449: x_return_status := fnd_api.g_ret_sts_unexp_error ;

445: );
446:
447: WHEN OTHERS THEN
448: ROLLBACK TO delete_txn_system_grp;
449: x_return_status := fnd_api.g_ret_sts_unexp_error ;
450: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
451: fnd_msg_pub.add_exc_msg(g_pkg_name ,l_api_name);
452: END IF;
453: fnd_msg_pub.count_and_get