DBA Data[Home] [Help]

APPS.PQH_TKT_BUS dependencies on FND_MESSAGE

Line 66: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');

62: close csr_sec_grp;
63: --
64: -- The primary key is invalid therefore we must error
65: --
66: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
67: hr_multi_message.add
68: (p_associated_column1
69: => nvl(p_associated_column1,'TATIGKEIT_DETAIL_ID')
70: );

Line 149: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');

145: --
146: -- The primary key is invalid therefore we must error
147: --
148: close csr_leg_code;
149: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
150: fnd_message.raise_error;
151: end if;
152: hr_utility.set_location(l_proc,30);
153: --

Line 150: fnd_message.raise_error;

146: -- The primary key is invalid therefore we must error
147: --
148: close csr_leg_code;
149: fnd_message.set_name('PAY','HR_7220_INVALID_PRIMARY_KEY');
150: fnd_message.raise_error;
151: end if;
152: hr_utility.set_location(l_proc,30);
153: --
154: -- Set the global variables so the values are

Line 209: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');

205: IF NOT pqh_tkt_shd.api_updating
206: (p_tatigkeit_detail_id => p_rec.tatigkeit_detail_id
207: ,p_object_version_number => p_rec.object_version_number
208: ) THEN
209: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
210: fnd_message.set_token('PROCEDURE ', l_proc);
211: fnd_message.set_token('STEP ', '5');
212: fnd_message.raise_error;
213: END IF;

Line 210: fnd_message.set_token('PROCEDURE ', l_proc);

206: (p_tatigkeit_detail_id => p_rec.tatigkeit_detail_id
207: ,p_object_version_number => p_rec.object_version_number
208: ) THEN
209: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
210: fnd_message.set_token('PROCEDURE ', l_proc);
211: fnd_message.set_token('STEP ', '5');
212: fnd_message.raise_error;
213: END IF;
214: --

Line 211: fnd_message.set_token('STEP ', '5');

207: ,p_object_version_number => p_rec.object_version_number
208: ) THEN
209: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
210: fnd_message.set_token('PROCEDURE ', l_proc);
211: fnd_message.set_token('STEP ', '5');
212: fnd_message.raise_error;
213: END IF;
214: --
215: -- EDIT_HERE: Add checks to ensure non-updateable args have

Line 212: fnd_message.raise_error;

208: ) THEN
209: fnd_message.set_name('PER', 'HR_6153_ALL_PROCEDURE_FAIL');
210: fnd_message.set_token('PROCEDURE ', l_proc);
211: fnd_message.set_token('STEP ', '5');
212: fnd_message.raise_error;
213: END IF;
214: --
215: -- EDIT_HERE: Add checks to ensure non-updateable args have
216: -- not been updated.

Line 221: fnd_message.raise_error;

217: --
218: IF nvl(p_rec.TATIGKEIT_NUMBER, hr_api.g_varchar2) <>
219: nvl(pqh_tkt_shd.g_old_rec.TATIGKEIT_NUMBER, hr_api.g_varchar2) THEN
220: hr_utility.set_message(8302, 'PQH_DE_NONUPD_TATIGKEIT_NUMBER');
221: fnd_message.raise_error;
222: END IF;
223:
224: End chk_non_updateable_args;
225: -- ----------------------------------------------------------------------------

Line 274: fnd_message.raise_error;

270: Fetch c_TATIGKEIT_NUMBER into l_TATIGKEIT_NUMBER;
271: If c_TATIGKEIT_NUMBER%ROWCOUNT > 0 Then
272: hr_utility.set_message(8302, 'PQH_DE_DUPVAL_tkt_Dtls');
273: Close c_TATIGKEIT_NUMBER;
274: fnd_message.raise_error;
275: End If;
276: Close c_TATIGKEIT_NUMBER;
277: Exception
278: when app_exception.application_exception then

Line 308: fnd_message.raise_error;

304: Fetch c_Description into l_Description;
305: If c_Description%ROWCOUNT > 0 Then
306: hr_utility.set_message(8302, 'PQH_DE_DUPVAL_Description');
307: Close c_Description;
308: fnd_message.raise_error;
309: End If;
310: Close c_Description;
311: Exception
312: when app_exception.application_exception then