DBA Data[Home] [Help]

APPS.JTF_IH_OUTCOMES_SEED_PVT dependencies on FND_MESSAGE

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

141: open c;
142: fetch c into recinfo;
143: if (c%notfound) then
144: close c;
145: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
146: app_exception.raise_exception;
147: end if;
148: close c;
149: if ( ((recinfo.GENERATE_PUBLIC_CALLBACK = X_GENERATE_PUBLIC_CALLBACK)

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

161: OR ((recinfo.VERSATILITY_CODE is null) AND (X_VERSATILITY_CODE is null)))
162: ) then
163: null;
164: else
165: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
166: app_exception.raise_exception;
167: end if;
168:
169: for tlinfo in c1 loop

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

176: OR ((tlinfo.LONG_DESCRIPTION is null) AND (X_LONG_DESCRIPTION is null)))
177: ) then
178: null;
179: else
180: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
181: app_exception.raise_exception;
182: end if;
183: end if;
184: end loop;