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 563: wip_mti_pub.setMtiError(p_txnInterfaceID => l_interfaceID,

559: else
560: return fnd_api.g_ret_sts_success;
561: end if;
562:
563: wip_mti_pub.setMtiError(p_txnInterfaceID => l_interfaceID,
564: p_errCode => null,
565: p_msgData => fnd_message.get);
566: return fnd_api.g_ret_sts_error;
567: exception

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

567: exception
568: when others then
569: fnd_message.set_name('WIP', 'WIP_ERROR_FLOW_VALIDATION');
570: fnd_message.set_token('ENTITY1', l_scheduleNumber);
571: wip_mti_pub.setMtiError(p_txnInterfaceID => l_interfaceID,
572: p_errCode => null,
573: p_msgData => fnd_message.get);
574: return fnd_api.g_ret_sts_error;
575: end validateInterfaceCompletion;

Line 614: wip_mti_pub.setMtiError(p_parentID,

610: and nvl(substitution_type_id, -1) not in (1, 2, 3, 4);
611:
612: if ( l_result > 0 ) then
613: fnd_message.set_name('WIP', 'WIP_ERROR_SUBST_TYPE');
614: wip_mti_pub.setMtiError(p_parentID,
615: 'substitution_type_id',
616: substrb(fnd_message.get, 1, 240));
617: return fnd_api.g_ret_sts_error;
618: end if;

Line 629: wip_mti_pub.setMtiError(p_parentID,

625: and nvl(flow_schedule, 'Y') <> 'Y';
626:
627: if ( l_result > 0 ) then
628: fnd_message.set_name('WIP', 'WIP_FLOW_FLAG_ERROR');
629: wip_mti_pub.setMtiError(p_parentID,
630: 'flow_schedule',
631: substrb(fnd_message.get, 1, 240));
632: return fnd_api.g_ret_sts_error;
633: end if;

Line 668: wip_mti_pub.setMtiError(p_parentID,

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

Line 696: wip_mti_pub.setMtiError(p_parentID,

692: l_errMsg := 'Original item id ' || to_char(sub_rec.inventory_item_id) ||
693: ' at op seq ' || to_char(sub_rec.operation_seq_num) || '.';
694: fnd_message.set_token('ENTITY1', l_errMsg);
695: fnd_message.set_token('ENTITY2', 'Substitution Component');
696: wip_mti_pub.setMtiError(p_parentID,
697: 'substitution_item_id',
698: substrb(fnd_message.get, 1, 240));
699: return fnd_api.g_ret_sts_error;
700: end if;

Line 1038: wip_mti_pub.setMtiError(p_parentID,

1034: end if;
1035:
1036: fnd_message.set_name('FND', 'FND_GENERIC_MESSAGE');
1037: fnd_message.set_token('MESSAGE', l_errMsg);
1038: wip_mti_pub.setMtiError(p_parentID,
1039: null,
1040: substrb(fnd_message.get, 1, 240));
1041:
1042: when others then

Line 1058: wip_mti_pub.setMtiError(p_parentID,

1054: x_returnStatus => l_returnStatus); --discard logging return status
1055: end if;
1056: fnd_message.set_name('WIP', 'WIP_ERROR_FLOW_BKFLUSH');
1057: fnd_message.set_token('ENTITY1', p_parentID);
1058: wip_mti_pub.setMtiError(p_parentID,
1059: null,
1060: substrb(fnd_message.get, 1, 240));
1061: end explodeRequirementsToMTI;
1062:

Line 1265: wip_mti_pub.setMtiError(p_parentID,

1261:
1262: exception
1263: when merge_exception then
1264: x_returnStatus := fnd_api.g_ret_sts_error;
1265: wip_mti_pub.setMtiError(p_parentID,
1266: null,
1267: substrb(fnd_message.get, 1, 240));
1268: when others then
1269: x_returnStatus := fnd_api.g_ret_sts_unexp_error;

Line 1270: wip_mti_pub.setMtiError(p_parentID,

1266: null,
1267: substrb(fnd_message.get, 1, 240));
1268: when others then
1269: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
1270: wip_mti_pub.setMtiError(p_parentID,
1271: null,
1272: substrb('Error in merging: ' || SQLERRM, 1, 240));
1273: end mergeComponents;
1274: