DBA Data[Home] [Help]

APPS.JTF_NAV_TREE_ROOTS_PKG dependencies on APP_EXCEPTION

Line 135: app_exception.raise_exception;

131: fetch c into recinfo;
132: if (c%notfound) then
133: close c;
134: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
135: app_exception.raise_exception;
136: end if;
137: close c;
138: if ( ((recinfo.VIEWBY_id = X_VIEWBY_id)
139: OR ((recinfo.VIEWBY_id is null) AND (X_VIEWBY_id is null)))

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

Line 156: app_exception.raise_exception;

152: ) then
153: null;
154: else
155: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
156: app_exception.raise_exception;
157: end if;
158: end if;
159: end loop;
160: return;