DBA Data[Home] [Help]

APPS.XNP_MSG_TYPES_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.MSG_TYPE = X_MSG_TYPE)
163: AND (recinfo.STATUS = X_STATUS)

Line 185: app_exception.raise_exception;

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

Line 197: app_exception.raise_exception;

193: ) then
194: null;
195: else
196: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
197: app_exception.raise_exception;
198: end if;
199: end if;
200: end loop;
201: return;