DBA Data[Home] [Help]

APPS.PQH_OPL_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,'OPERATION_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_opl_shd.api_updating
206: (p_operation_id => p_rec.operation_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_operation_id => p_rec.operation_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.OPERATION_NUMBER, hr_api.g_varchar2) <>
219: nvl(pqh_opl_shd.g_old_rec.OPERATION_NUMBER, hr_api.g_varchar2) THEN
220: hr_utility.set_message(8302, 'PQH_DE_NONUPD_OPERATION_NUMBER');
221: fnd_message.raise_error;
222: END IF;
223:
224: End chk_non_updateable_args;
225: --

Line 276: fnd_message.raise_error;

272: Fetch c_Description into l_Description;
273: If c_Description%ROWCOUNT > 0 Then
274: hr_utility.set_message(8302, 'PQH_DE_DUPVAL_Description');
275: Close c_Description;
276: fnd_message.raise_error;
277: End If;
278: Close c_Description;
279: Exception
280: when app_exception.application_exception then

Line 308: fnd_message.raise_error;

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