DBA Data[Home] [Help]

APPS.AR_BPA_RULES_PKG dependencies on APP_EXCEPTION

Line 159: app_exception.raise_exception;

155: fetch c into recinfo;
156: if (c%notfound) then
157: close c;
158: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
159: app_exception.raise_exception;
160: end if;
161: close c;
162: if ( ((recinfo.SAME_PRINTING_TEMPLATE_FLAG = X_SAME_PRINTING_TEMPLATE_FLAG)
163: OR ((recinfo.SAME_PRINTING_TEMPLATE_FLAG is null) AND (X_SAME_PRINTING_TEMPLATE_FLAG is null)))

Line 189: app_exception.raise_exception;

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

Line 201: app_exception.raise_exception;

197: ) then
198: null;
199: else
200: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
201: app_exception.raise_exception;
202: end if;
203: end if;
204: end loop;
205: return;