DBA Data[Home] [Help]

APPS.EDW_FLEX_SEG_MAPPING_LINES_PKG dependencies on FND_MESSAGE

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

110: open c;
111: fetch c into recinfo;
112: if (c%notfound) then
113: close c;
114: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
115: app_exception.raise_exception;
116: end if;
117: close c;
118: if ( (nvl(recinfo.INSTANCE_CODE, 'AA') = nvl(X_INSTANCE_CODE, 'AA'))

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

127: AND (nvl(recinfo.WH_DIMENSION_NAME, 'AA') = nvl(X_WH_DIMENSION_NAME, 'AA'))
128: ) then
129: null;
130: else
131: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
132: app_exception.raise_exception;
133: end if;
134:
135: return;