DBA Data[Home] [Help]

APPS.ITA_SETUP_GROUPS_PKG dependencies on FND_MESSAGE

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

131: open c;
132: fetch c into recinfo;
133: if (c%notfound) then
134: close c;
135: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
136: app_exception.raise_exception;
137: end if;
138: close c;
139: if ( ((recinfo.TABLE_ID = X_TABLE_ID)

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

154: OR ((recinfo.OBJECT_VERSION_NUMBER is null) AND (X_OBJECT_VERSION_NUMBER is null)))
155: ) then
156: null;
157: else
158: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
159: app_exception.raise_exception;
160: end if;
161:
162: for tlinfo in c1 loop

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

165: OR ((tlinfo.SETUP_GROUP_NAME is null) AND (X_SETUP_GROUP_NAME is null)))
166: ) then
167: null;
168: else
169: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
170: app_exception.raise_exception;
171: end if;
172: end if;
173: end loop;