DBA Data[Home] [Help]

APPS.AK_FLOW_PAGE_REGIONS_PKG dependencies on FND_MESSAGE

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

158: open c;
159: fetch c into recinfo;
160: if (c%notfound) then
161: close c;
162: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
163: app_exception.raise_exception;
164: end if;
165: close c;
166: if (NOT( (recinfo.DISPLAY_SEQUENCE = X_DISPLAY_SEQUENCE)

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

170: AND (recinfo.PARENT_REGION_APPLICATION_ID =
171: X_OLD_PARENT_REGION_APPL_ID)
172: AND (recinfo.PARENT_REGION_CODE = X_OLD_PARENT_REGION_CODE)
173: )) then
174: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
175: app_exception.raise_exception;
176: end if;
177: end LOCK_ROW;
178: