DBA Data[Home] [Help]

APPS.JTF_UM_APPROVALS_PKG dependencies on APP_EXCEPTION

Line 166: app_exception.raise_exception;

162: fetch c into recinfo;
163: if (c%notfound) then
164: close c;
165: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
166: app_exception.raise_exception;
167: end if;
168: close c;
169: if ( ((recinfo.EFFECTIVE_END_DATE = X_EFFECTIVE_END_DATE)
170: OR ((recinfo.EFFECTIVE_END_DATE is null) AND (X_EFFECTIVE_END_DATE is null)))

Line 180: app_exception.raise_exception;

176: ) then
177: null;
178: else
179: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
180: app_exception.raise_exception;
181: end if;
182:
183: for tlinfo in c1 loop
184: if (tlinfo.BASELANG = 'Y') then

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: end if;
195: end loop;
196: return;