DBA Data[Home] [Help]

APPS.GML_OP_ORDR_STS_PKG dependencies on APP_EXCEPTION

Line 121: app_exception.raise_exception;

117: fetch c into recinfo;
118: if (c%notfound) then
119: close c;
120: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
121: app_exception.raise_exception;
122: end if;
123: close c;
124: if ( (recinfo.LANG_CODE = X_LANG_CODE)
125: AND (recinfo.TRANS_CNT = X_TRANS_CNT)

Line 133: app_exception.raise_exception;

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

Line 144: app_exception.raise_exception;

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