DBA Data[Home] [Help]

APPS.HR_GEN_PKG dependencies on HR_UTILITY

Line 135: hr_utility.set_location ('hr_gen_pkg.GET_CUSTOMIZED_RESTRICTION',1);

131: l_enabled_flag varchar2 (30);
132: --
133: begin
134: --
135: hr_utility.set_location ('hr_gen_pkg.GET_CUSTOMIZED_RESTRICTION',1);
136: --
137: -- Get the details of the requested customization
138: --
139: open csr_restriction;

Line 148: hr_utility.set_location ('hr_gen_pkg.GET_CUSTOMIZED_RESTRICTION',2);

144: p_standard_title,
145: l_enabled_flag,
146: p_customized_restriction_id;
147: --
148: hr_utility.set_location ('hr_gen_pkg.GET_CUSTOMIZED_RESTRICTION',2);
149: --
150: if csr_restriction%found then
151: --
152: hr_utility.trace ('Customized restriction found');

Line 152: hr_utility.trace ('Customized restriction found');

148: hr_utility.set_location ('hr_gen_pkg.GET_CUSTOMIZED_RESTRICTION',2);
149: --
150: if csr_restriction%found then
151: --
152: hr_utility.trace ('Customized restriction found');
153: --
154: close csr_restriction;
155: --
156: -- If the customization is disabled, pass this info to the client

Line 160: hr_utility.trace ('Customization is disabled');

156: -- If the customization is disabled, pass this info to the client
157: --
158: if l_enabled_flag <> 'Y' then
159: --
160: hr_utility.trace ('Customization is disabled');
161: p_message_name := 'HR_7074_CUST_NOT_ENABLED';
162: --
163: end if;
164: --

Line 167: hr_utility.trace ('Customization was not found for the current form');

163: end if;
164: --
165: else
166: --
167: hr_utility.trace ('Customization was not found for the current form');
168: --
169: -- If the customization was not found, then establish why.
170: --
171: open csr_form_name; -- Is the customization for a different form?

Line 176: hr_utility.trace ('Customization was found for a different form');

172: fetch csr_form_name into g_dummy;
173: --
174: if csr_form_name%found then -- Tell the client that the customization applies to a different form
175: --
176: hr_utility.trace ('Customization was found for a different form');
177: p_message_name := 'HR_7070_CUST_INVALID_CUST_NAME';
178: --
179: else -- Tell the client that the requested customization does not exist
180: --

Line 181: hr_utility.trace ('Customization was not found for any form');

177: p_message_name := 'HR_7070_CUST_INVALID_CUST_NAME';
178: --
179: else -- Tell the client that the requested customization does not exist
180: --
181: hr_utility.trace ('Customization was not found for any form');
182: p_message_name := 'HR_7072_CUST_NO_EXIST_NAME';
183: --
184: end if;
185: --

Line 190: hr_utility.set_location ('hr_gen_pkg.GET_CUSTOMIZED_RESTRICTION',3);

186: close csr_form_name;
187: --
188: end if;
189: --
190: hr_utility.set_location ('hr_gen_pkg.GET_CUSTOMIZED_RESTRICTION',3);
191: --
192: end get_customized_restriction;
193: --------------------------------------------------------------------------------
194: procedure insert_comment (

Line 314: hr_utility.trace_on(trace_mode,session_identifier) ;

310: --------------------------------------------------------------------------------
311: procedure trace_on(trace_mode in varchar2, session_identifier in varchar2) is
312: begin
313:
314: hr_utility.trace_on(trace_mode,session_identifier) ;
315:
316: end trace_on ;
317: --------------------------------------------------------------------------------
318: procedure trace_off is

Line 321: hr_utility.trace_off ;

317: --------------------------------------------------------------------------------
318: procedure trace_off is
319: begin
320:
321: hr_utility.trace_off ;
322:
323: end trace_off ;
324: --------------------------------------------------------------------------------
325: procedure trace(trace_data in varchar2) is

Line 328: hr_utility.trace(trace_data) ;

324: --------------------------------------------------------------------------------
325: procedure trace(trace_data in varchar2) is
326: begin
327:
328: hr_utility.trace(trace_data) ;
329:
330: end trace ;
331: --------------------------------------------------------------------------------
332: procedure set_location(procedure_name in varchar2, stage in number) is

Line 335: hr_utility.set_location(procedure_name,stage);

331: --------------------------------------------------------------------------------
332: procedure set_location(procedure_name in varchar2, stage in number) is
333: begin
334:
335: hr_utility.set_location(procedure_name,stage);
336:
337: end set_location;
338: --------------------------------------------------------------------------------
339: procedure set_trace_options(p_options in varchar2) is

Line 342: hr_utility.set_trace_options(p_options);

338: --------------------------------------------------------------------------------
339: procedure set_trace_options(p_options in varchar2) is
340: begin
341:
342: hr_utility.set_trace_options(p_options);
343:
344: end set_trace_options;
345: --------------------------------------------------------------------------------
346: -- ADE Procedures