DBA Data[Home] [Help]

APPS.JTF_IH_REASONS_SEED_PKG dependencies on APP_EXCEPTION

Line 171: app_exception.raise_exception;

167: fetch c into recinfo;
168: if (c%notfound) then
169: close c;
170: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
171: app_exception.raise_exception;
172: end if;
173: close c;
174: if ( ((recinfo.GENERATE_PRIVATE_CALLBACK = X_GENERATE_PRIVATE_CALLBACK)
175: OR ((recinfo.GENERATE_PRIVATE_CALLBACK is null) AND (X_GENERATE_PRIVATE_CALLBACK is null)))

Line 188: app_exception.raise_exception;

184: ) then
185: null;
186: else
187: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
188: app_exception.raise_exception;
189: end if;
190:
191: for tlinfo in c1 loop
192: if (tlinfo.BASELANG = 'Y') then

Line 205: app_exception.raise_exception;

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