DBA Data[Home] [Help]

APPS.XDP_FE_ATTRIBUTE_VAL_PKG dependencies on APP_EXCEPTION

Line 114: app_exception.raise_exception;

110: fetch c into recinfo;
111: if (c%notfound) then
112: close c;
113: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
114: app_exception.raise_exception;
115: end if;
116: close c;
117: if ( ((recinfo.FE_ATTRIBUTE_VALUE = X_FE_ATTRIBUTE_VALUE)
118: OR ((recinfo.FE_ATTRIBUTE_VALUE is null) AND (X_FE_ATTRIBUTE_VALUE is null)))

Line 123: app_exception.raise_exception;

119: ) then
120: null;
121: else
122: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
123: app_exception.raise_exception;
124: end if;
125:
126: for tlinfo in c1 loop
127: if (tlinfo.BASELANG = 'Y') then

Line 135: app_exception.raise_exception;

131: ) then
132: null;
133: else
134: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
135: app_exception.raise_exception;
136: end if;
137: end if;
138: end loop;
139: return;