DBA Data[Home] [Help]

APPS.FEM_SIC_PKG 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.SIC_DISPLAY_CODE = X_SIC_DISPLAY_CODE)

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

137: AND (recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
138: ) then
139: null;
140: else
141: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
142: app_exception.raise_exception;
143: end if;
144:
145: for tlinfo in c1 loop

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

148: AND (tlinfo.DESCRIPTION = X_DESCRIPTION)
149: ) then
150: null;
151: else
152: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
153: app_exception.raise_exception;
154: end if;
155: end if;
156: end loop;