DBA Data[Home] [Help]

APPS.FTP_PAYMENT_PATTERN_PKG dependencies on APP_EXCEPTION

Line 113: app_exception.raise_exception;

109: fetch c into recinfo;
110: if (c%notfound) then
111: close c;
112: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
113: app_exception.raise_exception;
114: end if;
115: close c;
116: if ( (recinfo.AMRT_TYPE_CODE = X_AMRT_TYPE_CODE)
117: AND (recinfo.PATTERN_NAME = X_PATTERN_NAME)

Line 124: app_exception.raise_exception;

120: ) then
121: null;
122: else
123: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
124: app_exception.raise_exception;
125: end if;
126:
127: for tlinfo in c1 loop
128: if (tlinfo.BASELANG = 'Y') then

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: end if;
138: end loop;
139: return;