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 ...
随机推荐
- vue关于数组使用的坑
关于数组使用的坑 https://vuejs.org/v2/guide/list.html#Caveats 简言之, 不要使用a[i] = v 的形式, 用a.splice(i, 1, v), 或Vu ...
- 数学API Math.atan() 和Math.atan2() 三角函数复习
今天在学习贝塞尔曲线看到需要结合三角函数 以及两个不认识的Api :API Math.atan() 和Math.atan2() 先看下三角函数 正切函数图:(180为一个周期 即45=45+180) ...
- [Angular2]eclipse中angular2开发环境的搭建
本文作者:苏生米沿 本文地址:http://blog.csdn.net/sushengmiyan 环境准备 1.eclipse neon 2.网络连接 插件地址 eclipse的插件市场地址: htt ...
- 代理IP爬取,计算,发放自动化系统
IoC Python端 MySQL端 PHP端 怎么使用 这学期有一门课叫<物联网与云计算>,于是我就做了一个大作业,实现的是对代理IP的爬取,计算推荐,发放给用户等任务的的自动化系统.由 ...
- android面试手册
1. Android dvm的进程和Linux的进程, 应用程序的进程是否为同一个概念 DVM指dalivk的虚拟机.每一个Android应用程序都在它自己的进程中运行,都拥有一个独立的Dalvik虚 ...
- Linux之dmesg命令
功能说明:显示内核缓冲区系统控制信息的工具 ,比如系统在启动时的信息会写到/var/log/中.语 法:dmesg [-cn][-s <缓冲区大小>] 补充说明:kernel会将开机信息存 ...
- 【Netty源码分析】Reactor线程模型
1. 背景 1.1. Java线程模型的演进 1.1.1. 单线程 时间回到十几年前,那时主流的CPU都还是单核(除了商用高性能的小机),CPU的核心频率是机器最重要的指标之一. 在Java领域当时比 ...
- Android中三种计时器Timer、CountDownTimer、handler.postDelayed的使用
在android开发中,我们常常需要用到计时器,倒计时多少秒后再执行相应的功能,下面我就分别来讲讲这三种常用的计时的方法. 一.CountDownTimer 该类是个抽象类,如果要使用这个类中的方法, ...
- 【JavaEE WEB 开发】Tomcat 详解 Servlet 入门
转载请注明出处 : http://blog.csdn.net/shulianghan/article/details/47146817 一. Tomcat 下载安装配置 1. Tomcat 下载 T ...
- Linux/Unix--设备类型
在Linux以及所有的Unix系统中,设备被分为以下三种类型: 块设备 字符设备 网络设备 块设备通常写为 blkdev ,它是可以寻址的 ...