DBA Data[Home] [Help]

APPS.JTF_NAV_VIEWBYS_PKG dependencies on APP_EXCEPTION

Line 136: app_exception.raise_exception;

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

Line 147: app_exception.raise_exception;

143: ) then
144: null;
145: else
146: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
147: app_exception.raise_exception;
148: end if;
149:
150: for tlinfo in c1 loop
151: if (tlinfo.BASELANG = 'Y') then

Line 157: app_exception.raise_exception;

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