DBA Data[Home] [Help]

APPS.BNE_PARAM_LISTS_PKG dependencies on FND_MESSAGE

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

145: open c;
146: fetch c into recinfo;
147: if (c%notfound) then
148: close c;
149: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
150: app_exception.raise_exception;
151: end if;
152: close c;
153: if ( (recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)

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

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

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

178: AND (tlinfo.USER_NAME = X_USER_NAME)
179: ) then
180: null;
181: else
182: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
183: app_exception.raise_exception;
184: end if;
185: end if;
186: end loop;