zoukankan      html  css  js  c++  java
  • SAP CRM中间件Request download的警告信息:message Object is in status Wait

    When you perform request download, the expected behavior is you should see the information message below:

    However, sometimes you may see warning message with status Wait instead.

    How to research this issue by yourself?

    Set a breakpoint on function module SMOF0_INIT_DNL_START which does the main logic of download.
    Here the parameter MAX_PARALLEL_PROCESSES is queried. In my system the value is 5, which means at maximum there are FIVE parallel work process allowed to perform middleware download task.

    Then line 107 ~ 115 is responsible to calculate how many processes are available to operate on current download task. The result is stored in variable gv_open_processes in line 115.

    In my example, the number of free processes is 5 – 5 = 0, as a result the download task could not be started and warning message is raised.

    The solution is, either cancel existing running download task in tcode R3AR3,

    or maintain a larger value for MAX_PARALLEL_PROCESSES in table SMOFPARSFA:

    要获取更多Jerry的原创文章,请关注公众号"汪子熙":

  • 相关阅读:
    js添加和删除class
    GIT回滚master分支到指定tag版本
    table添加正确的样式
    iframe父页面与子页面赋值
    关于日期转换
    vue-cli脚手架安装
    npm手册
    linear-gradient常用实现效果
    【转载】说说JSON和JSONP,也许你会豁然开朗,含jQuery用例
    雷霄骅走了
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13538206.html
Copyright © 2011-2022 走看看