DBA Data[Home] [Help]

APPS.EDW_OWB_COLLECTION_UTIL dependencies on FND_PROGRAM

Line 10619: FND_PROGRAM.executable(

10615: end if;
10616: if delete_conc_program(p_conc_short_name,p_exe_name,l_bis_long_name,'LONG')=false then
10617: null;
10618: end if;
10619: FND_PROGRAM.executable(
10620: executable=>p_exe_name,
10621: application=>l_bis_long_name,
10622: short_name=>p_exe_name,
10623: description=>p_exe_name,

Line 10630: FND_PROGRAM.REGISTER(

10626: );
10627: if g_debug then
10628: write_to_log_file_n('Created executable '||p_exe_name);
10629: end if;
10630: FND_PROGRAM.REGISTER(
10631: program=>p_conc_name,
10632: application=>l_bis_long_name,
10633: enabled=>'Y',
10634: short_name=>p_conc_short_name,

Line 10645: FND_PROGRAM.PARAMETER(

10641: if g_debug then
10642: write_to_log_file_n('Created program '||p_conc_name);
10643: end if;
10644: for i in 1..p_number_parameters loop
10645: FND_PROGRAM.PARAMETER(
10646: program_short_name=>p_conc_short_name,
10647: application=>l_bis_long_name,
10648: sequence=>i,
10649: parameter=>p_parameter(i),

Line 10672: write_to_log_file_n('FND_PROGRAM.MESSAGE='||FND_PROGRAM.MESSAGE);

10668: return true;
10669: Exception when others then
10670: g_status_message:=sqlerrm;
10671: write_to_log_file_n('Error in create_conc_program '||g_status_message);
10672: write_to_log_file_n('FND_PROGRAM.MESSAGE='||FND_PROGRAM.MESSAGE);
10673: return false;
10674: End;
10675:
10676: function delete_conc_program(

Line 10694: FND_PROGRAM.DELETE_PROGRAM(p_conc_name,l_bis_long_name);

10690: if get_app_long_name(p_bis_name,l_bis_long_name)=false then
10691: null;
10692: end if;
10693: end if;
10694: FND_PROGRAM.DELETE_PROGRAM(p_conc_name,l_bis_long_name);
10695: FND_PROGRAM.DELETE_EXECUTABLE(p_exe_name,l_bis_long_name);
10696: if g_debug then
10697: write_to_log_file_n('Deleted '||p_conc_name||' '||p_exe_name);
10698: end if;

Line 10695: FND_PROGRAM.DELETE_EXECUTABLE(p_exe_name,l_bis_long_name);

10691: null;
10692: end if;
10693: end if;
10694: FND_PROGRAM.DELETE_PROGRAM(p_conc_name,l_bis_long_name);
10695: FND_PROGRAM.DELETE_EXECUTABLE(p_exe_name,l_bis_long_name);
10696: if g_debug then
10697: write_to_log_file_n('Deleted '||p_conc_name||' '||p_exe_name);
10698: end if;
10699: return true;

Line 10703: write_to_log_file_n('FND_PROGRAM.MESSAGE='||FND_PROGRAM.MESSAGE);

10699: return true;
10700: Exception when others then
10701: g_status_message:=sqlerrm;
10702: write_to_log_file_n('Error in delete_conc_program '||g_status_message);
10703: write_to_log_file_n('FND_PROGRAM.MESSAGE='||FND_PROGRAM.MESSAGE);
10704: return false;
10705: End;
10706:
10707: ---------------------------------------------