How Many Processes Should Be Set For The Receiving Transaction Manager (RTM)
In this Document
| Goal |
| Solution |
| References |
APPLIES TO:
Oracle Inventory Management - Version 10.7 to 12.1.3 [Release 10.7 to 12.1]
Information in this document applies to any platform.
RCVOLTM - Receiving Transaction Manager
GOAL
What Is Correct Number of Processes for Receiving Transaction Manager (RTM)?
SOLUTION
There is no specific value to suggest for #processes; rather, the value must be calculated. It is suggested to set to a minimum of 10 for production or high fidelity environments and increase as needed per details
in this note. In all cases, #processes should be AT LEAST 3.
The information below applies only if one or more of the following receiving transaction activities are processed:
1. Core Applications, Mobile/MSCA and WMS (Receipts, Receiving Transactions, Corrections, Returns, etc) when Profile RCV: Processing Mode=On-line
2. Confirm Receipts
3. Ship Confirm for Internal Orders
4. Inter-Organization Transfers
5. Internet Procurement (iP) Receiving
Navigation to check # Processes:
- System Administrator (or comparable) Responsibility > Concurrent > Manager > Define
- Query for Manager='Receiving Transaction Manager'
- Click Work Shifts button and review value in Processes field
- Change the value using guidelines referenced below
- Save
1. Calculate the max number of concurrent Users for the following activities:
Core Applications receiving activities (Receipts, Receiving Transactions, Corrections, Returns, etc) when Profile RCV: Processing Mode=On-line +
iP Receipts +
Confirm Receipts +
Ship Confirms for Internal Orders +
Creation of InterOrg Transfers +
Receiving activities using Mobile/MSCA and WMS when Profile RCV: Processing Mode=On-line
Divide the Total from above by 3 or 4. This is will be (approximately) the suggested value for # Processes.
2. If using Real Application Cluster (RAC) environment, review Note
1067213.1 (How to Setup Receiving Transaction Manager (RTM) When Using Real Application Cluster (RAC))
3. R12: Set profile 'Concurrent:TM Transport Type' = QUEUE
Example:
There are 500 total Users who perform the transaction activities listed above, but the most Users work at the same time never exceeds 36. For this example, # Processes for Receiving Transaction Manager should be 12 or 9 (36 divided by 3 or 4).
for a few days; repeat process to increase the value if Online transactions time out (APP-FND-00204: RCVOLTM TM-TIMEOUT) or if rcv_transactions_interface records get stuck as ONLINE/PENDING/PENDING.
Please do not set # Processes for Receiving Transaction Manager higher than 75 without first checking with Oracle Support (log Service Request for Inventory / Receiving). Please note that 75 is not a magic number; rather, most Customers have much smaller value
for # Processes. If the value is already 75 or higher and there have been no reported problems, just leave value as is.
How Many Processes Should Be Set For The Receiving Transaction Manager (RTM)的更多相关文章
- Oracle Metalink Notes Collection
INV Note 123456.1 Latest 11i Applications Recommended Patch List Note 568012.1:FAQ: Inventory Standa ...
- How to SetUp The Receiving Transaction Manager
In this Document Goal Solution References APPLIES TO: Oracle Inventory Management - Version: 1 ...
- Oracle E-Business Suite并发处理机制(Current Processing)
2012年写过一篇关于Oracle E-Business Suite并发管理器的文章,回头看之前总结的内容还是比较单薄,很多点没说到,最近在看这块的内容,索性再写一篇稍微完整的文章来. Oracle ...
- WCF学习系列四--【WCF Interview Questions – Part 4 翻译系列】
WCF Interview Questions – Part 4 This WCF service tutorial is part-4 in series of WCF Interview Qu ...
- System Error Codes
很明显,以下的文字来自微软MSDN 链接http://msdn.microsoft.com/en-us/library/windows/desktop/ms681382(v=vs.85).aspx M ...
- Windows Internals学习笔记(二)系统架构
参考资料: 1. <Windows Internals> 2. http://bestcbooks.com 3. Windows Drive Kit 4. Microsoft Window ...
- 【转】What is an entity system framework for game development?
What is an entity system framework for game development? Posted on 19 January 2012 Last week I relea ...
- 【转】Fast Entity Component System
http://entity-systems.wikidot.com/fast-entity-component-system Summary Create a generic System class ...
- Domain Driven Design and Development In Practice--转载
原文地址:http://www.infoq.com/articles/ddd-in-practice Background Domain Driven Design (DDD) is about ma ...
随机推荐
- Sharding-jdbc实现分库分表
首先在pom文件中引入需要的依赖 <dependency> <groupId>io.shardingjdbc</groupId> <artifactId> ...
- Bootstrap3 栅格系统-实例:多余的列(column)将另起一行排列
如果在一个 .row 内包含的列(column)大于12个,包含多余列(column)的元素将作为一个整体单元被另起一行排列. <div class="row"> &l ...
- PGM:部分有向模型之条件随机场与链图模型
http://blog.csdn.net/pipisorry/article/details/52529287 贝叶斯网与马尔可夫网 [PGM:无向图模型:马尔可夫网]中例3.8和例4.8显示,贝叶斯 ...
- Unity 资源管理插件
之所以写这个插件呢,就是为了方便整理项目中的资源文件,我记得之前好像也用了这么一个插件,但是也没去找,还是自己动手写一个吧,需要什么功能就看自己的需求. 在项目的过程中呢,已经写了一个插件来管理材质, ...
- 一个数组保存了N个结构,每个结构保存了一个坐标,结构间的坐标都不相同,请问如何找到指定坐标的结构(除了遍历整个数组,是否有更好的办法)?
#include <iostream> #include <map> using namespace std; #define N 5 typedef struct point ...
- Java安全管理器——SecurityManager
总的来说,Java安全应该包括两方面的内容,一是Java平台(即是Java运行环境)的安全性:二是Java语言开发的应用程序的安全性.由于我们不是Java本身语言的制定开发者,所以第一个安全性不需要我 ...
- intent flags标记
Intent Flag介绍 FLAG_ACTIVITY_BROUGHT_TO_FRONT 这个标志一般不是由程序代码设置的,如在launchMode中设置singleTask模式时系统帮你设定. F ...
- Dialog样式的Activity
效果图: 设置全屏模式: @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInst ...
- Asp.net 在刷新或提交页面后保持滚动条的位置
网页内容在较长时,每次回传刷新页面或提交网页时都会定位到最顶端,非常不利于用户交互. 将Page.MaintainScrollPositionOnPostBack属性值设置为true即可实现刷新后保持 ...
- Android简易实战教程--第八话《短信备份~一》
各种手机助手里面都包含了短信备份这一项.短信的本分主要包含四项:内容body.事件date.方式type.号码address. 短信备份~一.使用一种很笨的方式来保存短信到xml文件中,而且保存在外部 ...