DBA Data[Home] [Help]

APPS.FEM_FIN_ELEMS_PKG dependencies on APP_EXCEPTION

Line 134: app_exception.raise_exception;

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)
138: AND (recinfo.ENABLED_FLAG = X_ENABLED_FLAG)

Line 146: app_exception.raise_exception;

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
150: if (tlinfo.BASELANG = 'Y') then

Line 158: app_exception.raise_exception;

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;
162: return;