Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1794374
  • 博文数量: 334
  • 博客积分: 11301
  • 博客等级: 上将
  • 技术积分: 3452
  • 用 户 组: 普通用户
  • 注册时间: 2006-10-18 10:19
个人简介

路虽弥,不行不至;事虽少,不做不成。

文章分类

全部博文(334)

文章存档

2013年(4)

2012年(19)

2011年(27)

2010年(71)

2009年(45)

2008年(15)

2007年(84)

2006年(69)

分类: Oracle

2010-03-17 12:20:01

现象:
   在过帐时,提示App-Sqlgl-08046: The batch you selected is either not postable, already selected for posting, or being posted.
   在post form界面batch status显示:funds check or reservation in process;
 
检查:
   1>SOB上有开启budget功能;
 
   2>没有定义预算及预算组织;
 
   3>Fund check level均为none;
 
   4>检查gl_je_batches(BUDGETARY_CONTROL_STATUS为I,表示In process)
 
 
    5>检查gl_bc_packets(STATUS为P,此处表示pending)
 
 
措施:
  严格意义上讲,这个预算功能根本没有被启用.此处的问题给人感觉有点莫名其妙.  在无招的情况下,咱就来个datafix;
 
1>
update gl_bc_packets
 set status_code='S'
where je_batch_id=12709;
 
2>
update gl_je_batches
  set BUDGETARY_CONTROL_STATUS='P'
where je_batch_id=12709;
 
3>Commit;
 
4>重新在POST FORM下过帐,一切OK.
 
 
 
阅读(3163) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2010-03-18 09:28:30

不错,学习/