DBA Data[Home] [Help]

APPS.FF_CLIENT_ENGINE dependencies on FF_UTILS

Line 35: ff_utils.entry('client:local_set_input');

31: l_count binary_integer;
32: l_found boolean := false;
33: begin
34:
35: ff_utils.entry('client:local_set_input');
36:
37: if(p_input_name is null) then
38: return; -- do not set if null.
39: end if;

Line 57: ff_utils.exit('client:local_set_input');

53: hr_utility.set_message_token('NAME', p_input_name);
54: hr_utility.raise_error;
55: end if;
56:
57: ff_utils.exit('client:local_set_input');
58:
59: end local_set_input;
60:
61: /*

Line 79: ff_utils.entry('client:local_get_output');

75: l_count binary_integer;
76: l_found boolean;
77: begin
78:
79: ff_utils.entry('client:local_get_output');
80:
81: -- Exit immediately if the return name is null.
82: if(p_return_name is null) then
83: return;

Line 101: ff_utils.exit('client:local_get_output');

97: hr_utility.set_message_token('NAME', p_return_name);
98: hr_utility.raise_error;
99: end if;
100:
101: ff_utils.exit('client:local_get_output');
102:
103: end local_get_output;
104:
105:

Line 123: ff_utils.entry('client:init_formula');

119: p_effective_date in date
120: ) is
121: begin
122:
123: ff_utils.entry('client:init_formula');
124:
125: ff_exec.init_formula(p_formula_id, p_effective_date, g_inputs, g_outputs);
126:
127: ff_utils.exit('client:init_formula');

Line 127: ff_utils.exit('client:init_formula');

123: ff_utils.entry('client:init_formula');
124:
125: ff_exec.init_formula(p_formula_id, p_effective_date, g_inputs, g_outputs);
126:
127: ff_utils.exit('client:init_formula');
128:
129: end init_formula;
130:
131: ------------------------------- set_input -------------------------------------

Line 149: ff_utils.entry('client:set_input (varchar2)');

145: p_input_name in varchar2,
146: p_value in varchar2
147: ) is
148: begin
149: ff_utils.entry('client:set_input (varchar2)');
150:
151: -- Call the generic set_input procedure
152: local_set_input(p_input_name, p_value);
153:

Line 154: ff_utils.exit('set_input (varchar2)');

150:
151: -- Call the generic set_input procedure
152: local_set_input(p_input_name, p_value);
153:
154: ff_utils.exit('set_input (varchar2)');
155:
156: end set_input;
157:
158: ------------------------------ run_formula ------------------------------------

Line 172: ff_utils.entry('client:run_formula');

168:
169: procedure run_formula is
170: begin
171:
172: ff_utils.entry('client:run_formula');
173:
174: ff_exec.run_formula(g_inputs, g_outputs);
175:
176: ff_utils.exit('client:run_formula');

Line 176: ff_utils.exit('client:run_formula');

172: ff_utils.entry('client:run_formula');
173:
174: ff_exec.run_formula(g_inputs, g_outputs);
175:
176: ff_utils.exit('client:run_formula');
177:
178: end run_formula;
179:
180: ------------------------------- run_id_formula --------------------------------

Line 244: ff_utils.entry('run_id_formula');

240: p_return_name10 in varchar2, p_return_value10 in out varchar2
241: ) is
242: begin
243:
244: ff_utils.entry('run_id_formula');
245:
246: -- Initialise the formula.
247: ff_exec.init_formula(p_formula_id, p_effective_date, g_inputs, g_outputs);
248:

Line 292: ff_utils.exit('run_id_formula');

288: local_get_output(p_return_name08, p_return_value08);
289: local_get_output(p_return_name09, p_return_value09);
290: local_get_output(p_return_name10, p_return_value10);
291:
292: ff_utils.exit('run_id_formula');
293:
294: end run_id_formula;
295:
296: ------------------------------ run_name_formula -------------------------------

Line 361: ff_utils.entry('run_name_formula');

357: p_return_name10 in varchar2, p_return_value10 in out varchar2
358: ) is
359: l_formula_id number;
360: begin
361: ff_utils.entry('run_name_formula');
362:
363: -- Obtain the appropriate ids.
364: select fff.formula_id
365: into l_formula_id

Line 451: ff_utils.exit('run_name_formula');

447: p_return_name10 => p_return_name10,
448: p_return_value10 => p_return_value10
449: );
450:
451: ff_utils.exit('run_name_formula');
452:
453: end run_name_formula;
454:
455: -------------------------------- get_output -----------------------------------

Line 471: ff_utils.entry('client:get_output (varchar2)');

467: p_return_value out varchar2
468: ) is
469: begin
470:
471: ff_utils.entry('client:get_output (varchar2)');
472:
473: -- Call the generic get_output procedure.
474: local_get_output(p_return_name, p_return_value);
475:

Line 476: ff_utils.exit('client:get_output (varchar2)');

472:
473: -- Call the generic get_output procedure.
474: local_get_output(p_return_name, p_return_value);
475:
476: ff_utils.exit('client:get_output (varchar2)');
477:
478: end get_output;
479:
480: end ff_client_engine;