欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SAP CRM中间件Request download的警告信息:message Object is in status Wait crmSAPSAP云平台SAP Cloud PlatformSAP成都研究院 

程序员文章站 2022-06-14 22:50:17
...

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

 

SAP CRM中间件Request download的警告信息:message Object is in status Wait
            
    
    
        crmSAPSAP云平台SAP Cloud PlatformSAP成都研究院 

 

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.

 

SAP CRM中间件Request download的警告信息:message Object is in status Wait
            
    
    
        crmSAPSAP云平台SAP Cloud PlatformSAP成都研究院 

 

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.

 

SAP CRM中间件Request download的警告信息:message Object is in status Wait
            
    
    
        crmSAPSAP云平台SAP Cloud PlatformSAP成都研究院 

 

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.

 

SAP CRM中间件Request download的警告信息:message Object is in status Wait
            
    
    
        crmSAPSAP云平台SAP Cloud PlatformSAP成都研究院 

 

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

 

SAP CRM中间件Request download的警告信息:message Object is in status Wait
            
    
    
        crmSAPSAP云平台SAP Cloud PlatformSAP成都研究院 

 

or maintain a larger value for MAX_PARALLEL_PROCESSES in table SMOFPARSFA:

 

SAP CRM中间件Request download的警告信息:message Object is in status Wait
            
    
    
        crmSAPSAP云平台SAP Cloud PlatformSAP成都研究院 

 

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

SAP CRM中间件Request download的警告信息:message Object is in status Wait
            
    
    
        crmSAPSAP云平台SAP Cloud PlatformSAP成都研究院