DBA Data[Home] [Help]

APPS.QPR_TRANSF_GROUPS_PKG dependencies on APP_EXCEPTION

Line 122: app_exception.raise_exception;

118: fetch c into recinfo;
119: if (c%notfound) then
120: close c;
121: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
122: app_exception.raise_exception;
123: end if;
124: close c;
125: if ( ((recinfo.PROGRAM_LOGIN_ID = X_PROGRAM_LOGIN_ID)
126: OR ((recinfo.PROGRAM_LOGIN_ID is null) AND (X_PROGRAM_LOGIN_ID is null)))

Line 135: app_exception.raise_exception;

131: ) then
132: null;
133: else
134: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
135: app_exception.raise_exception;
136: end if;
137:
138: for tlinfo in c1 loop
139: if (tlinfo.BASELANG = 'Y') then

Line 147: app_exception.raise_exception;

143: ) then
144: null;
145: else
146: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
147: app_exception.raise_exception;
148: end if;
149: end if;
150: end loop;
151: return;