DBA Data[Home] [Help]

APPS.RCV_CALL_LCM_WS dependencies on FND_CONCURRENT

Line 60: l_ret := fnd_concurrent.set_completion_status('NORMAL', 'Success');

56:
57: asn_debug.put_line('Entering RCV_CALL_LCM_WS.insertLCM' || to_char(sysdate,'DD-MON-YYYY HH:MI:SS'));
58:
59: -- Bug 9411154
60: l_ret := fnd_concurrent.set_completion_status('NORMAL', 'Success');
61:
62: x_retcode := 0;
63: x_errbuf := 'Success';
64: -- /Bug 9411154

Line 88: l_ret := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', 'Warning');

84: IF l_msg_count = 1 THEN
85: FND_FILE.PUT_LINE(FND_FILE.LOG, l_msg_data);
86: x_retcode := 1;
87: -- Bug 9411154
88: l_ret := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', 'Warning');
89: x_errbuf := 'Warnings found.'||FND_GLOBAL.local_chr (10) ;
90: -- /Bug 9411154
91: ELSIF l_msg_count > 1 THEN
92: FOR i IN 1 ..l_msg_count

Line 98: l_ret := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', 'Warning');

94: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MSG_PUB.get (i, FND_API.g_false) );
95: END LOOP;
96: x_retcode := 1;
97: -- Bug 9411154
98: l_ret := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', 'Warning');
99: x_errbuf := 'Warnings found.'||FND_GLOBAL.local_chr (10) ;
100: -- /Bug 9411154
101: END IF;
102:

Line 144: l_ret := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', 'Warning');

140: IF l_msg_count = 1 THEN
141: FND_FILE.PUT_LINE(FND_FILE.LOG, l_msg_data);
142: x_retcode := 1;
143: -- Bug 9411154
144: l_ret := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', 'Warning');
145: x_errbuf := 'Warnings found.'||FND_GLOBAL.local_chr (10) ;
146: -- /Bug 9411154
147: ELSIF l_msg_count > 1 THEN
148: FOR i IN 1 ..l_msg_count

Line 154: l_ret := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', 'Warning');

150: FND_FILE.PUT_LINE(FND_FILE.LOG,FND_MSG_PUB.get (i, FND_API.g_false) );
151: END LOOP;
152: x_retcode := 1;
153: -- Bug 9411154
154: l_ret := FND_CONCURRENT.SET_COMPLETION_STATUS('WARNING', 'Warning');
155: x_errbuf := 'Warnings found.'||FND_GLOBAL.local_chr (10) ;
156: -- /Bug 9411154
157: END IF;
158:

Line 199: l_ret := fnd_concurrent.set_completion_status('ERROR', 'Error');

195: IF c_rhi_rti%ISOPEN THEN
196: CLOSE c_rhi_rti;
197: END IF;
198: asn_debug.put_line('the error is: ' || sqlcode ||' '||substr(SQLERRM, 1, 1000));
199: l_ret := fnd_concurrent.set_completion_status('ERROR', 'Error');
200: x_retcode := 2;
201: x_errbuf := 'Error';
202: END insertLCM;
203: