DBA Data[Home] [Help]

APPS.FII_CCC_SEC_UPL_PKG dependencies on FII_MESSAGE

Line 168: FII_MESSAGE.Func_Ent('FII_CCC_SEC_UPL_PKG.validate');

164: BEGIN
165:
166: -- debug msg time stamp of entering this procedure
167: IF g_debug_flag = 'Y' THEN
168: FII_MESSAGE.Func_Ent('FII_CCC_SEC_UPL_PKG.validate');
169: END IF;
170:
171: --------------------------------------------------------------
172: -- 1. The start/end date should be the same across all records

Line 254: FII_MESSAGE.Func_Succ(func_name => 'FII_CCC_SEC_UPL_PKG.validate');

250: retcode := 'S';
251:
252: -- debug msg time stamp of completing this procedure successfully
253: IF g_debug_flag = 'Y' THEN
254: FII_MESSAGE.Func_Succ(func_name => 'FII_CCC_SEC_UPL_PKG.validate');
255: END IF;
256:
257: ELSE
258:

Line 275: FII_MESSAGE.Func_Succ(func_name => 'FII_CCC_SEC_UPL_PKG.validate');

271:
272: retcode := 'E';
273: -- debug msg time stamp of exiting this procedure
274: IF g_debug_flag = 'Y' THEN
275: FII_MESSAGE.Func_Succ(func_name => 'FII_CCC_SEC_UPL_PKG.validate');
276: END IF;
277:
278: END IF;
279:

Line 319: FII_MESSAGE.Func_Ent('FII_CCC_SEC_UPL_PKG.upload');

315: BEGIN
316:
317: -- debug msg time stamp of entering this procedure
318: IF g_debug_flag = 'Y' THEN
319: FII_MESSAGE.Func_Ent('FII_CCC_SEC_UPL_PKG.upload');
320: END IF;
321:
322:
323: -- If there is already an existing grant for the Grant To / Role pair,

Line 424: FII_MESSAGE.Func_Succ(func_name => 'FII_CCC_SEC_UPL_PKG.upload');

420:
421: retcode := 'S';
422: -- debug msg time stamp of completing this procedure successfully
423: IF g_debug_flag = 'Y' THEN
424: FII_MESSAGE.Func_Succ(func_name => 'FII_CCC_SEC_UPL_PKG.upload');
425: END IF;
426:
427:
428: END upload;

Line 453: FII_MESSAGE.Func_Ent('FII_CCC_SEC_UPL_PKG.conc_upload');

449: BEGIN
450:
451: -- debug msg time stamp of entering this procedure
452: IF g_debug_flag = 'Y' THEN
453: FII_MESSAGE.Func_Ent('FII_CCC_SEC_UPL_PKG.conc_upload');
454: END IF;
455:
456: --
457: -- check if any data to process, exit if not

Line 468: FII_MESSAGE.Func_Succ('FII_CCC_SEC_UPL_PKG.conc_upload');

464: IF l_record_count = 0 THEN
465: dbg('conc_upload: No data in the interface table to process. Exit.');
466: -- debug msg time stamp of exiting this procedure
467: IF g_debug_flag = 'Y' THEN
468: FII_MESSAGE.Func_Succ('FII_CCC_SEC_UPL_PKG.conc_upload');
469: END IF;
470: retcode := 'W';
471: errbuf := fnd_message.get_string('FII', 'FII_CCC_SEC_CP_NO_REC_TO_PROCS');
472: l_ret_status := FND_CONCURRENT.Set_Completion_Status(status => 'WARNING',message => errbuf);

Line 494: FII_MESSAGE.Func_Succ('FII_CCC_SEC_UPL_PKG.conc_upload');

490: l_ret_status := FND_CONCURRENT.Set_Completion_Status(status => 'ERROR',message => errbuf);
491: dbg('conc_upload: Data validation failed. Exit.');
492: -- debug msg time stamp of exiting this procedure
493: IF g_debug_flag = 'Y' THEN
494: FII_MESSAGE.Func_Succ('FII_CCC_SEC_UPL_PKG.conc_upload');
495: END IF;
496: RETURN;
497: END IF;
498:

Line 512: FII_MESSAGE.Func_Succ('FII_CCC_SEC_UPL_PKG.conc_upload');

508: l_ret_status := FND_CONCURRENT.Set_Completion_Status(status => 'ERROR',message => errbuf);
509: dbg('conc_upload: Upload to fnd_grants process failed. Exit.');
510: -- debug msg time stamp of exiting this procedure
511: IF g_debug_flag = 'Y' THEN
512: FII_MESSAGE.Func_Succ('FII_CCC_SEC_UPL_PKG.conc_upload');
513: END IF;
514: RETURN;
515: END IF;
516:

Line 519: FII_MESSAGE.Func_Succ(func_name => 'FII_CCC_SEC_UPL_PKG.conc_upload');

515: END IF;
516:
517: -- debug msg time stamp of completing this procedure successfully
518: IF g_debug_flag = 'Y' THEN
519: FII_MESSAGE.Func_Succ(func_name => 'FII_CCC_SEC_UPL_PKG.conc_upload');
520: END IF;
521: l_ret_status := FND_CONCURRENT.Set_Completion_Status
522: (status => 'COMPLETE', message => NULL);
523: EXCEPTION

Line 559: FII_MESSAGE.Func_Ent('FII_CCC_SEC_UPL_PKG.purge_interface');

555: BEGIN
556:
557: -- debug msg time stamp of entering this procedure
558: IF g_debug_flag = 'Y' THEN
559: FII_MESSAGE.Func_Ent('FII_CCC_SEC_UPL_PKG.purge_interface');
560: END IF;
561:
562: --
563: -- purge fii_ccc_sec_interface table

Line 573: FII_MESSAGE.Func_Succ('FII_CCC_SEC_UPL_PKG.purge_interface');

569: IF l_trunc_retcode = -1 THEN
570: dbg('purge_interface: purge interface table failed. Exit.');
571: -- debug msg time stamp of exiting this procedure
572: IF g_debug_flag = 'Y' THEN
573: FII_MESSAGE.Func_Succ('FII_CCC_SEC_UPL_PKG.purge_interface');
574: END IF;
575: retcode := 'E';
576: errbuf := fnd_message.get_string('FII', 'FII_CCC_SEC_PURGE_INTR_FAILED');
577: l_ret_status := FND_CONCURRENT.Set_Completion_Status(status => 'ERROR',message => errbuf);

Line 582: FII_MESSAGE.Func_Succ(func_name => 'FII_CCC_SEC_UPL_PKG.purge_interface');

578: RETURN;
579: ELSE
580: -- debug msg time stamp of completing this procedure successfully
581: IF g_debug_flag = 'Y' THEN
582: FII_MESSAGE.Func_Succ(func_name => 'FII_CCC_SEC_UPL_PKG.purge_interface');
583: END IF;
584: l_ret_status := FND_CONCURRENT.Set_Completion_Status
585: (status => 'COMPLETE', message => NULL);
586: END IF;