DBA Data[Home] [Help]

APPS.ZX_REPORTING_CODES_PKG dependencies on APP_EXCEPTION

Line 155: app_exception.raise_exception;

151: fetch c into recinfo;
152: if (c%notfound) then
153: close c;
154: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
155: app_exception.raise_exception;
156: end if;
157: close c;
158: if ( ((recinfo.REPORTING_CODE_CHAR_VALUE = X_REPORTING_CODE_CHAR_VALUE)
159: OR ((recinfo.REPORTING_CODE_CHAR_VALUE is null) AND (X_REPORTING_CODE_CHAR_VALUE is null)))

Line 181: app_exception.raise_exception;

177: ) then
178: null;
179: else
180: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
181: app_exception.raise_exception;
182: end if;
183:
184: for tlinfo in c1 loop
185: 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;