DBA Data[Home] [Help]

APPS.ZX_REPORTING_CODES_PKG dependencies on FND_MESSAGE

Line 154: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

150: open c;
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)

Line 180: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

176: AND (recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
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

Line 191: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

187: OR ((tlinfo.REPORTING_CODE_NAME is null) AND (X_REPORTING_CODE_NAME is null)))
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;