DBA Data[Home] [Help]

APPS.CSI_RMA_FULFILL_PUB dependencies on CSI_RMA_FULFILL_PUB

Line 1: PACKAGE BODY CSI_RMA_FULFILL_PUB AS

1: PACKAGE BODY CSI_RMA_FULFILL_PUB AS
2: /* $Header: csipirfb.pls 120.15 2011/10/03 11:44:32 dsingire ship $ */
3:
4: g_pkg_name varchar2(30) := 'csi_rma_fulfill_pub';
5:

Line 4: g_pkg_name varchar2(30) := 'csi_rma_fulfill_pub';

1: PACKAGE BODY CSI_RMA_FULFILL_PUB AS
2: /* $Header: csipirfb.pls 120.15 2011/10/03 11:44:32 dsingire ship $ */
3:
4: g_pkg_name varchar2(30) := 'csi_rma_fulfill_pub';
5:
6: procedure debug(
7: p_message IN varchar2)
8: IS

Line 19: p_pkg_name => 'csi_rma_fulfill_pub');

15: IS
16: BEGIN
17: csi_t_gen_utility_pvt.dump_api_info(
18: p_api_name => p_api_name,
19: p_pkg_name => 'csi_rma_fulfill_pub');
20: END api_log;
21:
22:
23: PROCEDURE get_rma_info(

Line 36: p_pkg_name => 'csi_rma_fulfill_pub');

32: x_return_status := fnd_api.g_ret_sts_success;
33:
34: csi_t_gen_utility_pvt.dump_api_info(
35: p_api_name => 'get_rma_info',
36: p_pkg_name => 'csi_rma_fulfill_pub');
37:
38: x_rma_line_rec.source_line_id := p_rma_line_id;
39:
40: BEGIN

Line 100: p_pkg_name => 'csi_rma_fulfill_pub');

96: x_return_status := fnd_api.g_ret_sts_success;
97:
98: csi_t_gen_utility_pvt.dump_api_info(
99: p_api_name => l_api_name,
100: p_pkg_name => 'csi_rma_fulfill_pub');
101:
102: xnp_xml_utils.decode(p_msg_text, 'RMA_LINE_ID', l_rma_line_id);
103:
104: IF nvl(l_rma_line_id,fnd_api.g_miss_num) = fnd_api.g_miss_num THEN

Line 119: debug('CSI_Rma_Fulfill_Pub.Get_rma_Info Failed.');

115: x_error_message => x_error_message,
116: x_return_status => l_return_status);
117:
118: IF l_return_status <> fnd_api.g_ret_sts_success THEN
119: debug('CSI_Rma_Fulfill_Pub.Get_rma_Info Failed.');
120: RAISE fnd_api.g_exc_error;
121: END IF;
122:
123: debug('CSI_Rma_Fulfill_Pub.Decode_Message Successful');

Line 123: debug('CSI_Rma_Fulfill_Pub.Decode_Message Successful');

119: debug('CSI_Rma_Fulfill_Pub.Get_rma_Info Failed.');
120: RAISE fnd_api.g_exc_error;
121: END IF;
122:
123: debug('CSI_Rma_Fulfill_Pub.Decode_Message Successful');
124:
125: EXCEPTION
126:
127: WHEN fnd_api.g_exc_error THEN

Line 724: p_pkg_name => 'csi_rma_fulfill_pub');

720: l_debug_level := csi_t_gen_utility_pvt.g_debug_level;
721:
722: csi_t_gen_utility_pvt.dump_api_info(
723: p_api_name => 'fulfill_rma_line',
724: p_pkg_name => 'csi_rma_fulfill_pub');
725:
726: BEGIN
727: --commented SQL below to make changes for the bug 4028827
728: /*

Line 1586: END csi_rma_fulfill_pub;

1582: l_error_message := csi_t_gen_utility_pvt.dump_error_stack;
1583: debug(l_error_message);
1584: END fulfill_rma_line;
1585:
1586: END csi_rma_fulfill_pub;