DBA Data[Home] [Help]

APPS.HR_IPT_UPD dependencies on HR_IPT_SHD

Line 55: (p_rec in out nocopy hr_ipt_shd.g_rec_type

51: --
52: -- {End Of Comments}
53: -- ----------------------------------------------------------------------------
54: Procedure update_dml
55: (p_rec in out nocopy hr_ipt_shd.g_rec_type
56: ) is
57: --
58: l_proc varchar2(72) := g_package||'update_dml';
59: --

Line 89: hr_ipt_shd.constraint_error

85: Exception
86: When hr_api.check_integrity_violated Then
87: -- A check constraint has been violated
88: --
89: hr_ipt_shd.constraint_error
90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.parent_integrity_violated Then
92: -- Parent integrity has been violated
93: --

Line 94: hr_ipt_shd.constraint_error

90: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
91: When hr_api.parent_integrity_violated Then
92: -- Parent integrity has been violated
93: --
94: hr_ipt_shd.constraint_error
95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.unique_integrity_violated Then
97: -- Unique integrity has been violated
98: --

Line 99: hr_ipt_shd.constraint_error

95: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
96: When hr_api.unique_integrity_violated Then
97: -- Unique integrity has been violated
98: --
99: hr_ipt_shd.constraint_error
100: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
101: When Others Then
102: --
103: Raise;

Line 139: (p_rec in hr_ipt_shd.g_rec_type

135: --
136: -- {End Of Comments}
137: -- ----------------------------------------------------------------------------
138: Procedure pre_update
139: (p_rec in hr_ipt_shd.g_rec_type
140: ) is
141: --
142: l_proc varchar2(72) := g_package||'pre_update';
143: --

Line 183: (p_rec in hr_ipt_shd.g_rec_type

179: --
180: -- {End Of Comments}
181: -- ----------------------------------------------------------------------------
182: Procedure post_update
183: (p_rec in hr_ipt_shd.g_rec_type
184: ) is
185: --
186: l_proc varchar2(72) := g_package||'post_update';
187: --

Line 210: => hr_ipt_shd.g_old_rec.source_lang

206: => p_rec.prompt_text
207: ,p_tooltip_text
208: => p_rec.tooltip_text
209: ,p_source_lang_o
210: => hr_ipt_shd.g_old_rec.source_lang
211: ,p_default_value_o
212: => hr_ipt_shd.g_old_rec.default_value
213: ,p_information_prompt_o
214: => hr_ipt_shd.g_old_rec.information_prompt

Line 212: => hr_ipt_shd.g_old_rec.default_value

208: => p_rec.tooltip_text
209: ,p_source_lang_o
210: => hr_ipt_shd.g_old_rec.source_lang
211: ,p_default_value_o
212: => hr_ipt_shd.g_old_rec.default_value
213: ,p_information_prompt_o
214: => hr_ipt_shd.g_old_rec.information_prompt
215: ,p_label_o
216: => hr_ipt_shd.g_old_rec.label

Line 214: => hr_ipt_shd.g_old_rec.information_prompt

210: => hr_ipt_shd.g_old_rec.source_lang
211: ,p_default_value_o
212: => hr_ipt_shd.g_old_rec.default_value
213: ,p_information_prompt_o
214: => hr_ipt_shd.g_old_rec.information_prompt
215: ,p_label_o
216: => hr_ipt_shd.g_old_rec.label
217: ,p_prompt_text_o
218: => hr_ipt_shd.g_old_rec.prompt_text

Line 216: => hr_ipt_shd.g_old_rec.label

212: => hr_ipt_shd.g_old_rec.default_value
213: ,p_information_prompt_o
214: => hr_ipt_shd.g_old_rec.information_prompt
215: ,p_label_o
216: => hr_ipt_shd.g_old_rec.label
217: ,p_prompt_text_o
218: => hr_ipt_shd.g_old_rec.prompt_text
219: ,p_tooltip_text_o
220: => hr_ipt_shd.g_old_rec.tooltip_text

Line 218: => hr_ipt_shd.g_old_rec.prompt_text

214: => hr_ipt_shd.g_old_rec.information_prompt
215: ,p_label_o
216: => hr_ipt_shd.g_old_rec.label
217: ,p_prompt_text_o
218: => hr_ipt_shd.g_old_rec.prompt_text
219: ,p_tooltip_text_o
220: => hr_ipt_shd.g_old_rec.tooltip_text
221: );
222: --

Line 220: => hr_ipt_shd.g_old_rec.tooltip_text

216: => hr_ipt_shd.g_old_rec.label
217: ,p_prompt_text_o
218: => hr_ipt_shd.g_old_rec.prompt_text
219: ,p_tooltip_text_o
220: => hr_ipt_shd.g_old_rec.tooltip_text
221: );
222: --
223: exception
224: --

Line 280: (p_rec in out nocopy hr_ipt_shd.g_rec_type

276: --
277: -- {End Of Comments}
278: -- ----------------------------------------------------------------------------
279: Procedure convert_defs
280: (p_rec in out nocopy hr_ipt_shd.g_rec_type
281: ) is
282: --
283: Begin
284: --

Line 292: hr_ipt_shd.g_old_rec.source_lang;

288: -- is being used then we must set to the 'current' argument value.
289: --
290: If (p_rec.source_lang = hr_api.g_varchar2) then
291: p_rec.source_lang :=
292: hr_ipt_shd.g_old_rec.source_lang;
293: End If;
294: If (p_rec.default_value = hr_api.g_varchar2) then
295: p_rec.default_value :=
296: hr_ipt_shd.g_old_rec.default_value;

Line 296: hr_ipt_shd.g_old_rec.default_value;

292: hr_ipt_shd.g_old_rec.source_lang;
293: End If;
294: If (p_rec.default_value = hr_api.g_varchar2) then
295: p_rec.default_value :=
296: hr_ipt_shd.g_old_rec.default_value;
297: End If;
298: If (p_rec.information_prompt = hr_api.g_varchar2) then
299: p_rec.information_prompt :=
300: hr_ipt_shd.g_old_rec.information_prompt;

Line 300: hr_ipt_shd.g_old_rec.information_prompt;

296: hr_ipt_shd.g_old_rec.default_value;
297: End If;
298: If (p_rec.information_prompt = hr_api.g_varchar2) then
299: p_rec.information_prompt :=
300: hr_ipt_shd.g_old_rec.information_prompt;
301: End If;
302: If (p_rec.label = hr_api.g_varchar2) then
303: p_rec.label :=
304: hr_ipt_shd.g_old_rec.label;

Line 304: hr_ipt_shd.g_old_rec.label;

300: hr_ipt_shd.g_old_rec.information_prompt;
301: End If;
302: If (p_rec.label = hr_api.g_varchar2) then
303: p_rec.label :=
304: hr_ipt_shd.g_old_rec.label;
305: End If;
306: If (p_rec.prompt_text = hr_api.g_varchar2) then
307: p_rec.prompt_text :=
308: hr_ipt_shd.g_old_rec.prompt_text;

Line 308: hr_ipt_shd.g_old_rec.prompt_text;

304: hr_ipt_shd.g_old_rec.label;
305: End If;
306: If (p_rec.prompt_text = hr_api.g_varchar2) then
307: p_rec.prompt_text :=
308: hr_ipt_shd.g_old_rec.prompt_text;
309: End If;
310: If (p_rec.tooltip_text = hr_api.g_varchar2) then
311: p_rec.tooltip_text :=
312: hr_ipt_shd.g_old_rec.tooltip_text;

Line 312: hr_ipt_shd.g_old_rec.tooltip_text;

308: hr_ipt_shd.g_old_rec.prompt_text;
309: End If;
310: If (p_rec.tooltip_text = hr_api.g_varchar2) then
311: p_rec.tooltip_text :=
312: hr_ipt_shd.g_old_rec.tooltip_text;
313: End If;
314: --
315: End convert_defs;
316: --

Line 321: (p_rec in out nocopy hr_ipt_shd.g_rec_type

317: -- ----------------------------------------------------------------------------
318: -- |---------------------------------< upd >----------------------------------|
319: -- ----------------------------------------------------------------------------
320: Procedure upd
321: (p_rec in out nocopy hr_ipt_shd.g_rec_type
322: ) is
323: --
324: l_proc varchar2(72) := g_package||'upd';
325: --

Line 331: hr_ipt_shd.lck

327: hr_utility.set_location('Entering:'||l_proc, 5);
328: --
329: -- We must lock the row which we need to update.
330: --
331: hr_ipt_shd.lck
332: (p_rec.item_property_id
333: ,p_rec.language
334: );
335: --

Line 376: l_rec hr_ipt_shd.g_rec_type;

372: ,p_prompt_text in varchar2 default hr_api.g_varchar2
373: ,p_tooltip_text in varchar2 default hr_api.g_varchar2
374: ) is
375: --
376: l_rec hr_ipt_shd.g_rec_type;
377: l_proc varchar2(72) := g_package||'upd';
378: --
379: Begin
380: hr_utility.set_location('Entering:'||l_proc, 5);

Line 386: hr_ipt_shd.convert_args

382: -- Call conversion function to turn arguments into the
383: -- l_rec structure.
384: --
385: l_rec :=
386: hr_ipt_shd.convert_args
387: (p_item_property_id
388: ,p_language
389: ,p_source_lang
390: ,p_default_value