DBA Data[Home] [Help]

APPS.HR_TTP_SHD dependencies on HR_TTP_SHD

Line 1: Package Body hr_ttp_shd as

1: Package Body hr_ttp_shd as
2: /* $Header: hrttprhi.pkb 115.5 2002/12/03 13:51:39 raranjan noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 91: = hr_ttp_shd.g_old_rec.template_tab_page_id and

87: --
88: l_fct_ret := false;
89: Else
90: If (p_template_tab_page_id
91: = hr_ttp_shd.g_old_rec.template_tab_page_id and
92: p_object_version_number
93: = hr_ttp_shd.g_old_rec.object_version_number
94: ) Then
95: --

Line 93: = hr_ttp_shd.g_old_rec.object_version_number

89: Else
90: If (p_template_tab_page_id
91: = hr_ttp_shd.g_old_rec.template_tab_page_id and
92: p_object_version_number
93: = hr_ttp_shd.g_old_rec.object_version_number
94: ) Then
95: --
96: -- The g_old_rec is current therefore we must
97: -- set the returning function to true

Line 105: Fetch C_Sel1 Into hr_ttp_shd.g_old_rec;

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

Line 116: <> hr_ttp_shd.g_old_rec.object_version_number) Then

112: fnd_message.raise_error;
113: End If;
114: Close C_Sel1;
115: If (p_object_version_number
116: <> hr_ttp_shd.g_old_rec.object_version_number) Then
117: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
118: fnd_message.raise_error;
119: End If;
120: l_fct_ret := true;

Line 165: Fetch C_Sel1 Into hr_ttp_shd.g_old_rec;

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

Line 176: <> hr_ttp_shd.g_old_rec.object_version_number) Then

172: fnd_message.raise_error;
173: End If;
174: Close C_Sel1;
175: If (p_object_version_number
176: <> hr_ttp_shd.g_old_rec.object_version_number) Then
177: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
178: fnd_message.raise_error;
179: End If;
180: --

Line 224: end hr_ttp_shd;

220: Return(l_rec);
221: --
222: End convert_args;
223: --
224: end hr_ttp_shd;