DBA Data[Home] [Help]

APPS.JTF_AUTH_PERMISSIONS_PKG dependencies on APP_EXCEPTION

Line 137: app_exception.raise_exception;

133: fetch c into recinfo;
134: if (c%notfound) then
135: close c;
136: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
137: app_exception.raise_exception;
138: end if;
139: close c;
140: if (
141: ((recinfo.PERMISSION_DESC_ID = X_PERMISSION_DESC_ID)

Line 156: app_exception.raise_exception;

152: ) then
153: null;
154: else
155: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
156: app_exception.raise_exception;
157: end if;
158:
159: for tlinfo in c1 loop
160: if (tlinfo.BASELANG = 'Y') then

Line 169: app_exception.raise_exception;

165: ) then
166: null;
167: else
168: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
169: app_exception.raise_exception;
170: end if;
171: end if;
172: end loop;
173: return;