DBA Data[Home] [Help]

APPS.FEM_DIM_ATTR_VERSIONS_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.ATTRIBUTE_ID = X_ATTRIBUTE_ID)
133: AND (recinfo.AW_SNAPSHOT_FLAG = X_AW_SNAPSHOT_FLAG)

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 154: app_exception.raise_exception;

150: ) then
151: null;
152: else
153: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
154: app_exception.raise_exception;
155: end if;
156: end if;
157: end loop;
158: return;