DBA Data[Home] [Help]

APPS.IEU_WP_SECTIONS_PKG dependencies on APP_EXCEPTION

Line 118: app_exception.raise_exception;

114: fetch c into recinfo;
115: if (c%notfound) then
116: close c;
117: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
118: app_exception.raise_exception;
119: end if;
120: close c;
121: if ( (recinfo.OBJECT_VERSION_NUMBER = P_OBJECT_VERSION_NUMBER)
122: AND ((recinfo.SECURITY_GROUP_ID = P_SECURITY_GROUP_ID)

Line 129: app_exception.raise_exception;

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

Line 141: app_exception.raise_exception;

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