DBA Data[Home] [Help]

APPS.FEM_FIN_ELEMS_PKG dependencies on FND_MESSAGE

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

129: open c;
130: fetch c into recinfo;
131: if (c%notfound) then
132: close c;
133: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
134: app_exception.raise_exception;
135: end if;
136: close c;
137: if ( (recinfo.FINANCIAL_ELEM_DISPLAY_CODE = X_FINANCIAL_ELEM_DISPLAY_CODE)

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

141: AND (recinfo.PERSONAL_FLAG = X_PERSONAL_FLAG)
142: ) then
143: null;
144: else
145: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
146: app_exception.raise_exception;
147: end if;
148:
149: for tlinfo in c1 loop

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

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