DBA Data[Home] [Help]

APPS.WIP_BOMROUTINGUTIL_PVT dependencies on FND_MESSAGE

Line 825: fnd_message.set_name('WIP', 'WIP_COMP_DUP_OP_ONE');

821: and wro.wip_entity_id = p_wipEntityID
822: and wro.operation_seq_num = l_wro_op;
823: else
824: x_returnStatus := fnd_api.g_ret_sts_error;
825: fnd_message.set_name('WIP', 'WIP_COMP_DUP_OP_ONE');
826: fnd_msg_pub.add;
827: if (l_logLevel <= wip_constants.full_logging) then
828: wip_logger.log(p_msg => 'Item ' || l_compTbl(l_count).inventory_item_id ||
829: ' has duplicates in op 1, failed explosion!',

Line 1196: fnd_message.set_name('WIP', 'WIP_LOWER_JOB_QTY');

1192: /* add for Bug 8413228 (FP of 8392916). If both update statements have no rows to update, that means
1193: that the quantity was lowered below what was already past queue of the first op.
1194: This is an error. */
1195: if (SQL%NOTFOUND and l_updateFlag = 0) then
1196: fnd_message.set_name('WIP', 'WIP_LOWER_JOB_QTY');
1197: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
1198: x_errorMsg := fnd_message.get;
1199: return;
1200: end if;

Line 1198: x_errorMsg := fnd_message.get;

1194: This is an error. */
1195: if (SQL%NOTFOUND and l_updateFlag = 0) then
1196: fnd_message.set_name('WIP', 'WIP_LOWER_JOB_QTY');
1197: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
1198: x_errorMsg := fnd_message.get;
1199: return;
1200: end if;
1201:
1202: end if;