DBA Data[Home] [Help]

APPS.CSE_DEPLOYMENT_GRP dependencies on FND_MSG_PUB

Line 164: fnd_msg_pub.add;

160:
161: IF l_inst_asset_found THEN
162: fnd_message.set_name('CSE', 'CSE_WFM_RETIRE_FLAG_ERROR');
163: fnd_message.set_token('ASSET_ID',l_asset_id);
164: fnd_msg_pub.add;
165: RAISE fnd_api.g_exc_error;
166: END IF;
167:
168: END IF;

Line 174: fnd_msg_pub.add;

170:
171: IF l_location_type_code = 'PROJECT' THEN
172: IF NOT(l_inst_asset_found) THEN
173: fnd_message.set_name('CSE', 'CSE_WFM_RETIRE_CIP_ERROR');
174: fnd_msg_pub.add;
175: RAISE fnd_api.g_exc_error;
176: END IF;
177: ELSIF l_location_type_code IN ('INVENTORY', 'WIP') THEN
178: fnd_message.set_name('CSE', 'CSE_WFM_RETIRE_INT_ERROR');

Line 180: fnd_msg_pub.add;

176: END IF;
177: ELSIF l_location_type_code IN ('INVENTORY', 'WIP') THEN
178: fnd_message.set_name('CSE', 'CSE_WFM_RETIRE_INT_ERROR');
179: fnd_message.set_token('INST_ID', p_instance_id);
180: fnd_msg_pub.add;
181: RAISE fnd_api.g_exc_error;
182: END IF;
183:
184: IF l_quantity > px_txn_rec.transaction_quantity THEN

Line 692: fnd_msg_pub.add;

688: END LOOP ;
689:
690: ELSE
691: fnd_message.set_name('CSI','CSI_DPL_INVALID_LOCATION');
692: fnd_msg_pub.add;
693: RAISE fnd_api.g_exc_error ;
694: END IF ; --p_dest_location_tbl.COUNT
695:
696:

Line 726: fnd_msg_pub.add;

722: OR
723: nvl(l_dest_location_rec.location_id, fnd_api.g_miss_num) = fnd_api.g_miss_num
724: THEN
725: fnd_message.set_name('CSI','CSI_DPL_INVALID_LOCATION');
726: fnd_msg_pub.add;
727: RAISE fnd_api.g_exc_error;
728: END IF;
729: l_dest_location_rec.operational_status_code := l_operational_status_code;
730: l_dest_location_rec.instance_usage_code := l_instance_usage_code;

Line 756: fnd_msg_pub.add;

752: ELSIF l_txn_rec.transaction_type_id = 104 THEN -- asset retirements
753: l_dest_location_rec.operational_status_code := 'OUT_OF_SERVICE';
754: ELSE
755: fnd_message.set_name('CSI','CSI_INVALID_TXN_TYPE_ID');
756: fnd_msg_pub.add;
757: RAISE fnd_api.g_exc_error;
758: END IF; ---Txn Type
759:
760: IF p_ext_attrib_values_tbl.COUNT > 0 THEN