DBA Data[Home] [Help]

APPS.HXC_TBB_SHD dependencies on HXC_TBB_SHD

Line 1: package body hxc_tbb_shd as

1: package body hxc_tbb_shd as
2: /* $Header: hxctbbrhi.pkb 120.6.12010000.1 2008/07/28 11:19:46 appldev ship $ */
3: --
4: -- --------------------------------------------------------------------------
5: -- | private global definitions |

Line 8: g_package varchar2(33) := ' hxc_tbb_shd.'; -- global package name

4: -- --------------------------------------------------------------------------
5: -- | private global definitions |
6: -- --------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' hxc_tbb_shd.'; -- global package name
9:
10: g_debug boolean := hr_utility.debug_enabled;
11: --
12: -- --------------------------------------------------------------------------

Line 90: = hxc_tbb_shd.g_old_rec.time_building_block_id and

86:
87: else
88:
89: if (p_time_building_block_id
90: = hxc_tbb_shd.g_old_rec.time_building_block_id and
91: p_object_version_number
92: = hxc_tbb_shd.g_old_rec.object_version_number
93: ) then
94:

Line 92: = hxc_tbb_shd.g_old_rec.object_version_number

88:
89: if (p_time_building_block_id
90: = hxc_tbb_shd.g_old_rec.time_building_block_id and
91: p_object_version_number
92: = hxc_tbb_shd.g_old_rec.object_version_number
93: ) then
94:
95: -- The g_old_rec is current therefore we must
96: -- set the returning function to true

Line 105: fetch c_sel1 into hxc_tbb_shd.g_old_rec;

101:
102: -- select the current row into g_old_rec
103:
104: open c_sel1;
105: fetch c_sel1 into hxc_tbb_shd.g_old_rec;
106:
107: if c_sel1%notfound then
108: close c_sel1;
109:

Line 120: <> hxc_tbb_shd.g_old_rec.object_version_number) Then

116:
117: close c_sel1;
118:
119: if (p_object_version_number
120: <> hxc_tbb_shd.g_old_rec.object_version_number) Then
121: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
122: fnd_message.raise_error;
123: end if;
124:

Line 192: fetch c_sel1 into hxc_tbb_shd.g_old_rec;

188: ,p_argument_value => p_time_building_block_id
189: );
190:
191: open c_sel1;
192: fetch c_sel1 into hxc_tbb_shd.g_old_rec;
193:
194: if c_sel1%notfound then
195: close c_sel1;
196:

Line 206: <> hxc_tbb_shd.g_old_rec.object_version_number) then

202:
203: close c_sel1;
204:
205: if (p_object_version_number
206: <> hxc_tbb_shd.g_old_rec.object_version_number) then
207: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
208: fnd_message.raise_error;
209: end if;
210:

Line 286: end hxc_tbb_shd;

282: return(l_rec);
283:
284: end convert_args;
285:
286: end hxc_tbb_shd;