DBA Data[Home] [Help]

APPS.IEC_O_ALG_OP_DEFS_PKG dependencies on APP_EXCEPTION

Line 111: app_exception.raise_exception;

107: fetch c into recinfo;
108: if (c%notfound) then
109: close c;
110: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
111: app_exception.raise_exception;
112: end if;
113: close c;
114: if ( (recinfo.IS_UNARY_FLAG = X_IS_UNARY_FLAG)
115: AND ((recinfo.SQL_OPERATOR = X_SQL_OPERATOR)

Line 122: app_exception.raise_exception;

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

Line 132: app_exception.raise_exception;

128: ) then
129: null;
130: else
131: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
132: app_exception.raise_exception;
133: end if;
134: end if;
135: end loop;
136: return;