How to SetUp The Receiving Transaction Manager

5 篇文章 0 订阅

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.
***Checked for relevance on 21-Mar-2012*** 

EXECUTABLE:RCVTPO - Receiving Transaction Manager

GOAL

How to set up The Receiving Transaction Manager?. 

SOLUTION

1.  Log in with Sysadmin Responsibility 
Go to: Concurrent -> Manager -> Administer 

a) Verify the STATUS of Receiving Transaction Manager. It should be Up and Running. If it is not up, press RESTART button. Go to Help -> View My Requests, and ensure that this request is completed normally. 

b) Verify the PROCESSES column. Here the ACTUAL and TARGET columns should have the same number. 

c) Go to: Concurrent -> Manager -> Define 
Query for Receiving Transaction Manager. Once you get it, click on the WORKSHIFTS button. Make sure that a Workshift is selected. If not selected, then select one. If needed, you can create a Workshift, by going to Concurrent -> Manager -> Workshifts. 

d) Go back to the Purchasing Responsibility and try to Receive.  It should work. If it still does not work, repeat steps: a-d.

2. Please refer to  Note.404336.1  - How Many Processes Should Be Set For The Receiving Transaction Manager (RTM) to make sure you have enough processes for your enterprise. If the issue is intermittent and typically occurs during higher volume usage of receiving you most likely do not have enough processes running to handle the volume of users. 

REFERENCES

NOTE:404336.1  - How Many Processes Should Be Set For The Receiving Transaction Manager (RTM)?
NOTE:552702.1  - How To Relink and Bounce the Receiving Executables?
To do IPTW by R, you can follow these steps: 1. Import your data into R and create a new variable to indicate treatment status (0 for control, 1 for treatment). 2. Create a new variable to hold the inverse probability weights (IPW). 3. Use R to estimate the propensity score for treatment using logistic regression. This will give you a predicted probability of receiving treatment for each observation. 4. Calculate the IPW for each observation by taking the reciprocal of the propensity score for treated observations, and the reciprocal of (1 - propensity score) for control observations. 5. Apply the IPW to your outcome variable using the survey package in R. Specifically, use the svyglm function to fit a generalized linear model with the IPW as weights. This will give you the weighted estimate of the treatment effect. Here's an example code: ``` # Load the survey package library(survey) # Import your data data <- read.csv("your_data_file.csv") # Create a new variable for treatment status data$treatment <- as.factor(data$treatment) # Estimate the propensity score using logistic regression ps_model <- glm(treatment ~ covariate1 + covariate2 + covariate3, data = data, family = "binomial") propensity_score <- predict(ps_model, data, type = "response") # Calculate the IPW ipw <- ifelse(data$treatment == 1, 1 / propensity_score, 1 / (1 - propensity_score)) # Apply the IPW to your outcome variable outcome_model <- svyglm(outcome ~ treatment, design = svydesign(ids = ~1, weights = ipw, data = data)) summary(outcome_model) ``` Note that this is just a general overview, and the exact steps may vary depending on your specific research question and data. It's important to consult with a statistician or other expert to ensure that you are using the appropriate methods and interpreting the results correctly.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值