DBA Data[Home] [Help]

APPS.WIP_RESERVATIONS_GRP dependencies on FND_MSG_PUB

Line 117: fnd_msg_pub.ADD;

113: END IF; -- End if for p_return_txn
114:
115: ELSE
116: fnd_message.set_name('WIP', 'WIP_SUPPLY_SOURCE');
117: fnd_msg_pub.ADD;
118: x_return_status := fnd_api.g_ret_sts_error;
119: END IF;
120: IF (l_logLevel <= wip_constants.trace_logging) THEN
121: wip_logger.exitPoint(p_procName => 'wip_reservations_grp.get_available_supply_demand',

Line 138: fnd_msg_pub.add;

134: x_returnStatus => l_returnStatus);
135: END IF;
136: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
137: fnd_message.set_token('MESSAGE', l_errMsg);
138: fnd_msg_pub.add;
139:
140: END get_available_supply_demand ;
141:
142: PROCEDURE validate_supply_demand (

Line 244: fnd_msg_pub.ADD;

240: ELSE
241: /* If API is called with parameter p_supply_demand_code being Supply
242: Error Out with appropriate error message */
243: fnd_message.set_name('WIP', 'WIP_SUPPLY_SOURCE');
244: fnd_msg_pub.ADD;
245: x_return_status := FND_API.G_RET_STS_ERROR;
246: END IF ; -- p_supply_demand_code if condition
247:
248: -- Fixed bug 5371701. x_valid_status was not set and there is no call to

Line 272: fnd_msg_pub.add;

268: x_returnStatus => l_returnStatus);
269: END IF;
270: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
271: fnd_message.set_token('MESSAGE', l_errMsg);
272: fnd_msg_pub.add;
273: END validate_supply_demand ;
274:
275: END wip_reservations_grp;