DBA Data[Home] [Help]

APPS.HR_TCN_SHD dependencies on HR_TCN_SHD

Line 1: Package Body hr_tcn_shd as

1: Package Body hr_tcn_shd as
2: /* $Header: hrtcnrhi.pkb 120.1 2011/04/28 12:06:24 sidsaxen ship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

Line 8: g_package varchar2(33) := ' hr_tcn_shd.'; -- Global package name

4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |
6: -- ----------------------------------------------------------------------------
7: --
8: g_package varchar2(33) := ' hr_tcn_shd.'; -- Global package name
9: --
10: -- ----------------------------------------------------------------------------
11: -- |---------------------------< constraint_error >---------------------------|
12: -- ----------------------------------------------------------------------------

Line 88: = hr_tcn_shd.g_old_rec.template_canvas_id and

84: --
85: l_fct_ret := false;
86: Else
87: If (p_template_canvas_id
88: = hr_tcn_shd.g_old_rec.template_canvas_id and
89: p_object_version_number
90: = hr_tcn_shd.g_old_rec.object_version_number
91: ) Then
92: --

Line 90: = hr_tcn_shd.g_old_rec.object_version_number

86: Else
87: If (p_template_canvas_id
88: = hr_tcn_shd.g_old_rec.template_canvas_id and
89: p_object_version_number
90: = hr_tcn_shd.g_old_rec.object_version_number
91: ) Then
92: --
93: -- The g_old_rec is current therefore we must
94: -- set the returning function to true

Line 102: Fetch C_Sel1 Into hr_tcn_shd.g_old_rec;

98: --
99: -- Select the current row into g_old_rec
100: --
101: Open C_Sel1;
102: Fetch C_Sel1 Into hr_tcn_shd.g_old_rec;
103: If C_Sel1%notfound Then
104: Close C_Sel1;
105: --
106: -- The primary key is invalid therefore we must error

Line 113: <> hr_tcn_shd.g_old_rec.object_version_number) Then

109: fnd_message.raise_error;
110: End If;
111: Close C_Sel1;
112: If (p_object_version_number
113: <> hr_tcn_shd.g_old_rec.object_version_number) Then
114: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
115: fnd_message.raise_error;
116: End If;
117: l_fct_ret := true;

Line 162: Fetch C_Sel1 Into hr_tcn_shd.g_old_rec;

158: ,p_argument_value => p_object_version_number
159: );
160: --Bug:1790746 fix End
161: Open C_Sel1;
162: Fetch C_Sel1 Into hr_tcn_shd.g_old_rec;
163: If C_Sel1%notfound then
164: Close C_Sel1;
165: --
166: -- The primary key is invalid therefore we must error

Line 173: <> hr_tcn_shd.g_old_rec.object_version_number) Then

169: fnd_message.raise_error;
170: End If;
171: Close C_Sel1;
172: If (p_object_version_number
173: <> hr_tcn_shd.g_old_rec.object_version_number) Then
174: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
175: fnd_message.raise_error;
176: End If;
177: --

Line 221: end hr_tcn_shd;

217: Return(l_rec);
218: --
219: End convert_args;
220: --
221: end hr_tcn_shd;