DBA Data[Home] [Help]

APPS.PER_JOB_INFO_TYPES_PKG dependencies on FND_MESSAGE

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

115: open c;
116: fetch c into recinfo;
117: if (c%notfound) then
118: close c;
119: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
120: app_exception.raise_exception;
121: end if;
122: close c;
123: if ( (recinfo.ACTIVE_INACTIVE_FLAG = X_ACTIVE_INACTIVE_FLAG)

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

130: OR ((recinfo.OBJECT_VERSION_NUMBER is null) AND (X_OBJECT_VERSION_NUMBER is null)))
131: ) then
132: null;
133: else
134: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
135: app_exception.raise_exception;
136: end if;
137:
138: return;