金蝶K3 wise 反结账反过账启用数据库SQL语句执行,无需小工具启用
[全站通告] 想快速节省您的时间并可接受付费的朋友,可扫右边二维码加博主微信-非诚勿扰!
有时工具系统不兼容或者报错等等,不方便使用小工具,可以使用以下语句执行对应数据库
执行语句前,请备份账套!
金蝶K3 wise 反结账反过账启用SQL语句查看
select * from t_systemprofile where FCategory=’GL’ and FKey=’StartNewAcctStd’
启用反结账
delete from t_systemprofile where FCategory=’GL’ and FKey=’StartNewAcctStd’
insert into t_systemprofile(FCategory,FKey,FValue)
values(‘GL’,’StartNewAcctStd’,1)
关闭反结账
delete from t_systemprofile where FCategory=’GL’ and FKey=’StartNewAcctStd’
insert into t_systemprofile(FCategory,FKey,FValue)
values(‘GL’,’StartNewAcctStd’,0)