DBA Data[Home] [Help]

APPS.WSH_ROUTING_RESPONSE_PKG dependencies on FND_MSG_PUB

Line 159: wsh_debug_sv.log(l_moduleName, '# of messages', FND_MSG_PUB.COUNT_MSG);

155: wsh_debug_sv.log(l_moduleName, 'x_routingRespIdTab.COUNT', x_routingRespIdTab.COUNT);
156: wsh_debug_sv.log(l_moduleName, 'l_numWarnings', l_numWarnings);
157: wsh_debug_sv.log(l_moduleName, 'l_SuccDels', l_SuccDels);
158: wsh_debug_sv.log(l_moduleName, 'p_deliveryIdTab.COUNT', p_deliveryIdTab.COUNT);
159: wsh_debug_sv.log(l_moduleName, '# of messages', FND_MSG_PUB.COUNT_MSG);
160: wsh_debug_sv.pop(l_moduleName, x_RetStatus);
161: END IF;
162: --
163: EXCEPTION

Line 504: wsh_debug_sv.log(l_moduleName, '# of error messages', FND_MSG_PUB.COUNT_MSG);

500: l_performer IS NULL THEN
501: --
502: IF l_debugOn THEN
503: wsh_debug_sv.logmsg(l_moduleName, 'Routing response cannot be generated');
504: wsh_debug_sv.log(l_moduleName, '# of error messages', FND_MSG_PUB.COUNT_MSG);
505: END IF;
506: --
507: -- Delivery failed validation (or) the to Role is null.
508: -- Set the failure notification subject and message body

Line 517: FOR i IN 1..FND_MSG_PUB.COUNT_MSG LOOP

513: --
514: FND_MESSAGE.SET_NAME('FTE', 'FTE_RRESP_PRE_FAILURE_REASON');
515: l_failReason := FND_MESSAGE.GET;
516: --
517: FOR i IN 1..FND_MSG_PUB.COUNT_MSG LOOP
518: --
519: l_failReason := l_failReason || FND_GLOBAL.local_chr(10) ||
520: FND_MSG_PUB.GET(p_encoded => FND_API.G_FALSE);
521: --

Line 520: FND_MSG_PUB.GET(p_encoded => FND_API.G_FALSE);

516: --
517: FOR i IN 1..FND_MSG_PUB.COUNT_MSG LOOP
518: --
519: l_failReason := l_failReason || FND_GLOBAL.local_chr(10) ||
520: FND_MSG_PUB.GET(p_encoded => FND_API.G_FALSE);
521: --
522: END LOOP;
523: --
524: IF l_debugOn THEN

Line 640: FOR i IN 1..FND_MSG_PUB.COUNT_MSG LOOP

636: l_msgFailSubject := FND_MESSAGE.GET;
637: FND_MESSAGE.SET_NAME('FTE', 'FTE_RRESP_PRE_FAILURE_REASON');
638: l_failReason := FND_MESSAGE.GET;
639: --
640: FOR i IN 1..FND_MSG_PUB.COUNT_MSG LOOP
641: l_failReason := l_failReason || FND_GLOBAL.local_chr(10) ||
642: FND_MSG_PUB.GET(p_encoded=>FND_API.G_FALSE);
643: END LOOP;
644: --}

Line 642: FND_MSG_PUB.GET(p_encoded=>FND_API.G_FALSE);

638: l_failReason := FND_MESSAGE.GET;
639: --
640: FOR i IN 1..FND_MSG_PUB.COUNT_MSG LOOP
641: l_failReason := l_failReason || FND_GLOBAL.local_chr(10) ||
642: FND_MSG_PUB.GET(p_encoded=>FND_API.G_FALSE);
643: END LOOP;
644: --}
645: END IF;
646: --}

Line 1726: fnd_msg_pub.add;

1722: --If transportation is not arranged by Buyer than error.
1723: IF (nvl(l_shipping_control,'$$$') <> 'BUYER') THEN
1724: FND_MESSAGE.SET_NAME('WSH','WSH_RR_NO_BUYER_DEL');
1725: FND_MESSAGE.SET_TOKEN('DEL_NAME', WSH_NEW_DELIVERIES_PVT.Get_Name(p_delivery_id));
1726: fnd_msg_pub.add;
1727:
1728: raise FND_API.G_EXC_ERROR;
1729: END IF;
1730: