DBA Data[Home] [Help]

APPS.BSC_SYS_DATASETS_PKG dependencies on APP_EXCEPTION

Line 122: app_exception.raise_exception;

118: fetch c into recinfo;
119: if (c%notfound) then
120: close c;
121: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
122: app_exception.raise_exception;
123: end if;
124: close c;
125: if ( ((recinfo.PROJECTION_FLAG = X_PROJECTION_FLAG)
126: OR ((recinfo.PROJECTION_FLAG is null) AND (X_PROJECTION_FLAG is null)))

Line 138: app_exception.raise_exception;

134: ) then
135: null;
136: else
137: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
138: app_exception.raise_exception;
139: end if;
140:
141: for tlinfo in c1 loop
142: if (tlinfo.BASELANG = 'Y') then

Line 149: app_exception.raise_exception;

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