DBA Data[Home] [Help]

APPS.AR_BPA_DATASRC_APPS_PKG dependencies on APP_EXCEPTION

Line 119: app_exception.raise_exception;

115: fetch c into recinfo;
116: if (c%notfound) then
117: close c;
118: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
119: app_exception.raise_exception;
120: end if;
121: close c;
122: if ( ((recinfo.INTERFACE_CONTEXT = X_INTERFACE_CONTEXT)
123: OR ((recinfo.INTERFACE_CONTEXT is null) AND (X_INTERFACE_CONTEXT is null)))

Line 134: app_exception.raise_exception;

130: ) then
131: null;
132: else
133: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
134: app_exception.raise_exception;
135: end if;
136:
137: for tlinfo in c1 loop
138: if (tlinfo.BASELANG = 'Y') then

Line 146: app_exception.raise_exception;

142: ) then
143: null;
144: else
145: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
146: app_exception.raise_exception;
147: end if;
148: end if;
149: end loop;
150: return;