DBA Data[Home] [Help]

APPS.FA_CUA_HR_DISTRIBUTION_PKG dependencies on APP_EXCEPTION

Line 95: app_exception.raise_exception;

91: open C1;
92: fetch c1 into tlinfo;
93: if (c1%notfound) then
94: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_DELETED');
95: app_exception.raise_exception;
96: close c1;
97: return;
98: end if;
99: close c1;

Line 118: app_exception.raise_exception;

114: ) then
115: null;
116: else
117: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
118: app_exception.raise_exception;
119: end if;
120: return;
121:
122: End lock_row;