DBA Data[Home] [Help]

APPS.JTF_AE_PROFMAPS 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.SECURITY_GROUP_ID = X_SECURITY_GROUP_ID)
118: OR ((recinfo.SECURITY_GROUP_ID is null) AND (X_SECURITY_GROUP_ID is null)))

Line 126: app_exception.raise_exception;

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

Line 139: app_exception.raise_exception;

135: ) then
136: null;
137: else
138: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
139: app_exception.raise_exception;
140: end if;
141: end if;
142: end loop;
143: return;