首页 > 其他分享 >Message No. M7036

Message No. M7036

时间:2024-04-10 16:33:18浏览次数:17  
标签:confirmation GR No MIGO M7036 确认 Confirmation CONFIRMATION Message

调试MIGO进程我们注意到系统将读取确认并获得sy-subrc = 1

Debugging MIGO process we notice that the system is going to read the confirmation and obtaines sy-subrc = 1

由于确认控制,GR 似乎未进行。

It seems that the GR is not carried out due to the Confirmation Control. 

由于确认控制在两个 PO 中均已告知

As the Confirmation Control is informed in both POs

系统运行 FM 来检查确认(ME_CONFIRMATION_READ_GR),并且该函数不返回任何确认。

 the system runs a FM to check the confirmations (ME_CONFIRMATION_READ_GR) and this function is not returning any confirmation.

由于尚未发送/接收确认,因此无法完成 GR。

As the confirmation has not been sent/received yet the GR cannot be done.

标签:confirmation,GR,No,MIGO,M7036,确认,Confirmation,CONFIRMATION,Message
From: https://blog.csdn.net/m0_73349720/article/details/137583502

相关文章

  • nodejs + ts + nodemon + webpack 代码热更新
    依赖:npminodemonwebpackwebpack-clits-loadertypescript//webpack.config.jsimport{defaultaswebpack}from"webpack";importnodeExternalsfrom"webpack-node-externals";constplugins=[newCleanWebpackPlugin({dangero......
  • 将service类型由"ClusterIP"改为"NodePort"无法使有nodeip+端口访问服务解决方法
    1.背景.我打算在K8S集群部署一套Prometheus监控系统,以监控系统和各应用的各项指标,如资源、性能及自定义监控指标,具体部署方案和细节就不和大家详细说了,后面再和大家分享,这次先说我遇到问题。在Prometheus各组件都部署成功时候,我发现grafana的service的类型为"ClusterIP",这意味......
  • P5607 [Ynoi2013] 无力回天 NOI2017
    [Ynoi2013]无力回天NOI2017-洛谷看到题目可以想到线性基线性基可以做到\(O(\logA)\)加入,\(O(\logA)\)查询,\(O(\log^2A)\)合并考虑直接暴力的用线段树维护每个节点的线性基,可以做到\(O(n\logn\log^2A)\)但有区间修改?差分转单点修,发现线性基\(a_{[l......
  • CF1748E Yet Another Array Counting Problem の Solution
    Link有些人还是啥都不会。看到题目应该能想到这是笛卡尔树的性质,因为每一对\((l,r)\)都满足最左端最大值位置相同,所以说明在笛卡尔树上,每一对点的lca相同,说明\(a\)和\(b\)序列的笛卡尔树相同。我们以下标为键,\(a_i\)为值建立大根笛卡尔树,现在题目就转换成在这个树上填......
  • [Vue warn]: Do not use built-in or reserved HTML elements as component id: line
    [Vuewarn]:Donotusebuilt-inorreservedHTMLelementsascomponentid:line这个报错是Vue警告不要使用内置的或者保留的HTML元素作为组件的id。在Vue中,组件的id应该是唯一的,并且不应该与HTML元素的标签名相同。比如说,如果有一个组件定义如下:<template><......
  • 使用YOLO V8-pose 报错:AttributeError: module ‘torch‘ has no attribute ‘_six‘
    上述为按照yolov8pose官方教程写的代码。使用了python3.7,以及对应的torch版本如下后,报错。AttributeError:module‘torch‘hasnoattribute‘_six‘ 解决方法:更换了虚拟环境,重新安装yltralytics.新环境: 现在可以正常运行:......
  • Python中global和nonlocal关键字的妙用:变量管理技巧
        概要在Python中编写函数时,经常会遇到需要在函数内部访问和修改外部变量的情况。在这种情况下,我们可以使用 global 和 nonlocal 关键字来声明变量的作用域,以便正确地访问和修改这些变量。本文将深入探讨 global 和 nonlocal 的用法,包括详细的示例代码和......
  • 使用ultralytics导入YOLO报错:libcublas.so.11: symbol cublasLtGetStatusString versi
    1.问题:使用yolo的时候,fromultralyticsimportYOLO.然后报错:libcublas.so.11:symbolcublasLtGetStatusStringversionlibcublasLt.so.11notdefinedinfilelibcublasLt.so.11withlinktimereference2.解决方案:pipuninstallnvidia_cublas_cu11然后就会运行......
  • 【Python系列】Jupyter Notebook 中执行 Shell 脚本的方法
    ......
  • 2023 NIPS A*Net: A Scalable Path-based Reasoning Approachfor Knowledge Graphs 知
    文章链接原文:b9e98316cb72fee82cc1160da5810abc-Paper-Conference.pdf(neurips.cc)代码:https://github.com/DeepGraphLearning/AStarNet一、动机与贡献为了使路径推理方法适用于大规模图上的归纳推理任务,文章改进了路径信息获取的方法。路径推理方法较好的归纳推理能力......