DBA Data[Home] [Help]

APPS.CSI_T_TXN_SYSTEMS_GRP dependencies on CSI_T_TXN_SYSTEMS_GRP

Line 1: PACKAGE BODY csi_t_txn_systems_grp AS

1: PACKAGE BODY csi_t_txn_systems_grp AS
2: /* $Header: csigtsyb.pls 115.7 2004/01/08 23:54:15 rmamidip ship $ */
3: -- Start of Comments
4: -- Package name : csi_t_txn_systems_grp
5: -- Purpose :

Line 4: -- Package name : csi_t_txn_systems_grp

1: PACKAGE BODY csi_t_txn_systems_grp AS
2: /* $Header: csigtsyb.pls 115.7 2004/01/08 23:54:15 rmamidip ship $ */
3: -- Start of Comments
4: -- Package name : csi_t_txn_systems_grp
5: -- Purpose :
6: -- History :
7: -- NOTE :
8: -- END of Comments

Line 11: G_PKG_NAME CONSTANT VARCHAR2(30):= 'CSI_T_TXN_SYSTEMS_GRP';

7: -- NOTE :
8: -- END of Comments
9:
10:
11: G_PKG_NAME CONSTANT VARCHAR2(30):= 'CSI_T_TXN_SYSTEMS_GRP';
12: G_FILE_NAME CONSTANT VARCHAR2(12) := 'csigtsyb.pls';
13:
14: PROCEDURE create_txn_system(
15: p_api_version IN NUMBER,

Line 37: SAVEPOINT csi_t_txn_systems_grp;

33:
34:
35: BEGIN
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,

Line 141: ROLLBACK TO csi_t_txn_systems_grp;

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 ,
145: p_data => x_msg_data

Line 149: ROLLBACK TO csi_t_txn_systems_grp;

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 ,
153: p_data => x_msg_data

Line 157: ROLLBACK TO csi_t_txn_systems_grp;

153: p_data => x_msg_data
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;

Line 463: END csi_t_txn_systems_grp;

459:
460:
461:
462:
463: END csi_t_txn_systems_grp;