DBA Data[Home] [Help]

APPS.WMA_FLOW dependencies on FND_API

Line 1017: x_returnStatus := fnd_api.g_ret_sts_success;

1013:
1014: l_wfs_info wfs_info_cursor%ROWTYPE := null;
1015:
1016: begin
1017: x_returnStatus := fnd_api.g_ret_sts_success;
1018:
1019: if (l_logLevel <= wip_constants.trace_logging) then
1020: l_params(1).paramName := 'not printing params';
1021: l_params(1).paramValue := ' ';

Line 1073: if ( x_returnStatus <> fnd_api.g_ret_sts_success ) then

1069: p_txnFlag => true, -- fix for bug4538135 - ER 4369064
1070: p_defaultPushSubinv => 'Y', --fox for bug 5358603
1071: x_compTbl => l_compTbl,
1072: x_returnStatus => x_returnStatus);
1073: if ( x_returnStatus <> fnd_api.g_ret_sts_success ) then
1074: raise fnd_api.g_exc_unexpected_error;
1075: end if;
1076:
1077: if (l_logLevel <= wip_constants.full_logging) then

Line 1074: raise fnd_api.g_exc_unexpected_error;

1070: p_defaultPushSubinv => 'Y', --fox for bug 5358603
1071: x_compTbl => l_compTbl,
1072: x_returnStatus => x_returnStatus);
1073: if ( x_returnStatus <> fnd_api.g_ret_sts_success ) then
1074: raise fnd_api.g_exc_unexpected_error;
1075: end if;
1076:
1077: if (l_logLevel <= wip_constants.full_logging) then
1078: wip_logger.log('Done with explosion of components',l_returnStatus);

Line 1125: p_initMsgList => fnd_api.g_false,

1121:
1122: wip_autoLotProc_priv.deriveLots(x_compLots => x_compInfo,
1123: p_orgID => p_orgID,
1124: p_wipEntityID => p_wipEntityID,
1125: p_initMsgList => fnd_api.g_false,
1126: p_endDebug => fnd_api.g_true,
1127: p_destroyTrees => fnd_api.g_true,
1128: p_treeMode => inv_quantity_tree_pvt.g_reservation_mode,
1129: p_treeSrcName => null,

Line 1126: p_endDebug => fnd_api.g_true,

1122: wip_autoLotProc_priv.deriveLots(x_compLots => x_compInfo,
1123: p_orgID => p_orgID,
1124: p_wipEntityID => p_wipEntityID,
1125: p_initMsgList => fnd_api.g_false,
1126: p_endDebug => fnd_api.g_true,
1127: p_destroyTrees => fnd_api.g_true,
1128: p_treeMode => inv_quantity_tree_pvt.g_reservation_mode,
1129: p_treeSrcName => null,
1130: x_returnStatus => x_returnStatus);

Line 1127: p_destroyTrees => fnd_api.g_true,

1123: p_orgID => p_orgID,
1124: p_wipEntityID => p_wipEntityID,
1125: p_initMsgList => fnd_api.g_false,
1126: p_endDebug => fnd_api.g_true,
1127: p_destroyTrees => fnd_api.g_true,
1128: p_treeMode => inv_quantity_tree_pvt.g_reservation_mode,
1129: p_treeSrcName => null,
1130: x_returnStatus => x_returnStatus);
1131: if ( x_returnStatus = fnd_api.g_ret_sts_unexp_error ) then

Line 1131: if ( x_returnStatus = fnd_api.g_ret_sts_unexp_error ) then

1127: p_destroyTrees => fnd_api.g_true,
1128: p_treeMode => inv_quantity_tree_pvt.g_reservation_mode,
1129: p_treeSrcName => null,
1130: x_returnStatus => x_returnStatus);
1131: if ( x_returnStatus = fnd_api.g_ret_sts_unexp_error ) then
1132: raise fnd_api.g_exc_unexpected_error;
1133: end if;
1134:
1135: if (l_logLevel <= wip_constants.full_logging) then

Line 1132: raise fnd_api.g_exc_unexpected_error;

1128: p_treeMode => inv_quantity_tree_pvt.g_reservation_mode,
1129: p_treeSrcName => null,
1130: x_returnStatus => x_returnStatus);
1131: if ( x_returnStatus = fnd_api.g_ret_sts_unexp_error ) then
1132: raise fnd_api.g_exc_unexpected_error;
1133: end if;
1134:
1135: if (l_logLevel <= wip_constants.full_logging) then
1136: wip_logger.log('Done with lot derivation',l_returnStatus);

Line 1166: when fnd_api.g_exc_unexpected_error then

1162: x_returnStatus => l_returnStatus);
1163: end if;
1164:
1165: exception
1166: when fnd_api.g_exc_unexpected_error then
1167: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
1168: x_errMessage := fnd_msg_pub.get(p_encoded => 'F');
1169: if (l_logLevel <= wip_constants.trace_logging) then
1170: wip_logger.exitPoint(p_procName => 'wma_flow.explodeBOMAndDerive',

Line 1167: x_returnStatus := fnd_api.g_ret_sts_unexp_error;

1163: end if;
1164:
1165: exception
1166: when fnd_api.g_exc_unexpected_error then
1167: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
1168: x_errMessage := fnd_msg_pub.get(p_encoded => 'F');
1169: if (l_logLevel <= wip_constants.trace_logging) then
1170: wip_logger.exitPoint(p_procName => 'wma_flow.explodeBOMAndDerive',
1171: p_procReturnStatus => x_returnStatus,

Line 1179: x_returnStatus := fnd_api.g_ret_sts_unexp_error;

1175: rollback;
1176:
1177:
1178: when others then
1179: x_returnStatus := fnd_api.g_ret_sts_unexp_error;
1180: x_errMessage := SQLERRM;
1181: if (l_logLevel <= wip_constants.trace_logging) then
1182: wip_logger.exitPoint(p_procName => 'wma_flow.explodeBOMAndDerive',
1183: p_procReturnStatus => x_returnStatus,