DBA Data[Home] [Help]

APPS.FUN_NET_CONC_PROG_PKG dependencies on FUN_NET_CONC_PROG_PKG

Line 1: PACKAGE BODY FUN_NET_CONC_PROG_PKG AS

1: PACKAGE BODY FUN_NET_CONC_PROG_PKG AS
2: /* $Header: funntcpb.pls 120.2.12010000.2 2008/08/06 07:46:35 makansal ship $ */
3:
4: PROCEDURE Create_Net_Batch(
5: errbuf OUT NOCOPY VARCHAR2,

Line 14: fun_net_util.log_string(1,'fun_net_conc_prog_pkg.create_net_batch','Before calling create batch API');

10: l_msg_count NUMBER;
11: l_msg_data VARCHAR2(2000);
12:
13: BEGIN
14: fun_net_util.log_string(1,'fun_net_conc_prog_pkg.create_net_batch','Before calling create batch API');
15: FUN_NET_ARAP_PKG.create_net_batch(
16: p_init_msg_list => FND_API.G_TRUE,
17: p_commit => FND_API.G_TRUE,
18: x_return_status => l_return_status,

Line 22: fun_net_util.log_string(1,'fun_net_conc_prog_pkg.create_net_batch','return from create batch API');

18: x_return_status => l_return_status,
19: x_msg_count => l_msg_count,
20: x_msg_data => l_msg_data,
21: p_batch_id => p_batch_id);
22: fun_net_util.log_string(1,'fun_net_conc_prog_pkg.create_net_batch','return from create batch API');
23: IF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
24: fun_net_util.log_string(1,'fun_net_conc_prog_pkg.create_net_batch','Success');
25: retcode := 0;
26: ELSE

Line 24: fun_net_util.log_string(1,'fun_net_conc_prog_pkg.create_net_batch','Success');

20: x_msg_data => l_msg_data,
21: p_batch_id => p_batch_id);
22: fun_net_util.log_string(1,'fun_net_conc_prog_pkg.create_net_batch','return from create batch API');
23: IF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
24: fun_net_util.log_string(1,'fun_net_conc_prog_pkg.create_net_batch','Success');
25: retcode := 0;
26: ELSE
27: fun_net_util.log_string(1,'fun_net_conc_prog_pkg.create_net_batch','Error');
28: retcode := 2;

Line 27: fun_net_util.log_string(1,'fun_net_conc_prog_pkg.create_net_batch','Error');

23: IF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
24: fun_net_util.log_string(1,'fun_net_conc_prog_pkg.create_net_batch','Success');
25: retcode := 0;
26: ELSE
27: fun_net_util.log_string(1,'fun_net_conc_prog_pkg.create_net_batch','Error');
28: retcode := 2;
29: END IF;
30: EXCEPTION
31: WHEN OTHERS THEN

Line 165: END FUN_NET_CONC_PROG_PKG;

161: WHEN OTHERS THEN
162: retcode := 2;
163: errbuf := sqlerrm;
164: END Reverse_Net_Batch;
165: END FUN_NET_CONC_PROG_PKG;