DBA Data[Home] [Help]

APPS.AR_BR_CANCEL_UNPAID_API_PUB dependencies on APP_EXCEPTION

Line 188: app_exception.raise_exception;

184: IF PG_DEBUG in ('Y', 'C') THEN
185: arp_standard.debug('>>>>> CANCEL_OR_UNPAID, Unpaid BR EXCEPTION - ROLLBACK, return_status ='||x_return_status);
186: END IF;
187: Rollback to BR_B4;
188: app_exception.raise_exception;
189:
190: WHEN cancel_BR_ERROR THEN
191: x_return_status := FND_API.G_RET_STS_ERROR;
192: IF PG_DEBUG in ('Y', 'C') THEN

Line 196: app_exception.raise_exception;

192: IF PG_DEBUG in ('Y', 'C') THEN
193: arp_standard.debug('>>>>> CANCEL_OR_UNPAID, Cancel BR EXCEPTION - ROLLBACK, return_status ='||x_return_status);
194: END IF;
195: Rollback to BR_B4;
196: app_exception.raise_exception;
197:
198: WHEN invalid_flag THEN
199: x_return_status := FND_API.G_RET_STS_ERROR;
200: IF PG_DEBUG in ('Y', 'C') THEN

Line 204: app_exception.raise_exception;

200: IF PG_DEBUG in ('Y', 'C') THEN
201: arp_standard.debug('>>>>> CANCEL_OR_UNPAID, Invalid value for p_cancel_flag - ROLLBACK');
202: END IF;
203: Rollback to BR_B4;
204: app_exception.raise_exception;
205:
206: WHEN no_setup_error THEN
207: IF PG_DEBUG in ('Y', 'C') THEN
208: arp_standard.debug('>>>>> CANCEL_OR_UNPAID, Setup of org id not correctly performed');

Line 210: app_exception.raise_exception;

206: WHEN no_setup_error THEN
207: IF PG_DEBUG in ('Y', 'C') THEN
208: arp_standard.debug('>>>>> CANCEL_OR_UNPAID, Setup of org id not correctly performed');
209: END IF;
210: app_exception.raise_exception;
211:
212: WHEN OTHERS THEN
213: x_return_status := FND_API.G_RET_STS_ERROR;
214: IF PG_DEBUG in ('Y', 'C') THEN

Line 223: app_exception.raise_exception;

219: l_error_msg := substr(SQLERRM,1,255);
220: IF PG_DEBUG in ('Y', 'C') THEN
221: arp_standard.debug('CANCEL_OR_UNPAID: ' || '>>> Code: '||l_error_code||' Msg: '||l_error_msg);
222: END IF;
223: app_exception.raise_exception;
224:
225:
226: END CANCEL_OR_UNPAID;
227: