DBA Data[Home] [Help]

APPS.HR_DTY_BUS dependencies on FND_TERRITORIES

Line 505: from fnd_territories

501: -- Cursor for Validating Legislation Code
502:
503: cursor csr_valid_leg_code is
504: select 'X'
505: from fnd_territories
506: where TERRITORY_CODE = p_legislation_code;
507:
508: --
509: begin

Line 520: hr_utility.set_message_token('TABLE', 'FND_TERRITORIES');

516: if csr_valid_leg_code%notfound then
517: close csr_valid_leg_code;
518: hr_utility.set_message(800, 'HR_449710_DOR_INVL_VAL');
519: hr_utility.set_message_token('OBJECT', 'LEGISLATION_CODE');
520: hr_utility.set_message_token('TABLE', 'FND_TERRITORIES');
521: hr_utility.raise_error;
522: hr_utility.set_location(l_proc, 10);
523: --
524: else