DBA Data[Home] [Help]

APPS.PQH_TCD_SHD dependencies on PQH_TCD_SHD

Line 1: Package Body pqh_tcd_shd as

1: Package Body pqh_tcd_shd as
2: /* $Header: pqtcdrhi.pkb 115.0 2003/05/11 13:05:52 svorugan noship $ */
3: --
4: -- ----------------------------------------------------------------------------
5: -- | Private Global Definitions |

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

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

Line 73: = pqh_tcd_shd.g_old_rec.document_id and

69: --
70: l_fct_ret := false;
71: Else
72: If (p_document_id
73: = pqh_tcd_shd.g_old_rec.document_id and
74: p_transaction_category_id
75: = pqh_tcd_shd.g_old_rec.transaction_category_id and
76: p_object_version_number
77: = pqh_tcd_shd.g_old_rec.object_version_number

Line 75: = pqh_tcd_shd.g_old_rec.transaction_category_id and

71: Else
72: If (p_document_id
73: = pqh_tcd_shd.g_old_rec.document_id and
74: p_transaction_category_id
75: = pqh_tcd_shd.g_old_rec.transaction_category_id and
76: p_object_version_number
77: = pqh_tcd_shd.g_old_rec.object_version_number
78: ) Then
79: --

Line 77: = pqh_tcd_shd.g_old_rec.object_version_number

73: = pqh_tcd_shd.g_old_rec.document_id and
74: p_transaction_category_id
75: = pqh_tcd_shd.g_old_rec.transaction_category_id and
76: p_object_version_number
77: = pqh_tcd_shd.g_old_rec.object_version_number
78: ) Then
79: --
80: -- The g_old_rec is current therefore we must
81: -- set the returning function to true

Line 89: Fetch C_Sel1 Into pqh_tcd_shd.g_old_rec;

85: --
86: -- Select the current row into g_old_rec
87: --
88: Open C_Sel1;
89: Fetch C_Sel1 Into pqh_tcd_shd.g_old_rec;
90: If C_Sel1%notfound Then
91: Close C_Sel1;
92: --
93: -- The primary key is invalid therefore we must error

Line 100: <> pqh_tcd_shd.g_old_rec.object_version_number) Then

96: fnd_message.raise_error;
97: End If;
98: Close C_Sel1;
99: If (p_object_version_number
100: <> pqh_tcd_shd.g_old_rec.object_version_number) Then
101: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
102: fnd_message.raise_error;
103: End If;
104: l_fct_ret := true;

Line 157: Fetch C_Sel1 Into pqh_tcd_shd.g_old_rec;

153: ,p_argument_value => p_object_version_number
154: );
155: --
156: Open C_Sel1;
157: Fetch C_Sel1 Into pqh_tcd_shd.g_old_rec;
158: If C_Sel1%notfound then
159: Close C_Sel1;
160: --
161: -- The primary key is invalid therefore we must error

Line 168: <> pqh_tcd_shd.g_old_rec.object_version_number) Then

164: fnd_message.raise_error;
165: End If;
166: Close C_Sel1;
167: If (p_object_version_number
168: <> pqh_tcd_shd.g_old_rec.object_version_number) Then
169: fnd_message.set_name('PAY', 'HR_7155_OBJECT_INVALID');
170: fnd_message.raise_error;
171: End If;
172: --

Line 216: end pqh_tcd_shd;

212: Return(l_rec);
213: --
214: End convert_args;
215: --
216: end pqh_tcd_shd;