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 1342: fnd_msg_pub.add;

1338: END LOOP ;
1339:
1340: ELSE
1341: fnd_message.set_name('CSI','CSI_DPL_INVALID_LOCATION');
1342: fnd_msg_pub.add;
1343: RAISE fnd_api.g_exc_error ;
1344: END IF ; --p_dest_location_tbl.COUNT
1345:
1346:

Line 1385: fnd_msg_pub.add;

1381: OR
1382: nvl(l_dest_location_rec.location_id, fnd_api.g_miss_num) = fnd_api.g_miss_num
1383: THEN
1384: fnd_message.set_name('CSI','CSI_DPL_INVALID_LOCATION');
1385: fnd_msg_pub.add;
1386: RAISE fnd_api.g_exc_error;
1387: END IF;
1388: l_dest_location_rec.operational_status_code := l_operational_status_code;
1389: l_dest_location_rec.instance_usage_code := l_instance_usage_code;

Line 1417: fnd_msg_pub.add;

1413: ELSIF l_txn_rec.transaction_type_id = 104 THEN -- asset retirements
1414: l_dest_location_rec.operational_status_code := 'OUT_OF_SERVICE';
1415: ELSE
1416: fnd_message.set_name('CSI','CSI_INVALID_TXN_TYPE_ID');
1417: fnd_msg_pub.add;
1418: RAISE fnd_api.g_exc_error;
1419: END IF; ---Txn Type
1420:
1421: -- Bug 9262531