DBA Data[Home] [Help]

APPS.WIP_FLOWUTIL_PRIV dependencies on WIP_MTI_PUB

Line 169: wip_mti_pub.setMtiError(p_txnInterfaceID => flow_rec.transaction_interface_id,

165: where rowid = flow_rec.rowid;
166: else
167: fnd_message.set_name('WIP', 'WIP_ERROR_FLOW_DEFAULTING');
168: fnd_message.set_token('ENTITY1',to_char(flow_rec.transaction_interface_id));
169: wip_mti_pub.setMtiError(p_txnInterfaceID => flow_rec.transaction_interface_id,
170: p_errCode => null,
171: p_msgData => fnd_message.get);
172: l_errMsg := 'error defaulting';
173: raise l_validationException;

Line 532: wip_mti_pub.setMtiError(p_txnInterfaceID => l_interfaceID,

528: else
529: return fnd_api.g_ret_sts_success;
530: end if;
531:
532: wip_mti_pub.setMtiError(p_txnInterfaceID => l_interfaceID,
533: p_errCode => null,
534: p_msgData => fnd_message.get);
535: return fnd_api.g_ret_sts_error;
536: exception

Line 540: wip_mti_pub.setMtiError(p_txnInterfaceID => l_interfaceID,

536: exception
537: when others then
538: fnd_message.set_name('WIP', 'WIP_ERROR_FLOW_VALIDATION');
539: fnd_message.set_token('ENTITY1', l_scheduleNumber);
540: wip_mti_pub.setMtiError(p_txnInterfaceID => l_interfaceID,
541: p_errCode => null,
542: p_msgData => fnd_message.get);
543: return fnd_api.g_ret_sts_error;
544: end validateInterfaceCompletion;

Line 583: wip_mti_pub.setMtiError(p_parentID,

579: and nvl(substitution_type_id, -1) not in (1, 2, 3, 4);
580:
581: if ( l_result > 0 ) then
582: fnd_message.set_name('WIP', 'WIP_ERROR_SUBST_TYPE');
583: wip_mti_pub.setMtiError(p_parentID,
584: 'substitution_type_id',
585: substrb(fnd_message.get, 1, 240));
586: return fnd_api.g_ret_sts_error;
587: end if;

Line 598: wip_mti_pub.setMtiError(p_parentID,

594: and nvl(flow_schedule, 'Y') <> 'Y';
595:
596: if ( l_result > 0 ) then
597: fnd_message.set_name('WIP', 'WIP_FLOW_FLAG_ERROR');
598: wip_mti_pub.setMtiError(p_parentID,
599: 'flow_schedule',
600: substrb(fnd_message.get, 1, 240));
601: return fnd_api.g_ret_sts_error;
602: end if;

Line 637: wip_mti_pub.setMtiError(p_parentID,

633: l_errMsg := 'Original item id ' || to_char(sub_rec.inventory_item_id) ||
634: ' at op seq ' || to_char(sub_rec.operation_seq_num) || '.';
635: fnd_message.set_token('ENTITY1', l_errMsg);
636: fnd_message.set_token('ENTITY2', 'Original Component');
637: wip_mti_pub.setMtiError(p_parentID,
638: 'inventory_item_id',
639: substrb(fnd_message.get, 1, 240));
640: return fnd_api.g_ret_sts_error;
641: end if;

Line 665: wip_mti_pub.setMtiError(p_parentID,

661: l_errMsg := 'Original item id ' || to_char(sub_rec.inventory_item_id) ||
662: ' at op seq ' || to_char(sub_rec.operation_seq_num) || '.';
663: fnd_message.set_token('ENTITY1', l_errMsg);
664: fnd_message.set_token('ENTITY2', 'Substitution Component');
665: wip_mti_pub.setMtiError(p_parentID,
666: 'substitution_item_id',
667: substrb(fnd_message.get, 1, 240));
668: return fnd_api.g_ret_sts_error;
669: end if;

Line 1007: wip_mti_pub.setMtiError(p_parentID,

1003: end if;
1004:
1005: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
1006: fnd_message.set_token('MESSAGE', l_errMsg);
1007: wip_mti_pub.setMtiError(p_parentID,
1008: null,
1009: substrb(fnd_message.get, 1, 240));
1010:
1011: when others then

Line 1027: wip_mti_pub.setMtiError(p_parentID,

1023: x_returnStatus => l_returnStatus); --discard logging return status
1024: end if;
1025: fnd_message.set_name('WIP', 'WIP_ERROR_FLOW_BKFLUSH');
1026: fnd_message.set_token('ENTITY1', p_parentID);
1027: wip_mti_pub.setMtiError(p_parentID,
1028: null,
1029: substrb(fnd_message.get, 1, 240));
1030: end explodeRequirementsToMTI;
1031:

Line 1234: wip_mti_pub.setMtiError(p_parentID,

1230:
1231: exception
1232: when merge_exception then
1233: x_returnStatus := fnd_api.g_ret_sts_error;
1234: wip_mti_pub.setMtiError(p_parentID,
1235: null,
1236: substrb(fnd_message.get, 1, 240));
1237: when others then
1238: x_returnStatus := fnd_api.g_ret_sts_unexp_error;

Line 1239: wip_mti_pub.setMtiError(p_parentID,

1235: null,
1236: substrb(fnd_message.get, 1, 240));
1237: when others then
1238: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
1239: wip_mti_pub.setMtiError(p_parentID,
1240: null,
1241: substrb('Error in merging: ' || SQLERRM, 1, 240));
1242: end mergeComponents;
1243: