DBA Data[Home] [Help]

APPS.IEX_STRATEGY_CNT_PUB dependencies on FND_CONCURRENT

Line 2564: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'ERROR',

2560: fnd_file.put_line(FND_FILE.LOG,' But none of the Operating Units got registered with business level ');
2561: ELSE
2562: fnd_file.put_line(FND_FILE.LOG,' Operating Unit '|| p_org_id|| ' is not registered with business level');
2563: END IF;
2564: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'ERROR',
2565: message => 'Atleast one OU must be registered with business level to run the program ');
2566: return;
2567: END IF;
2568: -- end for bug 11844672

Line 2886: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'WARNING',

2882:
2883: end if; -- org enabled
2884: else
2885: fnd_file.put_line(FND_FILE.LOG, 'Iex Strategy Management concurrent program failed to run as the collections method is set up for dunning.');
2886: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'WARNING',
2887: message => 'Iex Strategy Management concurrent program failed to run as the collections method is set up for dunning.');
2888: end if; -- Added by snuthala for 10221334 12/2/2010
2889: -- end Naveen
2890:

Line 2914: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'WARNING',

2910:
2911: if l_c_org_count = l_unPocessed_orgids then
2912: if p_org_id is not null then
2913: fnd_file.put_line(FND_FILE.LOG, ' Opearting Unit passed is Not Setup for Startegy please check Setup');
2914: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'WARNING',
2915: message => 'Opearting Unit passed is Not Setup for Startegy please check Setup');
2916: else
2917: fnd_file.put_line(FND_FILE.LOG, 'No Opearting Unit is Setup for Startegy please check Setup');
2918: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'WARNING',

Line 2918: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'WARNING',

2914: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'WARNING',
2915: message => 'Opearting Unit passed is Not Setup for Startegy please check Setup');
2916: else
2917: fnd_file.put_line(FND_FILE.LOG, 'No Opearting Unit is Setup for Startegy please check Setup');
2918: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'WARNING',
2919: message => 'No Opearting Unit is Setup for Startegy please check Setup');
2920: end if;
2921: else
2922: fnd_file.put_line(FND_FILE.LOG, 'At least one Opearting Unit is Setup for Dunning please check Setup');

Line 2923: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'WARNING',

2919: message => 'No Opearting Unit is Setup for Startegy please check Setup');
2920: end if;
2921: else
2922: fnd_file.put_line(FND_FILE.LOG, 'At least one Opearting Unit is Setup for Dunning please check Setup');
2923: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'WARNING',
2924: message => 'At least one Opearting Unit is Setup for Dunning please check Setup');
2925: end if;
2926: end if;
2927:

Line 2935: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'ERROR',

2931:
2932: WHEN OTHERS THEN
2933: FND_FILE.put_line( FND_FILE.LOG,'err'||sqlerrm);
2934: writelog('In Main Procedure, err: '||sqlerrm);
2935: l_con_update_re_st := fnd_concurrent.set_completion_status (status => 'ERROR',
2936: message => 'Exception occured while running the Concurrent Program : '||sqlerrm); -- added by snuthala for bug 10221334 on 21-10-2010
2937:
2938: END;
2939: