DBA Data[Home] [Help]

APPS.HR_PAE_BUS dependencies on FND_MESSAGE

Line 54: fnd_message.set_name('HR','EXCEP_NAME_NOT_UNIQUE');

50: fetch c1 into c1_rec;
51: if c1%FOUND then
52: close c1;
53: -- *** NEW_MESSAGE_REQUIRED ***
54: fnd_message.set_name('HR','EXCEP_NAME_NOT_UNIQUE');
55: fnd_message.raise_error;
56: end if;
57: end if;
58: hr_utility.set_location(' Leaving:'||l_proc, 20);

Line 55: fnd_message.raise_error;

51: if c1%FOUND then
52: close c1;
53: -- *** NEW_MESSAGE_REQUIRED ***
54: fnd_message.set_name('HR','EXCEP_NAME_NOT_UNIQUE');
55: fnd_message.raise_error;
56: end if;
57: end if;
58: hr_utility.set_location(' Leaving:'||l_proc, 20);
59: END check_exception_name;

Line 89: fnd_message.set_name('HR','INVALID_EXCEP_CATEGORY');

85: open c1;
86: fetch c1 into c1_rec;
87: if c1%NOTFOUND then
88: -- *** NEW_MESSAGE_REQUIRED ***
89: fnd_message.set_name('HR','INVALID_EXCEP_CATEGORY');
90: fnd_message.raise_error;
91: end if;
92: close c1;
93: end if;

Line 90: fnd_message.raise_error;

86: fetch c1 into c1_rec;
87: if c1%NOTFOUND then
88: -- *** NEW_MESSAGE_REQUIRED ***
89: fnd_message.set_name('HR','INVALID_EXCEP_CATEGORY');
90: fnd_message.raise_error;
91: end if;
92: close c1;
93: end if;
94: hr_utility.set_location(' Leaving:'||l_proc, 10);