DBA Data[Home] [Help]

APPS.HR_ORI_UPD dependencies on HR_ORI_SHD

Line 55: (p_rec in out nocopy hr_ori_shd.g_rec_type

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

Line 66: hr_ori_shd.g_api_dml := true; -- Set the api dml status

62: --
63: -- Increment the object version
64: p_rec.object_version_number := p_rec.object_version_number + 1;
65: --
66: hr_ori_shd.g_api_dml := true; -- Set the api dml status
67: --
68: -- Update the hr_organization_information Row
69: --
70: update hr_organization_information

Line 119: hr_ori_shd.g_api_dml := false; -- Unset the api dml status

115: ,attribute20 = p_rec.attribute20
116: ,object_version_number = p_rec.object_version_number
117: where org_information_id = p_rec.org_information_id;
118: --
119: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
120: --
121: hr_utility.set_location(' Leaving:'||l_proc, 10);
122: --
123: Exception

Line 126: hr_ori_shd.g_api_dml := false; -- Unset the api dml status

122: --
123: Exception
124: When hr_api.check_integrity_violated Then
125: -- A check constraint has been violated
126: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
127: hr_ori_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When hr_api.parent_integrity_violated Then
130: -- Parent integrity has been violated

Line 127: hr_ori_shd.constraint_error

123: Exception
124: When hr_api.check_integrity_violated Then
125: -- A check constraint has been violated
126: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
127: hr_ori_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When hr_api.parent_integrity_violated Then
130: -- Parent integrity has been violated
131: hr_ori_shd.g_api_dml := false; -- Unset the api dml status

Line 131: hr_ori_shd.g_api_dml := false; -- Unset the api dml status

127: hr_ori_shd.constraint_error
128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When hr_api.parent_integrity_violated Then
130: -- Parent integrity has been violated
131: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
132: hr_ori_shd.constraint_error
133: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
134: When hr_api.unique_integrity_violated Then
135: -- Unique integrity has been violated

Line 132: hr_ori_shd.constraint_error

128: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
129: When hr_api.parent_integrity_violated Then
130: -- Parent integrity has been violated
131: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
132: hr_ori_shd.constraint_error
133: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
134: When hr_api.unique_integrity_violated Then
135: -- Unique integrity has been violated
136: hr_ori_shd.g_api_dml := false; -- Unset the api dml status

Line 136: hr_ori_shd.g_api_dml := false; -- Unset the api dml status

132: hr_ori_shd.constraint_error
133: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
134: When hr_api.unique_integrity_violated Then
135: -- Unique integrity has been violated
136: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
137: hr_ori_shd.constraint_error
138: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
139: When Others Then
140: hr_ori_shd.g_api_dml := false; -- Unset the api dml status

Line 137: hr_ori_shd.constraint_error

133: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
134: When hr_api.unique_integrity_violated Then
135: -- Unique integrity has been violated
136: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
137: hr_ori_shd.constraint_error
138: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
139: When Others Then
140: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
141: Raise;

Line 140: hr_ori_shd.g_api_dml := false; -- Unset the api dml status

136: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
137: hr_ori_shd.constraint_error
138: (p_constraint_name => hr_api.strip_constraint_name(SQLERRM));
139: When Others Then
140: hr_ori_shd.g_api_dml := false; -- Unset the api dml status
141: Raise;
142: End update_dml;
143: --
144: -- ----------------------------------------------------------------------------

Line 177: (p_rec in hr_ori_shd.g_rec_type

173: --
174: -- {End Of Comments}
175: -- ----------------------------------------------------------------------------
176: Procedure pre_update
177: (p_rec in hr_ori_shd.g_rec_type
178: ) is
179: --
180: l_proc varchar2(72) := g_package||'pre_update';
181: --

Line 222: ,p_rec in hr_ori_shd.g_rec_type

218: -- {End Of Comments}
219: -- ----------------------------------------------------------------------------
220: Procedure post_update
221: (p_effective_date in date
222: ,p_rec in hr_ori_shd.g_rec_type
223: ) is
224: --
225: l_proc varchar2(72) := g_package||'post_update';
226: --

Line 324: => hr_ori_shd.g_old_rec.org_information_context

320: => p_rec.attribute20
321: ,p_object_version_number
322: => p_rec.object_version_number
323: ,p_org_information_context_o
324: => hr_ori_shd.g_old_rec.org_information_context
325: ,p_organization_id_o
326: => hr_ori_shd.g_old_rec.organization_id
327: ,p_org_information1_o
328: => hr_ori_shd.g_old_rec.org_information1

Line 326: => hr_ori_shd.g_old_rec.organization_id

322: => p_rec.object_version_number
323: ,p_org_information_context_o
324: => hr_ori_shd.g_old_rec.org_information_context
325: ,p_organization_id_o
326: => hr_ori_shd.g_old_rec.organization_id
327: ,p_org_information1_o
328: => hr_ori_shd.g_old_rec.org_information1
329: ,p_org_information10_o
330: => hr_ori_shd.g_old_rec.org_information10

Line 328: => hr_ori_shd.g_old_rec.org_information1

324: => hr_ori_shd.g_old_rec.org_information_context
325: ,p_organization_id_o
326: => hr_ori_shd.g_old_rec.organization_id
327: ,p_org_information1_o
328: => hr_ori_shd.g_old_rec.org_information1
329: ,p_org_information10_o
330: => hr_ori_shd.g_old_rec.org_information10
331: ,p_org_information11_o
332: => hr_ori_shd.g_old_rec.org_information11

Line 330: => hr_ori_shd.g_old_rec.org_information10

326: => hr_ori_shd.g_old_rec.organization_id
327: ,p_org_information1_o
328: => hr_ori_shd.g_old_rec.org_information1
329: ,p_org_information10_o
330: => hr_ori_shd.g_old_rec.org_information10
331: ,p_org_information11_o
332: => hr_ori_shd.g_old_rec.org_information11
333: ,p_org_information12_o
334: => hr_ori_shd.g_old_rec.org_information12

Line 332: => hr_ori_shd.g_old_rec.org_information11

328: => hr_ori_shd.g_old_rec.org_information1
329: ,p_org_information10_o
330: => hr_ori_shd.g_old_rec.org_information10
331: ,p_org_information11_o
332: => hr_ori_shd.g_old_rec.org_information11
333: ,p_org_information12_o
334: => hr_ori_shd.g_old_rec.org_information12
335: ,p_org_information13_o
336: => hr_ori_shd.g_old_rec.org_information13

Line 334: => hr_ori_shd.g_old_rec.org_information12

330: => hr_ori_shd.g_old_rec.org_information10
331: ,p_org_information11_o
332: => hr_ori_shd.g_old_rec.org_information11
333: ,p_org_information12_o
334: => hr_ori_shd.g_old_rec.org_information12
335: ,p_org_information13_o
336: => hr_ori_shd.g_old_rec.org_information13
337: ,p_org_information14_o
338: => hr_ori_shd.g_old_rec.org_information14

Line 336: => hr_ori_shd.g_old_rec.org_information13

332: => hr_ori_shd.g_old_rec.org_information11
333: ,p_org_information12_o
334: => hr_ori_shd.g_old_rec.org_information12
335: ,p_org_information13_o
336: => hr_ori_shd.g_old_rec.org_information13
337: ,p_org_information14_o
338: => hr_ori_shd.g_old_rec.org_information14
339: ,p_org_information15_o
340: => hr_ori_shd.g_old_rec.org_information15

Line 338: => hr_ori_shd.g_old_rec.org_information14

334: => hr_ori_shd.g_old_rec.org_information12
335: ,p_org_information13_o
336: => hr_ori_shd.g_old_rec.org_information13
337: ,p_org_information14_o
338: => hr_ori_shd.g_old_rec.org_information14
339: ,p_org_information15_o
340: => hr_ori_shd.g_old_rec.org_information15
341: ,p_org_information16_o
342: => hr_ori_shd.g_old_rec.org_information16

Line 340: => hr_ori_shd.g_old_rec.org_information15

336: => hr_ori_shd.g_old_rec.org_information13
337: ,p_org_information14_o
338: => hr_ori_shd.g_old_rec.org_information14
339: ,p_org_information15_o
340: => hr_ori_shd.g_old_rec.org_information15
341: ,p_org_information16_o
342: => hr_ori_shd.g_old_rec.org_information16
343: ,p_org_information17_o
344: => hr_ori_shd.g_old_rec.org_information17

Line 342: => hr_ori_shd.g_old_rec.org_information16

338: => hr_ori_shd.g_old_rec.org_information14
339: ,p_org_information15_o
340: => hr_ori_shd.g_old_rec.org_information15
341: ,p_org_information16_o
342: => hr_ori_shd.g_old_rec.org_information16
343: ,p_org_information17_o
344: => hr_ori_shd.g_old_rec.org_information17
345: ,p_org_information18_o
346: => hr_ori_shd.g_old_rec.org_information18

Line 344: => hr_ori_shd.g_old_rec.org_information17

340: => hr_ori_shd.g_old_rec.org_information15
341: ,p_org_information16_o
342: => hr_ori_shd.g_old_rec.org_information16
343: ,p_org_information17_o
344: => hr_ori_shd.g_old_rec.org_information17
345: ,p_org_information18_o
346: => hr_ori_shd.g_old_rec.org_information18
347: ,p_org_information19_o
348: => hr_ori_shd.g_old_rec.org_information19

Line 346: => hr_ori_shd.g_old_rec.org_information18

342: => hr_ori_shd.g_old_rec.org_information16
343: ,p_org_information17_o
344: => hr_ori_shd.g_old_rec.org_information17
345: ,p_org_information18_o
346: => hr_ori_shd.g_old_rec.org_information18
347: ,p_org_information19_o
348: => hr_ori_shd.g_old_rec.org_information19
349: ,p_org_information2_o
350: => hr_ori_shd.g_old_rec.org_information2

Line 348: => hr_ori_shd.g_old_rec.org_information19

344: => hr_ori_shd.g_old_rec.org_information17
345: ,p_org_information18_o
346: => hr_ori_shd.g_old_rec.org_information18
347: ,p_org_information19_o
348: => hr_ori_shd.g_old_rec.org_information19
349: ,p_org_information2_o
350: => hr_ori_shd.g_old_rec.org_information2
351: ,p_org_information20_o
352: => hr_ori_shd.g_old_rec.org_information20

Line 350: => hr_ori_shd.g_old_rec.org_information2

346: => hr_ori_shd.g_old_rec.org_information18
347: ,p_org_information19_o
348: => hr_ori_shd.g_old_rec.org_information19
349: ,p_org_information2_o
350: => hr_ori_shd.g_old_rec.org_information2
351: ,p_org_information20_o
352: => hr_ori_shd.g_old_rec.org_information20
353: ,p_org_information3_o
354: => hr_ori_shd.g_old_rec.org_information3

Line 352: => hr_ori_shd.g_old_rec.org_information20

348: => hr_ori_shd.g_old_rec.org_information19
349: ,p_org_information2_o
350: => hr_ori_shd.g_old_rec.org_information2
351: ,p_org_information20_o
352: => hr_ori_shd.g_old_rec.org_information20
353: ,p_org_information3_o
354: => hr_ori_shd.g_old_rec.org_information3
355: ,p_org_information4_o
356: => hr_ori_shd.g_old_rec.org_information4

Line 354: => hr_ori_shd.g_old_rec.org_information3

350: => hr_ori_shd.g_old_rec.org_information2
351: ,p_org_information20_o
352: => hr_ori_shd.g_old_rec.org_information20
353: ,p_org_information3_o
354: => hr_ori_shd.g_old_rec.org_information3
355: ,p_org_information4_o
356: => hr_ori_shd.g_old_rec.org_information4
357: ,p_org_information5_o
358: => hr_ori_shd.g_old_rec.org_information5

Line 356: => hr_ori_shd.g_old_rec.org_information4

352: => hr_ori_shd.g_old_rec.org_information20
353: ,p_org_information3_o
354: => hr_ori_shd.g_old_rec.org_information3
355: ,p_org_information4_o
356: => hr_ori_shd.g_old_rec.org_information4
357: ,p_org_information5_o
358: => hr_ori_shd.g_old_rec.org_information5
359: ,p_org_information6_o
360: => hr_ori_shd.g_old_rec.org_information6

Line 358: => hr_ori_shd.g_old_rec.org_information5

354: => hr_ori_shd.g_old_rec.org_information3
355: ,p_org_information4_o
356: => hr_ori_shd.g_old_rec.org_information4
357: ,p_org_information5_o
358: => hr_ori_shd.g_old_rec.org_information5
359: ,p_org_information6_o
360: => hr_ori_shd.g_old_rec.org_information6
361: ,p_org_information7_o
362: => hr_ori_shd.g_old_rec.org_information7

Line 360: => hr_ori_shd.g_old_rec.org_information6

356: => hr_ori_shd.g_old_rec.org_information4
357: ,p_org_information5_o
358: => hr_ori_shd.g_old_rec.org_information5
359: ,p_org_information6_o
360: => hr_ori_shd.g_old_rec.org_information6
361: ,p_org_information7_o
362: => hr_ori_shd.g_old_rec.org_information7
363: ,p_org_information8_o
364: => hr_ori_shd.g_old_rec.org_information8

Line 362: => hr_ori_shd.g_old_rec.org_information7

358: => hr_ori_shd.g_old_rec.org_information5
359: ,p_org_information6_o
360: => hr_ori_shd.g_old_rec.org_information6
361: ,p_org_information7_o
362: => hr_ori_shd.g_old_rec.org_information7
363: ,p_org_information8_o
364: => hr_ori_shd.g_old_rec.org_information8
365: ,p_org_information9_o
366: => hr_ori_shd.g_old_rec.org_information9

Line 364: => hr_ori_shd.g_old_rec.org_information8

360: => hr_ori_shd.g_old_rec.org_information6
361: ,p_org_information7_o
362: => hr_ori_shd.g_old_rec.org_information7
363: ,p_org_information8_o
364: => hr_ori_shd.g_old_rec.org_information8
365: ,p_org_information9_o
366: => hr_ori_shd.g_old_rec.org_information9
367: ,p_request_id_o
368: => hr_ori_shd.g_old_rec.request_id

Line 366: => hr_ori_shd.g_old_rec.org_information9

362: => hr_ori_shd.g_old_rec.org_information7
363: ,p_org_information8_o
364: => hr_ori_shd.g_old_rec.org_information8
365: ,p_org_information9_o
366: => hr_ori_shd.g_old_rec.org_information9
367: ,p_request_id_o
368: => hr_ori_shd.g_old_rec.request_id
369: ,p_program_application_id_o
370: => hr_ori_shd.g_old_rec.program_application_id

Line 368: => hr_ori_shd.g_old_rec.request_id

364: => hr_ori_shd.g_old_rec.org_information8
365: ,p_org_information9_o
366: => hr_ori_shd.g_old_rec.org_information9
367: ,p_request_id_o
368: => hr_ori_shd.g_old_rec.request_id
369: ,p_program_application_id_o
370: => hr_ori_shd.g_old_rec.program_application_id
371: ,p_program_id_o
372: => hr_ori_shd.g_old_rec.program_id

Line 370: => hr_ori_shd.g_old_rec.program_application_id

366: => hr_ori_shd.g_old_rec.org_information9
367: ,p_request_id_o
368: => hr_ori_shd.g_old_rec.request_id
369: ,p_program_application_id_o
370: => hr_ori_shd.g_old_rec.program_application_id
371: ,p_program_id_o
372: => hr_ori_shd.g_old_rec.program_id
373: ,p_program_update_date_o
374: => hr_ori_shd.g_old_rec.program_update_date

Line 372: => hr_ori_shd.g_old_rec.program_id

368: => hr_ori_shd.g_old_rec.request_id
369: ,p_program_application_id_o
370: => hr_ori_shd.g_old_rec.program_application_id
371: ,p_program_id_o
372: => hr_ori_shd.g_old_rec.program_id
373: ,p_program_update_date_o
374: => hr_ori_shd.g_old_rec.program_update_date
375: ,p_attribute_category_o
376: => hr_ori_shd.g_old_rec.attribute_category

Line 374: => hr_ori_shd.g_old_rec.program_update_date

370: => hr_ori_shd.g_old_rec.program_application_id
371: ,p_program_id_o
372: => hr_ori_shd.g_old_rec.program_id
373: ,p_program_update_date_o
374: => hr_ori_shd.g_old_rec.program_update_date
375: ,p_attribute_category_o
376: => hr_ori_shd.g_old_rec.attribute_category
377: ,p_attribute1_o
378: => hr_ori_shd.g_old_rec.attribute1

Line 376: => hr_ori_shd.g_old_rec.attribute_category

372: => hr_ori_shd.g_old_rec.program_id
373: ,p_program_update_date_o
374: => hr_ori_shd.g_old_rec.program_update_date
375: ,p_attribute_category_o
376: => hr_ori_shd.g_old_rec.attribute_category
377: ,p_attribute1_o
378: => hr_ori_shd.g_old_rec.attribute1
379: ,p_attribute2_o
380: => hr_ori_shd.g_old_rec.attribute2

Line 378: => hr_ori_shd.g_old_rec.attribute1

374: => hr_ori_shd.g_old_rec.program_update_date
375: ,p_attribute_category_o
376: => hr_ori_shd.g_old_rec.attribute_category
377: ,p_attribute1_o
378: => hr_ori_shd.g_old_rec.attribute1
379: ,p_attribute2_o
380: => hr_ori_shd.g_old_rec.attribute2
381: ,p_attribute3_o
382: => hr_ori_shd.g_old_rec.attribute3

Line 380: => hr_ori_shd.g_old_rec.attribute2

376: => hr_ori_shd.g_old_rec.attribute_category
377: ,p_attribute1_o
378: => hr_ori_shd.g_old_rec.attribute1
379: ,p_attribute2_o
380: => hr_ori_shd.g_old_rec.attribute2
381: ,p_attribute3_o
382: => hr_ori_shd.g_old_rec.attribute3
383: ,p_attribute4_o
384: => hr_ori_shd.g_old_rec.attribute4

Line 382: => hr_ori_shd.g_old_rec.attribute3

378: => hr_ori_shd.g_old_rec.attribute1
379: ,p_attribute2_o
380: => hr_ori_shd.g_old_rec.attribute2
381: ,p_attribute3_o
382: => hr_ori_shd.g_old_rec.attribute3
383: ,p_attribute4_o
384: => hr_ori_shd.g_old_rec.attribute4
385: ,p_attribute5_o
386: => hr_ori_shd.g_old_rec.attribute5

Line 384: => hr_ori_shd.g_old_rec.attribute4

380: => hr_ori_shd.g_old_rec.attribute2
381: ,p_attribute3_o
382: => hr_ori_shd.g_old_rec.attribute3
383: ,p_attribute4_o
384: => hr_ori_shd.g_old_rec.attribute4
385: ,p_attribute5_o
386: => hr_ori_shd.g_old_rec.attribute5
387: ,p_attribute6_o
388: => hr_ori_shd.g_old_rec.attribute6

Line 386: => hr_ori_shd.g_old_rec.attribute5

382: => hr_ori_shd.g_old_rec.attribute3
383: ,p_attribute4_o
384: => hr_ori_shd.g_old_rec.attribute4
385: ,p_attribute5_o
386: => hr_ori_shd.g_old_rec.attribute5
387: ,p_attribute6_o
388: => hr_ori_shd.g_old_rec.attribute6
389: ,p_attribute7_o
390: => hr_ori_shd.g_old_rec.attribute7

Line 388: => hr_ori_shd.g_old_rec.attribute6

384: => hr_ori_shd.g_old_rec.attribute4
385: ,p_attribute5_o
386: => hr_ori_shd.g_old_rec.attribute5
387: ,p_attribute6_o
388: => hr_ori_shd.g_old_rec.attribute6
389: ,p_attribute7_o
390: => hr_ori_shd.g_old_rec.attribute7
391: ,p_attribute8_o
392: => hr_ori_shd.g_old_rec.attribute8

Line 390: => hr_ori_shd.g_old_rec.attribute7

386: => hr_ori_shd.g_old_rec.attribute5
387: ,p_attribute6_o
388: => hr_ori_shd.g_old_rec.attribute6
389: ,p_attribute7_o
390: => hr_ori_shd.g_old_rec.attribute7
391: ,p_attribute8_o
392: => hr_ori_shd.g_old_rec.attribute8
393: ,p_attribute9_o
394: => hr_ori_shd.g_old_rec.attribute9

Line 392: => hr_ori_shd.g_old_rec.attribute8

388: => hr_ori_shd.g_old_rec.attribute6
389: ,p_attribute7_o
390: => hr_ori_shd.g_old_rec.attribute7
391: ,p_attribute8_o
392: => hr_ori_shd.g_old_rec.attribute8
393: ,p_attribute9_o
394: => hr_ori_shd.g_old_rec.attribute9
395: ,p_attribute10_o
396: => hr_ori_shd.g_old_rec.attribute10

Line 394: => hr_ori_shd.g_old_rec.attribute9

390: => hr_ori_shd.g_old_rec.attribute7
391: ,p_attribute8_o
392: => hr_ori_shd.g_old_rec.attribute8
393: ,p_attribute9_o
394: => hr_ori_shd.g_old_rec.attribute9
395: ,p_attribute10_o
396: => hr_ori_shd.g_old_rec.attribute10
397: ,p_attribute11_o
398: => hr_ori_shd.g_old_rec.attribute11

Line 396: => hr_ori_shd.g_old_rec.attribute10

392: => hr_ori_shd.g_old_rec.attribute8
393: ,p_attribute9_o
394: => hr_ori_shd.g_old_rec.attribute9
395: ,p_attribute10_o
396: => hr_ori_shd.g_old_rec.attribute10
397: ,p_attribute11_o
398: => hr_ori_shd.g_old_rec.attribute11
399: ,p_attribute12_o
400: => hr_ori_shd.g_old_rec.attribute12

Line 398: => hr_ori_shd.g_old_rec.attribute11

394: => hr_ori_shd.g_old_rec.attribute9
395: ,p_attribute10_o
396: => hr_ori_shd.g_old_rec.attribute10
397: ,p_attribute11_o
398: => hr_ori_shd.g_old_rec.attribute11
399: ,p_attribute12_o
400: => hr_ori_shd.g_old_rec.attribute12
401: ,p_attribute13_o
402: => hr_ori_shd.g_old_rec.attribute13

Line 400: => hr_ori_shd.g_old_rec.attribute12

396: => hr_ori_shd.g_old_rec.attribute10
397: ,p_attribute11_o
398: => hr_ori_shd.g_old_rec.attribute11
399: ,p_attribute12_o
400: => hr_ori_shd.g_old_rec.attribute12
401: ,p_attribute13_o
402: => hr_ori_shd.g_old_rec.attribute13
403: ,p_attribute14_o
404: => hr_ori_shd.g_old_rec.attribute14

Line 402: => hr_ori_shd.g_old_rec.attribute13

398: => hr_ori_shd.g_old_rec.attribute11
399: ,p_attribute12_o
400: => hr_ori_shd.g_old_rec.attribute12
401: ,p_attribute13_o
402: => hr_ori_shd.g_old_rec.attribute13
403: ,p_attribute14_o
404: => hr_ori_shd.g_old_rec.attribute14
405: ,p_attribute15_o
406: => hr_ori_shd.g_old_rec.attribute15

Line 404: => hr_ori_shd.g_old_rec.attribute14

400: => hr_ori_shd.g_old_rec.attribute12
401: ,p_attribute13_o
402: => hr_ori_shd.g_old_rec.attribute13
403: ,p_attribute14_o
404: => hr_ori_shd.g_old_rec.attribute14
405: ,p_attribute15_o
406: => hr_ori_shd.g_old_rec.attribute15
407: ,p_attribute16_o
408: => hr_ori_shd.g_old_rec.attribute16

Line 406: => hr_ori_shd.g_old_rec.attribute15

402: => hr_ori_shd.g_old_rec.attribute13
403: ,p_attribute14_o
404: => hr_ori_shd.g_old_rec.attribute14
405: ,p_attribute15_o
406: => hr_ori_shd.g_old_rec.attribute15
407: ,p_attribute16_o
408: => hr_ori_shd.g_old_rec.attribute16
409: ,p_attribute17_o
410: => hr_ori_shd.g_old_rec.attribute17

Line 408: => hr_ori_shd.g_old_rec.attribute16

404: => hr_ori_shd.g_old_rec.attribute14
405: ,p_attribute15_o
406: => hr_ori_shd.g_old_rec.attribute15
407: ,p_attribute16_o
408: => hr_ori_shd.g_old_rec.attribute16
409: ,p_attribute17_o
410: => hr_ori_shd.g_old_rec.attribute17
411: ,p_attribute18_o
412: => hr_ori_shd.g_old_rec.attribute18

Line 410: => hr_ori_shd.g_old_rec.attribute17

406: => hr_ori_shd.g_old_rec.attribute15
407: ,p_attribute16_o
408: => hr_ori_shd.g_old_rec.attribute16
409: ,p_attribute17_o
410: => hr_ori_shd.g_old_rec.attribute17
411: ,p_attribute18_o
412: => hr_ori_shd.g_old_rec.attribute18
413: ,p_attribute19_o
414: => hr_ori_shd.g_old_rec.attribute19

Line 412: => hr_ori_shd.g_old_rec.attribute18

408: => hr_ori_shd.g_old_rec.attribute16
409: ,p_attribute17_o
410: => hr_ori_shd.g_old_rec.attribute17
411: ,p_attribute18_o
412: => hr_ori_shd.g_old_rec.attribute18
413: ,p_attribute19_o
414: => hr_ori_shd.g_old_rec.attribute19
415: ,p_attribute20_o
416: => hr_ori_shd.g_old_rec.attribute20

Line 414: => hr_ori_shd.g_old_rec.attribute19

410: => hr_ori_shd.g_old_rec.attribute17
411: ,p_attribute18_o
412: => hr_ori_shd.g_old_rec.attribute18
413: ,p_attribute19_o
414: => hr_ori_shd.g_old_rec.attribute19
415: ,p_attribute20_o
416: => hr_ori_shd.g_old_rec.attribute20
417: ,p_object_version_number_o
418: => hr_ori_shd.g_old_rec.object_version_number

Line 416: => hr_ori_shd.g_old_rec.attribute20

412: => hr_ori_shd.g_old_rec.attribute18
413: ,p_attribute19_o
414: => hr_ori_shd.g_old_rec.attribute19
415: ,p_attribute20_o
416: => hr_ori_shd.g_old_rec.attribute20
417: ,p_object_version_number_o
418: => hr_ori_shd.g_old_rec.object_version_number
419: );
420: --

Line 418: => hr_ori_shd.g_old_rec.object_version_number

414: => hr_ori_shd.g_old_rec.attribute19
415: ,p_attribute20_o
416: => hr_ori_shd.g_old_rec.attribute20
417: ,p_object_version_number_o
418: => hr_ori_shd.g_old_rec.object_version_number
419: );
420: --
421: exception
422: --

