DBA Data[Home] [Help]

APPS.EGO_RULE_SETS_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.ATTR_GROUP_TYPE = X_ATTR_GROUP_TYPE)
133: OR ((recinfo.ATTR_GROUP_TYPE is null) AND (X_ATTR_GROUP_TYPE is null)))

Line 145: app_exception.raise_exception;

141: ) then
142: null;
143: else
144: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
145: app_exception.raise_exception;
146: end if;
147:
148: for tlinfo in c1 loop
149: 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;