DBA Data[Home] [Help]

APPS.PAY_SBC_BUS dependencies on FND_MESSAGE

Line 55: fnd_message.set_name('PAY', 'PAY_50085_SBC_CORE_ROW_EXISTS');

51: fetch csr_disallow_update into l_disallow;
52: if csr_disallow_update%found then
53: hr_utility.set_location(l_proc, 20);
54: close csr_disallow_update;
55: fnd_message.set_name('PAY', 'PAY_50085_SBC_CORE_ROW_EXISTS');
56: fnd_message.raise_error;
57: end if;
58: close csr_disallow_update;
59: --

Line 56: fnd_message.raise_error;

52: if csr_disallow_update%found then
53: hr_utility.set_location(l_proc, 20);
54: close csr_disallow_update;
55: fnd_message.set_name('PAY', 'PAY_50085_SBC_CORE_ROW_EXISTS');
56: fnd_message.raise_error;
57: end if;
58: close csr_disallow_update;
59: --
60: -- p_balance_type_id

Line 121: fnd_message.set_name('PAY', 'PAY_50100_ETM_INVALID_EXC_RULE');

117: fetch csr_exclusion_rule_id_valid into l_valid;
118: if csr_exclusion_rule_id_valid%notfound then
119: hr_utility.set_location('Leaving:'||l_proc, 10);
120: close csr_exclusion_rule_id_valid;
121: fnd_message.set_name('PAY', 'PAY_50100_ETM_INVALID_EXC_RULE');
122: fnd_message.raise_error;
123: end if;
124: close csr_exclusion_rule_id_valid;
125: end if;

Line 122: fnd_message.raise_error;

118: if csr_exclusion_rule_id_valid%notfound then
119: hr_utility.set_location('Leaving:'||l_proc, 10);
120: close csr_exclusion_rule_id_valid;
121: fnd_message.set_name('PAY', 'PAY_50100_ETM_INVALID_EXC_RULE');
122: fnd_message.raise_error;
123: end if;
124: close csr_exclusion_rule_id_valid;
125: end if;
126: end if;

Line 164: fnd_message.set_name('PAY', 'PAY_50086_ETM_INVALID_BAL_TYPE');

160: fetch csr_balance_type_exists into l_exists;
161: if csr_balance_type_exists%notfound then
162: hr_utility.set_location(' Leaving:'||l_proc, 10);
163: close csr_balance_type_exists;
164: fnd_message.set_name('PAY', 'PAY_50086_ETM_INVALID_BAL_TYPE');
165: fnd_message.raise_error;
166: end if;
167: close csr_balance_type_exists;
168: hr_utility.set_location(' Leaving:'||l_proc, 15);

Line 165: fnd_message.raise_error;

161: if csr_balance_type_exists%notfound then
162: hr_utility.set_location(' Leaving:'||l_proc, 10);
163: close csr_balance_type_exists;
164: fnd_message.set_name('PAY', 'PAY_50086_ETM_INVALID_BAL_TYPE');
165: fnd_message.raise_error;
166: end if;
167: close csr_balance_type_exists;
168: hr_utility.set_location(' Leaving:'||l_proc, 15);
169: End chk_balance_type_id;

Line 219: fnd_message.set_name('PAY', 'PAY_50087_SBC_BAL_CLASS_EXISTS');

215: fetch csr_bal_class_exists into l_exists;
216: if csr_bal_class_exists%found then
217: hr_utility.set_location(' Leaving:'||l_proc, 10);
218: close csr_bal_class_exists;
219: fnd_message.set_name('PAY', 'PAY_50087_SBC_BAL_CLASS_EXISTS');
220: fnd_message.raise_error;
221: end if;
222: close csr_bal_class_exists;
223: end if;

Line 220: fnd_message.raise_error;

216: if csr_bal_class_exists%found then
217: hr_utility.set_location(' Leaving:'||l_proc, 10);
218: close csr_bal_class_exists;
219: fnd_message.set_name('PAY', 'PAY_50087_SBC_BAL_CLASS_EXISTS');
220: fnd_message.raise_error;
221: end if;
222: close csr_bal_class_exists;
223: end if;
224: hr_utility.set_location(' Leaving:'||l_proc, 25);

Line 259: fnd_message.set_name('PAY', 'PAY_50088_SBC_INVALID_DELETE');

255: close csr_core_objects;
256: hr_utility.set_location(' Leaving:'||l_proc, 15);
257: exception
258: when l_error then
259: fnd_message.set_name('PAY', 'PAY_50088_SBC_INVALID_DELETE');
260: fnd_message.raise_error;
261: when others then
262: hr_utility.set_location(' Leaving:'||l_proc, 20);
263: raise;

Line 260: fnd_message.raise_error;

256: hr_utility.set_location(' Leaving:'||l_proc, 15);
257: exception
258: when l_error then
259: fnd_message.set_name('PAY', 'PAY_50088_SBC_INVALID_DELETE');
260: fnd_message.raise_error;
261: when others then
262: hr_utility.set_location(' Leaving:'||l_proc, 20);
263: raise;
264: End chk_delete;

Line 299: fnd_message.set_name('PAY', 'PAY_50089_ETM_INVALID_SCALE');

295: -- Check that scale is valid.
296: --
297: if p_scale <> 1 and p_scale <> -1 then
298: hr_utility.set_location(' Leaving:'||l_proc, 10);
299: fnd_message.set_name('PAY', 'PAY_50089_ETM_INVALID_SCALE');
300: fnd_message.set_token('POSITIVE', 1);
301: fnd_message.set_token('NEGATIVE', -1);
302: fnd_message.raise_error;
303: end if;

Line 300: fnd_message.set_token('POSITIVE', 1);

296: --
297: if p_scale <> 1 and p_scale <> -1 then
298: hr_utility.set_location(' Leaving:'||l_proc, 10);
299: fnd_message.set_name('PAY', 'PAY_50089_ETM_INVALID_SCALE');
300: fnd_message.set_token('POSITIVE', 1);
301: fnd_message.set_token('NEGATIVE', -1);
302: fnd_message.raise_error;
303: end if;
304: end if;

Line 301: fnd_message.set_token('NEGATIVE', -1);

297: if p_scale <> 1 and p_scale <> -1 then
298: hr_utility.set_location(' Leaving:'||l_proc, 10);
299: fnd_message.set_name('PAY', 'PAY_50089_ETM_INVALID_SCALE');
300: fnd_message.set_token('POSITIVE', 1);
301: fnd_message.set_token('NEGATIVE', -1);
302: fnd_message.raise_error;
303: end if;
304: end if;
305: hr_utility.set_location(' Leaving:'||l_proc, 15);

Line 302: fnd_message.raise_error;

298: hr_utility.set_location(' Leaving:'||l_proc, 10);
299: fnd_message.set_name('PAY', 'PAY_50089_ETM_INVALID_SCALE');
300: fnd_message.set_token('POSITIVE', 1);
301: fnd_message.set_token('NEGATIVE', -1);
302: fnd_message.raise_error;
303: end if;
304: end if;
305: hr_utility.set_location(' Leaving:'||l_proc, 15);
306: End chk_scale;