DBA Data[Home] [Help]

APPS.FEM_SIC_PKG dependencies on APP_EXCEPTION

Line 129: app_exception.raise_exception;

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)
133: AND (recinfo.DIMENSION_GROUP_ID = X_DIMENSION_GROUP_ID)

Line 142: app_exception.raise_exception;

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

Line 153: app_exception.raise_exception;

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