DBA Data[Home] [Help]

APPS.PAY_REPORT_FORMAT_MAPPINGS_PKG dependencies on APP_EXCEPTION

Line 151: app_exception.raise_exception;

147: open c;
148: fetch c into recinfo;
149: if (c%notfound) then close c;
150: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
151: app_exception.raise_exception;
152: end if;
153: close c;
154: if ( ((recinfo.TEMPORARY_ACTION_FLAG = X_TEMPORARY_ACTION_FLAG)
155: OR ((recinfo.TEMPORARY_ACTION_FLAG is null) AND (X_TEMPORARY_ACTION_FLAG is null)))

Line 187: app_exception.raise_exception;

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

Line 196: app_exception.raise_exception;

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