DBA Data[Home] [Help]

APPS.BNE_DUPLICATE_PROFILES_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.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)

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

125: AND (recinfo.INTEGRATOR_CODE = X_INTEGRATOR_CODE)
126: ) then
127: null;
128: else
129: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
130: app_exception.raise_exception;
131: end if;
132:
133: for tlinfo in c1 loop

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

135: if ( (tlinfo.USER_NAME = X_USER_NAME)
136: ) then
137: null;
138: else
139: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
140: app_exception.raise_exception;
141: end if;
142: end if;
143: end loop;