DBA Data[Home] [Help]

APPS.FF_ARC_BUS dependencies on FF_ARC_SHD

Line 15: (p_rec in ff_arc_shd.g_rec_type) is

11: -- (A.M Added) chk_non_updateable_args
12: -- ----------------------------------------------------------------------------
13: --
14: procedure chk_non_updateable_args
15: (p_rec in ff_arc_shd.g_rec_type) is
16: --
17: l_proc varchar2(72) := g_package || 'chk_non_updateable_args';
18: l_error exception;
19: l_argument varchar2(30);

Line 26: if not ff_arc_shd.api_updating

22: hr_utility.set_location('Entering:'||l_proc,10);
23: --
24: -- Only proceed with validation if a row exists for the current record
25: --
26: if not ff_arc_shd.api_updating
27: (p_archive_item_id => p_rec.archive_item_id,
28: p_object_version_number => p_rec.object_version_number)
29: then
30: hr_utility.set_message(801, 'HR_6153_ALL_PROCEDURE_FAIL');

Line 38: nvl(ff_arc_shd.g_old_rec.user_entity_id, hr_api.g_number) then

34: --
35: hr_utility.set_location(l_proc,30);
36: --
37: if nvl(p_rec.user_entity_id, hr_api.g_number) <>
38: nvl(ff_arc_shd.g_old_rec.user_entity_id, hr_api.g_number) then
39: l_argument := 'user_entity_id';
40: raise l_error;
41: end if;
42: --

Line 44: nvl(ff_arc_shd.g_old_rec.context1, hr_api.g_number) then

40: raise l_error;
41: end if;
42: --
43: if nvl(p_rec.context1, hr_api.g_number) <>
44: nvl(ff_arc_shd.g_old_rec.context1, hr_api.g_number) then
45: l_argument := 'context1';
46: raise l_error;
47: end if;
48: --

Line 50: nvl(ff_arc_shd.g_old_rec.archive_type, hr_api.g_varchar2) then

46: raise l_error;
47: end if;
48: --
49: if nvl(p_rec.archive_type, hr_api.g_varchar2) <>
50: nvl(ff_arc_shd.g_old_rec.archive_type, hr_api.g_varchar2) then
51: l_argument := 'archive_type';
52: raise l_error;
53: end if;
54: --

Line 69: Procedure insert_validate(p_rec in ff_arc_shd.g_rec_type) is

65:
66: -- ----------------------------------------------------------------------------
67: -- |---------------------------< insert_validate >----------------------------|
68: -- ----------------------------------------------------------------------------
69: Procedure insert_validate(p_rec in ff_arc_shd.g_rec_type) is
70: --
71: l_proc varchar2(72) := g_package||'insert_validate';
72: --
73: Begin

Line 79: ff_arc_shd.chk_value(p_rec.value, p_rec.user_entity_id);

75: --
76: -- Call all supporting business operations
77: -- Check the value's data type.
78: --
79: ff_arc_shd.chk_value(p_rec.value, p_rec.user_entity_id);
80: --
81: --
82: hr_utility.set_location(' Leaving:'||l_proc, 10);
83: End insert_validate;

Line 88: Procedure update_validate(p_rec in ff_arc_shd.g_rec_type) is

84: --
85: -- ----------------------------------------------------------------------------
86: -- |---------------------------< update_validate >----------------------------|
87: -- ----------------------------------------------------------------------------
88: Procedure update_validate(p_rec in ff_arc_shd.g_rec_type) is
89: --
90: l_proc varchar2(72) := g_package||'update_validate';
91: --
92: Begin

Line 103: ff_arc_shd.chk_value(p_rec.value, p_rec.user_entity_id);

99: chk_non_updateable_args(p_rec);
100: --
101: -- Check the value's data type.
102: --
103: ff_arc_shd.chk_value(p_rec.value, p_rec.user_entity_id);
104: --
105: hr_utility.set_location(' Leaving:'||l_proc, 10);
106: End update_validate;
107: --