DBA Data[Home] [Help]

APPS.IBU_CACHE dependencies on FND_PROGRAM

Line 31: if fnd_program.executable_exists(

27: msg := '';
28:
29: /* Create the executable for the job */
30:
31: if fnd_program.executable_exists(
32: executable_short_name => 'IBU_TEXT_CACHE_CLEANUP_EXEC',
33: application => 'IBU')
34: then
35: msg := msg || 'Executable IBU_TEXT_CACHE_CLEANUP_EXEC already exists.';

Line 37: fnd_program.executable(executable => 'IBU_TEXT_CACHE_CLEANUP_EXEC',

33: application => 'IBU')
34: then
35: msg := msg || 'Executable IBU_TEXT_CACHE_CLEANUP_EXEC already exists.';
36: else
37: fnd_program.executable(executable => 'IBU_TEXT_CACHE_CLEANUP_EXEC',
38: application => 'IBU',
39: short_name => 'IBU_TEXT_CACHE_CLEANUP_EXEC',
40: description => 'Timeout cache entries for IBU',
41: execution_method => 'PL/SQL Stored Procedure',

Line 51: if fnd_program.program_exists(program => 'IBU_TEXT_CACHE_CLEANUP_PROG',

47: end if;
48:
49: /* Create the program and its parameter(s) for the job */
50:
51: if fnd_program.program_exists(program => 'IBU_TEXT_CACHE_CLEANUP_PROG',
52: application => 'IBU')
53: then
54: msg := msg || 'Program IBU_TEXT_CACHE_CLEANUP_PROG already exists.';
55: else

Line 56: fnd_program.register(program => 'Timeout for the cache entries for IBU',

52: application => 'IBU')
53: then
54: msg := msg || 'Program IBU_TEXT_CACHE_CLEANUP_PROG already exists.';
55: else
56: fnd_program.register(program => 'Timeout for the cache entries for IBU',
57: application => 'IBU',
58: enabled => 'Y',
59: short_name => 'IBU_TEXT_CACHE_CLEANUP_PROG',
60: description => 'Timeout cache entries for IBU',

Line 86: fnd_program.parameter(program_short_name => 'IBU_TEXT_CACHE_CLEANUP_PROG',

82: language_code => 'US');
83:
84: msg := msg || 'Program IBU_TEXT_CACHE_CLEANUP_PROG successfully created.';
85:
86: fnd_program.parameter(program_short_name => 'IBU_TEXT_CACHE_CLEANUP_PROG',
87: application => 'IBU',
88: sequence => 1,
89: parameter => 'TIMEOUT',
90: description => 'Age of entry to expire in minutes.',

Line 108: /* Load the message generated by fnd_program */

104: end if;
105:
106: exception
107: when program_error then
108: /* Load the message generated by fnd_program */
109: /* so that we can print it to the log. */
110: msg := msg || fnd_program.message;
111:
112: when others then

Line 110: msg := msg || fnd_program.message;

106: exception
107: when program_error then
108: /* Load the message generated by fnd_program */
109: /* so that we can print it to the log. */
110: msg := msg || fnd_program.message;
111:
112: when others then
113: /* Re-raise the exception and SQL*Plus */
114: /* will print the Oracle error and exit. */

Line 126: if fnd_program.program_exists(program => 'IBU_TEXT_CACHE_CLEANUP_PROG',

122: begin
123:
124: msg := '';
125:
126: if fnd_program.program_exists(program => 'IBU_TEXT_CACHE_CLEANUP_PROG',
127: application => 'IBU')
128: then
129: fnd_program.delete_program('IBU_TEXT_CACHE_CLEANUP_PROG', 'IBU');
130: msg := msg || 'Program IBU_TEXT_CACHE_CLEANUP_PROG successfully uninstalled.';

Line 129: fnd_program.delete_program('IBU_TEXT_CACHE_CLEANUP_PROG', 'IBU');

125:
126: if fnd_program.program_exists(program => 'IBU_TEXT_CACHE_CLEANUP_PROG',
127: application => 'IBU')
128: then
129: fnd_program.delete_program('IBU_TEXT_CACHE_CLEANUP_PROG', 'IBU');
130: msg := msg || 'Program IBU_TEXT_CACHE_CLEANUP_PROG successfully uninstalled.';
131: else
132: msg := msg || 'Program IBU_TEXT_CACHE_CLEANUP_PROG does not exist.';
133: end if;

Line 135: if fnd_program.executable_exists('IBU_TEXT_CACHE_CLEANUP_EXEC', 'IBU')

131: else
132: msg := msg || 'Program IBU_TEXT_CACHE_CLEANUP_PROG does not exist.';
133: end if;
134:
135: if fnd_program.executable_exists('IBU_TEXT_CACHE_CLEANUP_EXEC', 'IBU')
136: then
137: fnd_program.delete_executable('IBU_TEXT_CACHE_CLEANUP_EXEC', 'IBU');
138: msg := msg || 'Executable IBU_TEXT_CACHE_CLEANUP_EXEC successfully uninstalled.';
139: else

Line 137: fnd_program.delete_executable('IBU_TEXT_CACHE_CLEANUP_EXEC', 'IBU');

133: end if;
134:
135: if fnd_program.executable_exists('IBU_TEXT_CACHE_CLEANUP_EXEC', 'IBU')
136: then
137: fnd_program.delete_executable('IBU_TEXT_CACHE_CLEANUP_EXEC', 'IBU');
138: msg := msg || 'Executable IBU_TEXT_CACHE_CLEANUP_EXEC successfully uninstalled.';
139: else
140: msg := msg || 'Executable IBU_TEXT_CACHE_CLEANUP_EXEC does not exist.';
141: end if;