DBA Data[Home] [Help]

APPS.FEM_USER_DIM9_PKG dependencies on APP_EXCEPTION

Line 139: app_exception.raise_exception;

135: fetch c into recinfo;
136: if (c%notfound) then
137: close c;
138: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
139: app_exception.raise_exception;
140: end if;
141: close c;
142: if ( ((recinfo.DIMENSION_GROUP_ID = X_DIMENSION_GROUP_ID)
143: OR ((recinfo.DIMENSION_GROUP_ID is null) AND (X_DIMENSION_GROUP_ID is null)))

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:
156: for tlinfo in c1 loop
157: if (tlinfo.BASELANG = 'Y') then

Line 165: app_exception.raise_exception;

161: ) then
162: null;
163: else
164: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
165: app_exception.raise_exception;
166: end if;
167: end if;
168: end loop;
169: return;