(FAQ)固定资产变更单修改或审核时均提示不在当前期间
金蝶云社区-金蝶云社区
金蝶云社区
0人赞赏了该文章 1,131次浏览 未经作者许可,禁止转载编辑于2015年03月02日 00:00:00
【问题】: (FAQ)固定资产变更单修改或审核时均提示不在当前期间
版本: 7.5
模块: 固定资产
【答复】:
原因:因误选了变动方式为“年初数调整”,导致此张变更单所在期间为上年度的最后一期间; 1、后台查询定位此变更单记录 Select * from t_fa_fachangebill where fcompanyid=(select fid from t_org_company where fnumber=’公司编码’) and fnumber=’变更单编码’ 2、修改此变更单的所在期间 update t_fa_fachangebill set fperiodid=(select fid from t_bd_period where fnumber=系统当前期间) where fcompanyid=(select fid from t_org_company where fnumber='公司编码') and fnumber='变更单编码' 例如: Select * from t_fa_fachangebill where fcompanyid=(select fid from t_org_company where fnumber='01.02.03') and fnumber='TEST-CHG-0001' update t_fa_fachangebill set fperiodid=(select fid from t_bd_period where fnumber=201405) where fcompanyid=(select fid from t_org_company where fnumber='01.02.03') and fnumber='TEST-CHG-0001'