DBA Data[Home] [Help]

APPS.HZ_TIMEZONE_PKG dependencies on FND_MESSAGE

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

174: open c;
175: fetch c into recinfo;
176: if (c%notfound) then
177: close c;
178: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
179: app_exception.raise_exception;
180: end if;
181: close c;
182: if ( (recinfo.GLOBAL_TIMEZONE_NAME = X_GLOBAL_TIMEZONE_NAME)

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

208: OR ((recinfo.PRIMARY_ZONE_FLAG is null) AND (X_PRIMARY_ZONE_FLAG is null)))
209: ) then
210: null;
211: else
212: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
213: app_exception.raise_exception;
214: end if;
215:
216: for tlinfo in c1 loop

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

220: OR ((tlinfo.DESCRIPTION is null) AND (X_DESCRIPTION is null)))
221: ) then
222: null;
223: else
224: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
225: app_exception.raise_exception;
226: end if;
227: end if;
228: end loop;