DBA Data[Home] [Help]

APPS.JTF_DPF_LOGICAL_FLOWS_PKG dependencies on APP_EXCEPTION

Line 176: app_exception.raise_exception;

172: fetch c into recinfo;
173: if (c%notfound) then
174: close c;
175: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
176: app_exception.raise_exception;
177: end if;
178: close c;
179: if ( (recinfo.LOGICAL_FLOW_HEAD_ID = X_LOGICAL_FLOW_HEAD_ID)
180: AND (recinfo.LOGICAL_FLOW_NAME = X_LOGICAL_FLOW_NAME)

Line 195: app_exception.raise_exception;

191: ) then
192: null;
193: else
194: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
195: app_exception.raise_exception;
196: end if;
197:
198: for tlinfo in c1 loop
199: if (tlinfo.BASELANG = 'Y') then

Line 206: app_exception.raise_exception;

202: ) then
203: null;
204: else
205: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
206: app_exception.raise_exception;
207: end if;
208: end if;
209: end loop;
210: return;