DBA Data[Home] [Help]

APPS.JTF_IH_RESULTS_SEED_PKG dependencies on APP_EXCEPTION

Line 174: app_exception.raise_exception;

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

Line 192: app_exception.raise_exception;

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

Line 209: app_exception.raise_exception;

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