DBA Data[Home] [Help]

APPS.GMA_ACTCOL_WF_PKG dependencies on APP_EXCEPTION

Line 131: app_exception.raise_exception;

127: fetch c into recinfo;
128: if (c%notfound) then
129: close c;
130: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
131: app_exception.raise_exception;
132: end if;
133: close c;
134: if ( ((recinfo.COLUMN_HIERARCHY = X_COLUMN_HIERARCHY)
135: OR ((recinfo.COLUMN_HIERARCHY is null) AND (X_COLUMN_HIERARCHY is null)))

Line 142: app_exception.raise_exception;

138: ) then
139: null;
140: else
141: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
142: app_exception.raise_exception;
143: end if;
144:
145: for tlinfo in c1 loop
146: if (tlinfo.BASELANG = 'Y') then

Line 152: app_exception.raise_exception;

148: ) then
149: null;
150: else
151: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
152: app_exception.raise_exception;
153: end if;
154: end if;
155: end loop;
156: return;