错误和问题解决的成本 (33)

否则假设错误是发生在反复计划上的话,执行脚本cm325424.sql。然后通过表单又一次提交事务处理 。
3.应用完补丁和数据修复后,请通过应用本身又一次提交. 
成本 ->查看事务处理 -> 物料事务处理,从菜单,工具选择全部:工具提交全部的 

否则,能够使用以下的脚本来提交MMT表中的记录: 

update mtl_material_transactions
set costed_flag = \'N\', 
error_code = NULL, 
error_explanation = NULL,
transaction_group_id = NULL, 
transaction_set_id = NULL
where organization_id = &org_id 
and TRANSACTION_ID= &err_txn_id
and costed_flag=\'E\'; 


commit;

 

11.5.10

R12

 
   

传送事务处理到总账-完毕报错

假设传送出错,org_gl_batches 表中总账gl_batch_id会得到时间戳-1* gl_batch_id 。如今问题是当资金检查器出错时系统提交这些数据到表gl_interface 里,连同MTA,WTA ( 更新 gl_batch_id)的数据。所以在表MTA 和 WTA我们会有gl_batch_id 是"XX" 的数据 ,而在表org_gl_batches是"-XX"

 

 

执行并上传以下的输出,用EXCEL文件带有标题的格式:

SELECT * 
FROM org_gl_batches ogb 
where ogb.gl_batch_id < 0 and exists 
( select \'x\' from mtl_transaction_accounts mta 
where mta.gl_batch_id = -1 * ogb.gl_batch_id and mta.organization_id = ogb.organization_id union all select \'x\' from wip_transaction_accounts wta where wta.gl_batch_id = -1 * ogb.gl_batch_id and wta.organization_id = ogb.organization_id )

 

应用 Patch 7026054 更新文件到最新的版本号

CSTVWORB.pls 115.4.115100.7或更高

 

11.5.10.2

 
                       
     组件: WIP                  
   

资源事务处理不是总会更新工作单上的成本工作流程

因为错误的维护成本分类设置,成本人工事务处理没有被记录在EAM工作单表上。如:表wip_eam_period_balances 和 cst_eam_asset_per_balances。

用户在WIP值报表和EAM值中会看到差异

 

 

提供以下脚本的输出

Data collection Bug7447898.txt

 

 

12.0.4

 
   

资源事务处理在表WIP_COST_TXN_INTERFACE 中待定.

在表WCTI中的事务处理。变成没有关联的孤立的数据,是因为当执行成本更新时启动资源成本WORKER,由此对于卡在表WCTI中的全部有关联的完毕的事务处理记录都被记入成本。

 

 

执行并上传以下的输出,用EXCEL文件带有标题的格式:

SELECT Count(*)
FROM wip_cost_txn_interface wcti 
WHERE wcti.entity_type = 4 AND exists ( select \'x\' from mtl_material_transactions mmt2 where mmt2.completion_transaction_id = wcti.completion_transaction_id and mmt2.transaction_source_type_id =5 and mmt2.transaction_action_id in (31,32) and mmt2.costed_flag IS null )

 

应用 Patch 3309813

 

11.5.10.2

 
   

WOLC为全部打开的期间创建WIP_PERIOD_BALANCES

在全部的打开的将来的期间,流式计划的Wip_period_balances记录都存在,即使他们在流式计划关闭日期之外

 

 

执行并上传以下的输出。用EXCEL文件带有标题的格式:

select * 
from wip_period_balances b 
where b.organization_id = &org_id and exists (select 1 from wip_entities e,org_acct_periods o where e.wip_entity_id = b.wip_entity_id and o.organization_id = e.organization_id and o.acct_period_id = b.acct_period_id and o.period_start_date > SYSDATE and e.entity_type = 4) order by wip_entity_id, acct_period_id desc

 

应用 Patch 5600760

 

11.5.10.2

 
   

不能保存移动事务处理

客户有一些物料。未定义成本。即使是成本启用的物料,这好像是一个PLM bug.

 

 

执行并上传以下的输出。用EXCEL文件带有标题的格式:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zwxjys.html