Line 478: (p_rec in out nocopy hr_ori_shd.g_rec_type

474: --
475: -- {End Of Comments}
476: -- ----------------------------------------------------------------------------
477: Procedure convert_defs
478: (p_rec in out nocopy hr_ori_shd.g_rec_type
479: ) is
480: --
481: Begin
482: --

Line 490: hr_ori_shd.g_old_rec.org_information_context;

486: -- is being used then we must set to the 'current' argument value.
487: --
488: If (p_rec.org_information_context = hr_api.g_varchar2) then
489: p_rec.org_information_context :=
490: hr_ori_shd.g_old_rec.org_information_context;
491: End If;
492: If (p_rec.organization_id = hr_api.g_number) then
493: p_rec.organization_id :=
494: hr_ori_shd.g_old_rec.organization_id;

Line 494: hr_ori_shd.g_old_rec.organization_id;

490: hr_ori_shd.g_old_rec.org_information_context;
491: End If;
492: If (p_rec.organization_id = hr_api.g_number) then
493: p_rec.organization_id :=
494: hr_ori_shd.g_old_rec.organization_id;
495: End If;
496: If (p_rec.org_information1 = hr_api.g_varchar2) then
497: p_rec.org_information1 :=
498: hr_ori_shd.g_old_rec.org_information1;

Line 498: hr_ori_shd.g_old_rec.org_information1;

494: hr_ori_shd.g_old_rec.organization_id;
495: End If;
496: If (p_rec.org_information1 = hr_api.g_varchar2) then
497: p_rec.org_information1 :=
498: hr_ori_shd.g_old_rec.org_information1;
499: End If;
500: If (p_rec.org_information10 = hr_api.g_varchar2) then
501: p_rec.org_information10 :=
502: hr_ori_shd.g_old_rec.org_information10;

Line 502: hr_ori_shd.g_old_rec.org_information10;

498: hr_ori_shd.g_old_rec.org_information1;
499: End If;
500: If (p_rec.org_information10 = hr_api.g_varchar2) then
501: p_rec.org_information10 :=
502: hr_ori_shd.g_old_rec.org_information10;
503: End If;
504: If (p_rec.org_information11 = hr_api.g_varchar2) then
505: p_rec.org_information11 :=
506: hr_ori_shd.g_old_rec.org_information11;

Line 506: hr_ori_shd.g_old_rec.org_information11;

502: hr_ori_shd.g_old_rec.org_information10;
503: End If;
504: If (p_rec.org_information11 = hr_api.g_varchar2) then
505: p_rec.org_information11 :=
506: hr_ori_shd.g_old_rec.org_information11;
507: End If;
508: If (p_rec.org_information12 = hr_api.g_varchar2) then
509: p_rec.org_information12 :=
510: hr_ori_shd.g_old_rec.org_information12;

Line 510: hr_ori_shd.g_old_rec.org_information12;

506: hr_ori_shd.g_old_rec.org_information11;
507: End If;
508: If (p_rec.org_information12 = hr_api.g_varchar2) then
509: p_rec.org_information12 :=
510: hr_ori_shd.g_old_rec.org_information12;
511: End If;
512: If (p_rec.org_information13 = hr_api.g_varchar2) then
513: p_rec.org_information13 :=
514: hr_ori_shd.g_old_rec.org_information13;

Line 514: hr_ori_shd.g_old_rec.org_information13;

510: hr_ori_shd.g_old_rec.org_information12;
511: End If;
512: If (p_rec.org_information13 = hr_api.g_varchar2) then
513: p_rec.org_information13 :=
514: hr_ori_shd.g_old_rec.org_information13;
515: End If;
516: If (p_rec.org_information14 = hr_api.g_varchar2) then
517: p_rec.org_information14 :=
518: hr_ori_shd.g_old_rec.org_information14;

Line 518: hr_ori_shd.g_old_rec.org_information14;

514: hr_ori_shd.g_old_rec.org_information13;
515: End If;
516: If (p_rec.org_information14 = hr_api.g_varchar2) then
517: p_rec.org_information14 :=
518: hr_ori_shd.g_old_rec.org_information14;
519: End If;
520: If (p_rec.org_information15 = hr_api.g_varchar2) then
521: p_rec.org_information15 :=
522: hr_ori_shd.g_old_rec.org_information15;

Line 522: hr_ori_shd.g_old_rec.org_information15;

518: hr_ori_shd.g_old_rec.org_information14;
519: End If;
520: If (p_rec.org_information15 = hr_api.g_varchar2) then
521: p_rec.org_information15 :=
522: hr_ori_shd.g_old_rec.org_information15;
523: End If;
524: If (p_rec.org_information16 = hr_api.g_varchar2) then
525: p_rec.org_information16 :=
526: hr_ori_shd.g_old_rec.org_information16;

Line 526: hr_ori_shd.g_old_rec.org_information16;

522: hr_ori_shd.g_old_rec.org_information15;
523: End If;
524: If (p_rec.org_information16 = hr_api.g_varchar2) then
525: p_rec.org_information16 :=
526: hr_ori_shd.g_old_rec.org_information16;
527: End If;
528: If (p_rec.org_information17 = hr_api.g_varchar2) then
529: p_rec.org_information17 :=
530: hr_ori_shd.g_old_rec.org_information17;

Line 530: hr_ori_shd.g_old_rec.org_information17;

526: hr_ori_shd.g_old_rec.org_information16;
527: End If;
528: If (p_rec.org_information17 = hr_api.g_varchar2) then
529: p_rec.org_information17 :=
530: hr_ori_shd.g_old_rec.org_information17;
531: End If;
532: If (p_rec.org_information18 = hr_api.g_varchar2) then
533: p_rec.org_information18 :=
534: hr_ori_shd.g_old_rec.org_information18;

Line 534: hr_ori_shd.g_old_rec.org_information18;

530: hr_ori_shd.g_old_rec.org_information17;
531: End If;
532: If (p_rec.org_information18 = hr_api.g_varchar2) then
533: p_rec.org_information18 :=
534: hr_ori_shd.g_old_rec.org_information18;
535: End If;
536: If (p_rec.org_information19 = hr_api.g_varchar2) then
537: p_rec.org_information19 :=
538: hr_ori_shd.g_old_rec.org_information19;

Line 538: hr_ori_shd.g_old_rec.org_information19;

534: hr_ori_shd.g_old_rec.org_information18;
535: End If;
536: If (p_rec.org_information19 = hr_api.g_varchar2) then
537: p_rec.org_information19 :=
538: hr_ori_shd.g_old_rec.org_information19;
539: End If;
540: If (p_rec.org_information2 = hr_api.g_varchar2) then
541: p_rec.org_information2 :=
542: hr_ori_shd.g_old_rec.org_information2;

Line 542: hr_ori_shd.g_old_rec.org_information2;

538: hr_ori_shd.g_old_rec.org_information19;
539: End If;
540: If (p_rec.org_information2 = hr_api.g_varchar2) then
541: p_rec.org_information2 :=
542: hr_ori_shd.g_old_rec.org_information2;
543: End If;
544: If (p_rec.org_information20 = hr_api.g_varchar2) then
545: p_rec.org_information20 :=
546: hr_ori_shd.g_old_rec.org_information20;

Line 546: hr_ori_shd.g_old_rec.org_information20;

542: hr_ori_shd.g_old_rec.org_information2;
543: End If;
544: If (p_rec.org_information20 = hr_api.g_varchar2) then
545: p_rec.org_information20 :=
546: hr_ori_shd.g_old_rec.org_information20;
547: End If;
548: If (p_rec.org_information3 = hr_api.g_varchar2) then
549: p_rec.org_information3 :=
550: hr_ori_shd.g_old_rec.org_information3;

Line 550: hr_ori_shd.g_old_rec.org_information3;

546: hr_ori_shd.g_old_rec.org_information20;
547: End If;
548: If (p_rec.org_information3 = hr_api.g_varchar2) then
549: p_rec.org_information3 :=
550: hr_ori_shd.g_old_rec.org_information3;
551: End If;
552: If (p_rec.org_information4 = hr_api.g_varchar2) then
553: p_rec.org_information4 :=
554: hr_ori_shd.g_old_rec.org_information4;

Line 554: hr_ori_shd.g_old_rec.org_information4;

550: hr_ori_shd.g_old_rec.org_information3;
551: End If;
552: If (p_rec.org_information4 = hr_api.g_varchar2) then
553: p_rec.org_information4 :=
554: hr_ori_shd.g_old_rec.org_information4;
555: End If;
556: If (p_rec.org_information5 = hr_api.g_varchar2) then
557: p_rec.org_information5 :=
558: hr_ori_shd.g_old_rec.org_information5;

Line 558: hr_ori_shd.g_old_rec.org_information5;

554: hr_ori_shd.g_old_rec.org_information4;
555: End If;
556: If (p_rec.org_information5 = hr_api.g_varchar2) then
557: p_rec.org_information5 :=
558: hr_ori_shd.g_old_rec.org_information5;
559: End If;
560: If (p_rec.org_information6 = hr_api.g_varchar2) then
561: p_rec.org_information6 :=
562: hr_ori_shd.g_old_rec.org_information6;

Line 562: hr_ori_shd.g_old_rec.org_information6;

558: hr_ori_shd.g_old_rec.org_information5;
559: End If;
560: If (p_rec.org_information6 = hr_api.g_varchar2) then
561: p_rec.org_information6 :=
562: hr_ori_shd.g_old_rec.org_information6;
563: End If;
564: If (p_rec.org_information7 = hr_api.g_varchar2) then
565: p_rec.org_information7 :=
566: hr_ori_shd.g_old_rec.org_information7;

Line 566: hr_ori_shd.g_old_rec.org_information7;

562: hr_ori_shd.g_old_rec.org_information6;
563: End If;
564: If (p_rec.org_information7 = hr_api.g_varchar2) then
565: p_rec.org_information7 :=
566: hr_ori_shd.g_old_rec.org_information7;
567: End If;
568: If (p_rec.org_information8 = hr_api.g_varchar2) then
569: p_rec.org_information8 :=
570: hr_ori_shd.g_old_rec.org_information8;

Line 570: hr_ori_shd.g_old_rec.org_information8;

566: hr_ori_shd.g_old_rec.org_information7;
567: End If;
568: If (p_rec.org_information8 = hr_api.g_varchar2) then
569: p_rec.org_information8 :=
570: hr_ori_shd.g_old_rec.org_information8;
571: End If;
572: If (p_rec.org_information9 = hr_api.g_varchar2) then
573: p_rec.org_information9 :=
574: hr_ori_shd.g_old_rec.org_information9;

Line 574: hr_ori_shd.g_old_rec.org_information9;

570: hr_ori_shd.g_old_rec.org_information8;
571: End If;
572: If (p_rec.org_information9 = hr_api.g_varchar2) then
573: p_rec.org_information9 :=
574: hr_ori_shd.g_old_rec.org_information9;
575: End If;
576: If (p_rec.request_id = hr_api.g_number) then
577: p_rec.request_id :=
578: hr_ori_shd.g_old_rec.request_id;

Line 578: hr_ori_shd.g_old_rec.request_id;

574: hr_ori_shd.g_old_rec.org_information9;
575: End If;
576: If (p_rec.request_id = hr_api.g_number) then
577: p_rec.request_id :=
578: hr_ori_shd.g_old_rec.request_id;
579: End If;
580: If (p_rec.program_application_id = hr_api.g_number) then
581: p_rec.program_application_id :=
582: hr_ori_shd.g_old_rec.program_application_id;

Line 582: hr_ori_shd.g_old_rec.program_application_id;

578: hr_ori_shd.g_old_rec.request_id;
579: End If;
580: If (p_rec.program_application_id = hr_api.g_number) then
581: p_rec.program_application_id :=
582: hr_ori_shd.g_old_rec.program_application_id;
583: End If;
584: If (p_rec.program_id = hr_api.g_number) then
585: p_rec.program_id :=
586: hr_ori_shd.g_old_rec.program_id;

Line 586: hr_ori_shd.g_old_rec.program_id;

582: hr_ori_shd.g_old_rec.program_application_id;
583: End If;
584: If (p_rec.program_id = hr_api.g_number) then
585: p_rec.program_id :=
586: hr_ori_shd.g_old_rec.program_id;
587: End If;
588: If (p_rec.program_update_date = hr_api.g_date) then
589: p_rec.program_update_date :=
590: hr_ori_shd.g_old_rec.program_update_date;

Line 590: hr_ori_shd.g_old_rec.program_update_date;

586: hr_ori_shd.g_old_rec.program_id;
587: End If;
588: If (p_rec.program_update_date = hr_api.g_date) then
589: p_rec.program_update_date :=
590: hr_ori_shd.g_old_rec.program_update_date;
591: End If;
592: If (p_rec.attribute_category = hr_api.g_varchar2) then
593: p_rec.attribute_category :=
594: hr_ori_shd.g_old_rec.attribute_category;

Line 594: hr_ori_shd.g_old_rec.attribute_category;

590: hr_ori_shd.g_old_rec.program_update_date;
591: End If;
592: If (p_rec.attribute_category = hr_api.g_varchar2) then
593: p_rec.attribute_category :=
594: hr_ori_shd.g_old_rec.attribute_category;
595: End If;
596: If (p_rec.attribute1 = hr_api.g_varchar2) then
597: p_rec.attribute1 :=
598: hr_ori_shd.g_old_rec.attribute1;

Line 598: hr_ori_shd.g_old_rec.attribute1;

594: hr_ori_shd.g_old_rec.attribute_category;
595: End If;
596: If (p_rec.attribute1 = hr_api.g_varchar2) then
597: p_rec.attribute1 :=
598: hr_ori_shd.g_old_rec.attribute1;
599: End If;
600: If (p_rec.attribute2 = hr_api.g_varchar2) then
601: p_rec.attribute2 :=
602: hr_ori_shd.g_old_rec.attribute2;

Line 602: hr_ori_shd.g_old_rec.attribute2;

598: hr_ori_shd.g_old_rec.attribute1;
599: End If;
600: If (p_rec.attribute2 = hr_api.g_varchar2) then
601: p_rec.attribute2 :=
602: hr_ori_shd.g_old_rec.attribute2;
603: End If;
604: If (p_rec.attribute3 = hr_api.g_varchar2) then
605: p_rec.attribute3 :=
606: hr_ori_shd.g_old_rec.attribute3;

Line 606: hr_ori_shd.g_old_rec.attribute3;

602: hr_ori_shd.g_old_rec.attribute2;
603: End If;
604: If (p_rec.attribute3 = hr_api.g_varchar2) then
605: p_rec.attribute3 :=
606: hr_ori_shd.g_old_rec.attribute3;
607: End If;
608: If (p_rec.attribute4 = hr_api.g_varchar2) then
609: p_rec.attribute4 :=
610: hr_ori_shd.g_old_rec.attribute4;

Line 610: hr_ori_shd.g_old_rec.attribute4;

606: hr_ori_shd.g_old_rec.attribute3;
607: End If;
608: If (p_rec.attribute4 = hr_api.g_varchar2) then
609: p_rec.attribute4 :=
610: hr_ori_shd.g_old_rec.attribute4;
611: End If;
612: If (p_rec.attribute5 = hr_api.g_varchar2) then
613: p_rec.attribute5 :=
614: hr_ori_shd.g_old_rec.attribute5;

Line 614: hr_ori_shd.g_old_rec.attribute5;

610: hr_ori_shd.g_old_rec.attribute4;
611: End If;
612: If (p_rec.attribute5 = hr_api.g_varchar2) then
613: p_rec.attribute5 :=
614: hr_ori_shd.g_old_rec.attribute5;
615: End If;
616: If (p_rec.attribute6 = hr_api.g_varchar2) then
617: p_rec.attribute6 :=
618: hr_ori_shd.g_old_rec.attribute6;

Line 618: hr_ori_shd.g_old_rec.attribute6;

614: hr_ori_shd.g_old_rec.attribute5;
615: End If;
616: If (p_rec.attribute6 = hr_api.g_varchar2) then
617: p_rec.attribute6 :=
618: hr_ori_shd.g_old_rec.attribute6;
619: End If;
620: If (p_rec.attribute7 = hr_api.g_varchar2) then
621: p_rec.attribute7 :=
622: hr_ori_shd.g_old_rec.attribute7;

Line 622: hr_ori_shd.g_old_rec.attribute7;

618: hr_ori_shd.g_old_rec.attribute6;
619: End If;
620: If (p_rec.attribute7 = hr_api.g_varchar2) then
621: p_rec.attribute7 :=
622: hr_ori_shd.g_old_rec.attribute7;
623: End If;
624: If (p_rec.attribute8 = hr_api.g_varchar2) then
625: p_rec.attribute8 :=
626: hr_ori_shd.g_old_rec.attribute8;

Line 626: hr_ori_shd.g_old_rec.attribute8;

622: hr_ori_shd.g_old_rec.attribute7;
623: End If;
624: If (p_rec.attribute8 = hr_api.g_varchar2) then
625: p_rec.attribute8 :=
626: hr_ori_shd.g_old_rec.attribute8;
627: End If;
628: If (p_rec.attribute9 = hr_api.g_varchar2) then
629: p_rec.attribute9 :=
630: hr_ori_shd.g_old_rec.attribute9;

Line 630: hr_ori_shd.g_old_rec.attribute9;

626: hr_ori_shd.g_old_rec.attribute8;
627: End If;
628: If (p_rec.attribute9 = hr_api.g_varchar2) then
629: p_rec.attribute9 :=
630: hr_ori_shd.g_old_rec.attribute9;
631: End If;
632: If (p_rec.attribute10 = hr_api.g_varchar2) then
633: p_rec.attribute10 :=
634: hr_ori_shd.g_old_rec.attribute10;

Line 634: hr_ori_shd.g_old_rec.attribute10;

630: hr_ori_shd.g_old_rec.attribute9;
631: End If;
632: If (p_rec.attribute10 = hr_api.g_varchar2) then
633: p_rec.attribute10 :=
634: hr_ori_shd.g_old_rec.attribute10;
635: End If;
636: If (p_rec.attribute11 = hr_api.g_varchar2) then
637: p_rec.attribute11 :=
638: hr_ori_shd.g_old_rec.attribute11;

Line 638: hr_ori_shd.g_old_rec.attribute11;

634: hr_ori_shd.g_old_rec.attribute10;
635: End If;
636: If (p_rec.attribute11 = hr_api.g_varchar2) then
637: p_rec.attribute11 :=
638: hr_ori_shd.g_old_rec.attribute11;
639: End If;
640: If (p_rec.attribute12 = hr_api.g_varchar2) then
641: p_rec.attribute12 :=
642: hr_ori_shd.g_old_rec.attribute12;

Line 642: hr_ori_shd.g_old_rec.attribute12;

638: hr_ori_shd.g_old_rec.attribute11;
639: End If;
640: If (p_rec.attribute12 = hr_api.g_varchar2) then
641: p_rec.attribute12 :=
642: hr_ori_shd.g_old_rec.attribute12;
643: End If;
644: If (p_rec.attribute13 = hr_api.g_varchar2) then
645: p_rec.attribute13 :=
646: hr_ori_shd.g_old_rec.attribute13;

Line 646: hr_ori_shd.g_old_rec.attribute13;

642: hr_ori_shd.g_old_rec.attribute12;
643: End If;
644: If (p_rec.attribute13 = hr_api.g_varchar2) then
645: p_rec.attribute13 :=
646: hr_ori_shd.g_old_rec.attribute13;
647: End If;
648: If (p_rec.attribute14 = hr_api.g_varchar2) then
649: p_rec.attribute14 :=
650: hr_ori_shd.g_old_rec.attribute14;

Line 650: hr_ori_shd.g_old_rec.attribute14;

646: hr_ori_shd.g_old_rec.attribute13;
647: End If;
648: If (p_rec.attribute14 = hr_api.g_varchar2) then
649: p_rec.attribute14 :=
650: hr_ori_shd.g_old_rec.attribute14;
651: End If;
652: If (p_rec.attribute15 = hr_api.g_varchar2) then
653: p_rec.attribute15 :=
654: hr_ori_shd.g_old_rec.attribute15;

Line 654: hr_ori_shd.g_old_rec.attribute15;

650: hr_ori_shd.g_old_rec.attribute14;
651: End If;
652: If (p_rec.attribute15 = hr_api.g_varchar2) then
653: p_rec.attribute15 :=
654: hr_ori_shd.g_old_rec.attribute15;
655: End If;
656: If (p_rec.attribute16 = hr_api.g_varchar2) then
657: p_rec.attribute16 :=
658: hr_ori_shd.g_old_rec.attribute16;

Line 658: hr_ori_shd.g_old_rec.attribute16;

654: hr_ori_shd.g_old_rec.attribute15;
655: End If;
656: If (p_rec.attribute16 = hr_api.g_varchar2) then
657: p_rec.attribute16 :=
658: hr_ori_shd.g_old_rec.attribute16;
659: End If;
660: If (p_rec.attribute17 = hr_api.g_varchar2) then
661: p_rec.attribute17 :=
662: hr_ori_shd.g_old_rec.attribute17;

Line 662: hr_ori_shd.g_old_rec.attribute17;

658: hr_ori_shd.g_old_rec.attribute16;
659: End If;
660: If (p_rec.attribute17 = hr_api.g_varchar2) then
661: p_rec.attribute17 :=
662: hr_ori_shd.g_old_rec.attribute17;
663: End If;
664: If (p_rec.attribute18 = hr_api.g_varchar2) then
665: p_rec.attribute18 :=
666: hr_ori_shd.g_old_rec.attribute18;

Line 666: hr_ori_shd.g_old_rec.attribute18;

662: hr_ori_shd.g_old_rec.attribute17;
663: End If;
664: If (p_rec.attribute18 = hr_api.g_varchar2) then
665: p_rec.attribute18 :=
666: hr_ori_shd.g_old_rec.attribute18;
667: End If;
668: If (p_rec.attribute19 = hr_api.g_varchar2) then
669: p_rec.attribute19 :=
670: hr_ori_shd.g_old_rec.attribute19;

Line 670: hr_ori_shd.g_old_rec.attribute19;

666: hr_ori_shd.g_old_rec.attribute18;
667: End If;
668: If (p_rec.attribute19 = hr_api.g_varchar2) then
669: p_rec.attribute19 :=
670: hr_ori_shd.g_old_rec.attribute19;
671: End If;
672: If (p_rec.attribute20 = hr_api.g_varchar2) then
673: p_rec.attribute20 :=
674: hr_ori_shd.g_old_rec.attribute20;

Line 674: hr_ori_shd.g_old_rec.attribute20;

670: hr_ori_shd.g_old_rec.attribute19;
671: End If;
672: If (p_rec.attribute20 = hr_api.g_varchar2) then
673: p_rec.attribute20 :=
674: hr_ori_shd.g_old_rec.attribute20;
675: End If;
676: --
677: End convert_defs;
678: --

Line 684: ,p_rec in out nocopy hr_ori_shd.g_rec_type

680: -- |---------------------------------< upd >----------------------------------|
681: -- ----------------------------------------------------------------------------
682: Procedure upd
683: (p_effective_date in date
684: ,p_rec in out nocopy hr_ori_shd.g_rec_type
685: ) is
686: --
687: l_proc varchar2(72) := g_package||'upd';
688: --

Line 694: hr_ori_shd.lck

690: hr_utility.set_location('Entering:'||l_proc, 5);
691: --
692: -- We must lock the row which we need to update.
693: --
694: hr_ori_shd.lck
695: (p_rec.org_information_id
696: ,p_rec.object_version_number
697: );
698: --

Line 779: l_rec hr_ori_shd.g_rec_type;

775: ,p_attribute19 in varchar2 -- r115.21 -- default hr_api.g_varchar2 -- r115.21
776: ,p_attribute20 in varchar2 -- r115.21 -- default hr_api.g_varchar2 -- r115.21
777: ) is
778: --
779: l_rec hr_ori_shd.g_rec_type;
780: l_proc varchar2(72) := g_package||'upd';
781: --
782: Begin
783: hr_utility.set_location('Entering:'||l_proc, 5);

Line 789: hr_ori_shd.convert_args

785: -- Call conversion function to turn arguments into the
786: -- l_rec structure.
787: --
788: l_rec :=
789: hr_ori_shd.convert_args
790: (p_org_information_id
791: ,p_org_information_context
792: ,p_organization_id
793: ,p_org_information1