DBA Data[Home] [Help]

APPS.AP_CARD_UTILITY_PKG dependencies on FND_MSG_PUB

Line 651: FND_MSG_PUB.initialize;

647:
648: BEGIN
649:
650:
651: FND_MSG_PUB.initialize;
652: --
653: -- Call custom cost center validation API
654: --
655: if (CustomValidateCostCenter(

Line 676: FND_MSG_PUB.add;

672: -- custom error message is null
673: --
674: if (l_customError is null) then
675: FND_MESSAGE.SET_NAME('SQLAP','AP_COST_CENTER_INVALID');
676: FND_MSG_PUB.add;
677: raise INVALID_COST_CENTER;
678: else
679: p_cs_error := l_customError;
680: raise INVALID_COST_CENTER;

Line 700: --FND_MSG_PUB.add; -- Commented for Bug 13360323

696: --
697: -- Failed; set standard failure message.
698: --
699: FND_MESSAGE.SET_NAME('SQLAP','AP_COST_CENTER_INVALID');
700: --FND_MSG_PUB.add; -- Commented for Bug 13360323
701: raise INVALID_COST_CENTER;
702: end if;
703: end if;
704: EXCEPTION