DBA Data[Home] [Help]

APPS.ARP_RW_ICR_REMIT_PKG dependencies on APP_EXCEPTION

Line 302: APP_EXCEPTION.raise_exception;

298: END IF;
299: --
300: IF ( p_rr_id is NULL ) THEN
301: FND_MESSAGE.set_name ('AR', 'AR_ARGUEMENTS_FAIL' );
302: APP_EXCEPTION.raise_exception;
303: END IF;
304:
305: DELETE FROM ar_cash_remit_refs_all
306: WHERE remit_reference_id = p_rr_id;

Line 389: APP_EXCEPTION.Raise_Exception;

385: FETCH C INTO Recinfo;
386: if (C%NOTFOUND) then
387: CLOSE C;
388: FND_MESSAGE.Set_Name( 'FND', 'FORM_RECORD_DELETED');
389: APP_EXCEPTION.Raise_Exception;
390: end if;
391: CLOSE C;
392: if(
393: (recinfo.remit_reference_id = p_remit_reference_id )

Line 418: APP_EXCEPTION.Raise_Exception;

414: ) then
415: return;
416: else
417: FND_MESSAGE.Set_Name('FND', 'FORM_RECORD_CHANGED');
418: APP_EXCEPTION.Raise_Exception;
419: end if;
420: END lock_row;
421: --
422: END ARP_RW_ICR_REMIT_PKG;