DBA Data[Home] [Help]

APPS.GMA_PROCCOL_WF_PKG dependencies on APP_EXCEPTION

Line 140: app_exception.raise_exception;

136: fetch c into recinfo;
137: if (c%notfound) then
138: close c;
139: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
140: app_exception.raise_exception;
141: end if;
142: close c;
143: if ( ((recinfo.COLUMN_HIERARCHY = X_COLUMN_HIERARCHY)
144: OR ((recinfo.COLUMN_HIERARCHY is null) AND (X_COLUMN_HIERARCHY is null)))

Line 151: app_exception.raise_exception;

147: ) then
148: null;
149: else
150: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
151: app_exception.raise_exception;
152: end if;
153:
154: for tlinfo in c1 loop
155: if (tlinfo.BASELANG = 'Y') then

Line 161: app_exception.raise_exception;

157: ) then
158: null;
159: else
160: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
161: app_exception.raise_exception;
162: end if;
163: end if;
164: end loop;
165: return;