DBA Data[Home] [Help]

APPS.JTF_AE_PROFPROPS dependencies on FND_MESSAGE

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

124: open c;
125: fetch c into recinfo;
126: if (c%notfound) then
127: close c;
128: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
129: app_exception.raise_exception;
130: end if;
131: close c;
132: if ( (recinfo.PROFILE_MAPPINGS_ID = X_PROFILE_MAPPINGS_ID)

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

139: OR ((recinfo.SECURITY_GROUP_ID is null) AND (X_SECURITY_GROUP_ID is null)))
140: ) then
141: null;
142: else
143: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
144: app_exception.raise_exception;
145: end if;
146:
147: for tlinfo in c1 loop

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

152: OR ((tlinfo.PROP_DESCRIPTION is null) AND (X_PROP_DESCRIPTION is null)))
153: ) then
154: null;
155: else
156: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
157: app_exception.raise_exception;
158: end if;
159: end if;
160: end loop;