DBA Data[Home] [Help]

APPS.JTF_AUTH_PRINCIPALS_PKG dependencies on APP_EXCEPTION

Line 132: app_exception.raise_exception;

128: fetch c into recinfo;
129: if (c%notfound) then
130: close c;
131: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
132: app_exception.raise_exception;
133: end if;
134: close c;
135: if (
136: ((recinfo.PRINCIPAL_DESC_ID = X_PRINCIPAL_DESC_ID)

Line 150: app_exception.raise_exception;

146: ) then
147: null;
148: else
149: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
150: app_exception.raise_exception;
151: end if;
152:
153: for tlinfo in c1 loop
154: if (tlinfo.BASELANG = 'Y') then

Line 163: app_exception.raise_exception;

159: ) then
160: null;
161: else
162: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
163: app_exception.raise_exception;
164: end if;
165: end if;
166: end loop;
167: return;