DBA Data[Home] [Help]

APPS.JTF_EVT_TYPES_PKG dependencies on APP_EXCEPTION

Line 105: app_exception.raise_exception;

101: fetch c into recinfo;
102: if (c%notfound) then
103: close c;
104: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
105: app_exception.raise_exception;
106: end if;
107: close c;
108: if ( ((recinfo.SECURITY_GROUP_ID = X_SECURITY_GROUP_ID)
109: OR ((recinfo.SECURITY_GROUP_ID is null) AND (X_SECURITY_GROUP_ID is null)))

Line 115: app_exception.raise_exception;

111: ) then
112: null;
113: else
114: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
115: app_exception.raise_exception;
116: end if;
117:
118: for tlinfo in c1 loop
119: if (tlinfo.BASELANG = 'Y') then

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: end if;
129: end loop;
130: return;