用友软件首页

用友u8软件银行对帐界面,按“检查”按钮提示不平_0

2015-1-8 0:0:0 用友U8编辑

用友u8软件银行对帐界面,按“检查”按钮提示不平_0

银行对帐界面,按“检查”按钮提示不平

银行对帐界面,按“检查”按钮提示不平

原因分析:gl_accvouch表中存在10203科目一条已经核销的记录,且该记录没有对帐标志(IFLAGBANK),而在rp_bankrecp对帐单表中并没有任何已核销的记录,所以gl_accvouch表中该记录的BDELETE核销标志是错误的,所以导致检查不平衡。另外,系统是根据对帐单收发合计差额与银行帐收支差额进行对比的。问题解答:参照执行如下脚本进行修复: update gl_accvouch set bdelete=0,iflagbank=13 where ccode = '10203' and i_id=19010 修改前请务必做好数据备份!

如果您的问题还没有解决,可以到 T+搜索>>上找一下答案

分享到:

微博关注

bj用友软件

最新信息

用友u8软件收银员报表查询提示截断字符串

用友u8软件收银员报表查询提示截断字符串收银员报表查询提示截断字符串

收银员报表查询提示截断字符串原因分析:操作员名称超长导致不能查询,实际名称为:刘江海(餐饮)问题解答:解决方法:方法一:将操作员名称控制在6个字符以内。方法二:在查询分析器中执行如下脚本SET QUOTED_IDENTIFIER ON GOSET ANSI_NULLS ON GOALTER PROCEDURE [sprecordcash] (@begindate datetime ='2008-11-29',@enddate datetime='2008-11-29',@pk_record_cash varchar(16)='',@bizcode varchar(32)='01',@corp varchar(32)='1001')asdeclare @kssj datetime, @jssj datetime, @paySql varchar(1000), @restype varchar(1000), @Sql varchar(8000), @begin varchar(20), @end varchar(20)create table #Datas( pk varchar(40) null, pk_record_cash varchar(40) null, begintime varchar(20) null, endtime varchar(20) null, consname varchar(120) null, conscode varchar(60) null, 金额 float null, 笔数 int null, discount float null, premoney float null, dismant float null, accmoney float null, serfeemoney float null, othmoney float null, invaddmoney float null, resmoney float null, invmoney float null) if (@corp is null) or (@corp='') set @corp='%' else set @corp=@corp+'%' if (@bizcode is null) or (@bizcode='') set @bizcode='%' else set @bizcode=@bizcode+'%' if @bizcode='%' begin set @kssj=' 9:00:01' set @jssj=' 9:00:00' end else begin set @kssj=(select top 1 min(Convert(char(10),fromtime,108)) from bd_biztype where bizcode like @bizcode and pk_corp like @corp) set @jssj=(select top 1 max(Convert(char(10),totime,108)) from bd_biztype where bizcode like @bizcode and pk_corp like @corp and fromtime>totime) if @jssj is null set @jssj=(select top 1 max(Convert(char(10),totime,108)) from bd_biztype where bizcode like @bizcode and pk_corp like @corp and fromtime<totime) end if @kssj<@jssj begin set @begin=Convert(char(10),@begindate,112)+@kssj set @end=Convert(char(10),@enddate,112)+@jssj end else begin set @begin=Convert(char(10),@begindate,112)+@kssj set @end=Convert(char(10),@enddate+1,112)+@jssj end if (@begin is null) or (@begin='') set @begin=Convert(char(10),@begindate,112)+' 00:00:00' if (@end is null) or (@end='') set @end=Convert(char(10),@enddate,112)+' 23:59:59' if (@pk_record_cash is null) or (@pk_record_cash='') set @pk_record_cash='%' insert #Datas(pk,pk_record_cash,consname,conscode,金额,笔数) select a.pk_record_cash,isnull(b.name,'未知'),isnull(d.paymentname,'未知'),isnull(c.paymentcode,'zz'),sum(isnull(c.money,0)),count(a.pk_cash) from so_shopping a left join SYSTEM_EIP..pub_operator b on b.operatorid=a.pk_record_cash left join so_shopping_b c on c.pk_cash=a.pk_cash left join bd_payment d on d.paymentcode=c.paymentcode and d.pk_corp=a.pk_corp where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and a.pk_record_cash like @pk_record_cash group by a.pk_record_cash,isnull(b.name,'未知'),d.paymentname,c.paymentcode insert #Datas(pk,pk_record_cash,consname,conscode,金额,笔数) select pk,isnull(pk_record_cash,'未知'),'合计','zzzzzz',sum(isnull(金额,0)),sum(isnull(笔数,0)) from #Datas group by pk,isnull(pk_record_cash,'未知') update #Datas set discount=( select sum(isnull(discount,0)) from so_shopping a where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and pk_record_cash=#Datas.pk ) update #Datas set premoney=( select sum(isnull(premoney,0)) from so_shopping a where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and pk_record_cash=#Datas.pk ) update #Datas set dismant=( select sum(isnull(dismant,0)) from so_shopping a where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and pk_record_cash=#Datas.pk ) update #Datas set accmoney=( select sum(isnull(accmoney,0)) from so_shopping a where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and pk_record_cash=#Datas.pk ) update #Datas set serfeemoney=( select sum(isnull(serfeemoney,0)) from so_shopping a where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and pk_record_cash=#Datas.pk ) update #Datas set othmoney=( select sum(isnull(othmoney,0)) from so_shopping a where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and pk_record_cash=#Datas.pk ) update #Datas set invaddmoney=( select sum(isnull(invaddmoney,0)) from so_shopping a where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and pk_record_cash=#Datas.pk ) update #Datas set resmoney=( select sum(isnull(resmoney,0)) from so_shopping a where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and pk_record_cash=#Datas.pk ) update #Datas set invmoney=( select sum(isnull(invmoney,0)) from so_shopping a where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and pk_record_cash=#Datas.pk ) if convert(char(10),@begindate,112)=convert(char(10),@enddate,112) begin update #Datas set begintime=(select top 1 convert(char(8),cashtime,108) from so_shopping a where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and pk_record_cash=#Datas.pk order by cashtime) update #Datas set endtime=(select top 1 convert(char(8),cashtime,108) from so_shopping a where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and pk_record_cash=#Datas.pk order by cashtime desc) end else begin update #Datas set begintime=(select top 1 convert(char(10),cashtime,111) from so_shopping a where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and pk_record_cash=#Datas.pk order by cashtime) update #Datas set endtime=(select top 1 convert(char(10),cashtime,111) from so_shopping a where isnull(a.bizcode,'') like @bizcode and a.cashtime between @begin and @end and isnull(a.pk_corp,'') like @corp and pk_record_cash=#Datas.pk order by cashtime desc) end if @@rowcount>0 begin print'0' exec AnalyData '#Datas','pk,pk_record_cash,begintime,endtime, discount,premoney,dismant,accmoney,serfeemoney,othmoney,invaddmoney,resmoney,invmoney', 'consname','金额,笔数','conscode','pk_record_cash',1,'desc','sum' end else begin select * from #Datas print '1' end drop table #DatasGOSET QUOTED_IDENTIFIER OFF GOSET ANSI_NULLS ON GO

我安装了G6-E财务系统标准包11。0 -发生没有行政单位的新的制度,我打什么补丁,在哪里下载

我安装了G6-E财务系统标准包11。0 -发生没有行政单位的新的制度,我打什么补丁,在哪里下载 我安装了G6-E财务系统标准包11。0 发生没有行政单位的新的制度,我打什么补丁,在哪里下载[]

http://service.chanjet.com/cha ... oduct
@qq37724861:都是T6还有U6,没有见到G6-E
@千里eUv:继续下拉,有的!
@qq392629945:只有6页,就没找到
@千里eUv:产品线是选择T6吧
@千里eUv:之前是在T6里 我刚才看了下 确实没有G6的补丁,这个你问下CJT人员吧
@千里eUv:在这里
http://service.chanjet.com/pro ... 24615

财务管理

  • 用友软件U8的常用摘要如何设置

    用友软件U8的常用摘要如何设置

    用友软件U8的常用摘要如何设置用友软件(U8)的常用摘要问题,如何设置

    点填制凭证-点摘要栏-点摘要栏右下角的小按键会出现“常用摘要”对话框,在这里能设置常用摘要会计主管的ID肯定能设置


  • 安装数据库时提示:以前的某个程序安装以在安装的计算机上创建挂起操作,安装程序之前必须先重起计算机。

    安装数据库时提示:以前的某个程序安装以在安装的计算机上创建挂起操作,安装程序之前必须先重起计算机。

    对应版本:用友U其他
    对应产品线:其他
    对应模块:其他模块

    问题现象:安装数据库时提示:以前的某个程序安装以在安装的计算机上创建挂起操作,安装程序之前必须先重起计算机。无论怎么重启计算机,一直弹出这个对话框。
    问题原因:注册表的有写入,删除就好。
    解决方案:打开注册表KEY_LOCAL_MACHINE--SYSTEM--ControlSet001--Control--SessionManager--PendingFileRenameOptions--把这个键值删除

用友论坛

  • 用友U8软件用友财务软件年末结转的具体操作步骤

    用友U8软件用友财务软件年末结转的具体操作步骤

    用友U8软件用友财务软件年末结转的具体操作步骤用友财务软件年末结转的具体操作步骤

    用友财务软件年末结转的具体操作步骤用友财务软件年末结转的实施步骤
    一、帐套数据备份
    第一步:进入系统管理
    1、开始—程序—用友财务—系统服务—系统管理;
    2、点击任务栏上的系统管理(U8与财务通不需要);
    3、点击菜单中的“系统”—“注册”(选择系统管理员Admin)—“确定”。
    第二步:备份帐套
    1、点击菜单“帐套”—“输出”—选择需要备份的帐套号—“确认”—选择备份帐套的路径—“确认”—“确定”注意:每一个帐套都必须备份;2、点击菜单中的“系统”—“退出”。
    二、建立新年度会计帐(前提:将本年度12月份结帐)
    第一步:进入系统管理1、开始—程序—用友财务—系统服务—系统管理;
    2、点击任务栏上的系统管理(U8与财务通不需要);
    3、点击菜单中的“系统”—“注册”(输入需建立新年度帐的帐套主管名称或代码)—选择“帐套号”—选择“会计年度”(2003)—“确定”。
    第二步:建立下一年度会计帐点击菜单中的“年度帐”—“建立”—“确认”—提示:“确定建立[2004]年度帐吗?”—选择“是”—提示:“建立年度:[2004]成功”—点击“确定”。
    第三步:结转上年数据1、点击菜单中的“系统”—“注销”;2、点击菜单中的“系统”—“注册”(选择需结转新年度帐的帐套主管)—选择“帐套号”—选择“会计年度[2004]”—“确定”;3、点击菜单中的“年度帐”—“结转上年数据”—“总帐系统结转”—“确认”—“退出”注意:如贵单位有其他模块存在且模块之间互相传递数据,在这里则应先结转上年其他模块数据,方法同第三步中的第“3”小步,仅结转模块改变。
    第四步:退出1、菜单中的“系统”—“注销”;2、点击菜单中的“系统”—“注册”(选择系统管理员Admin)—“确定”;3、点击菜单中的“系统”—“退出”。注意:进入[2004]总帐时,会计年度必须更改为2004年,操作日期更改为2004年1月1日。在新的年度可以调整会计科目和期初余额,若需查看以前年度数据,则“会计年度”各“操作日期”应为需查看数据的年度。


  • 用友 如何将上年末余额转到新年年初?可以结转几次?

    用友 如何将上年末余额转到新年年初?可以结转几次?

    用友 如何将上年末余额转到新年年初?可以结转几次?用友 如何将上年末余额转到新年年初?可以结转几次?

    新年度科目体系调整完成后,即可运行“总账?期初余额?开账?结转上年”,上年度年末余额即可转入到新年度年初,可以多次运行 “结转上年”。
    注意:运行“结转上年“时,应确保新年度的会计凭证全部位于未记账状态。


  • 最新文章排行
  • 热门文章排行

知识库

  • 记账是什么意思记账是什么意思

    记账是什么意思记账是什么意思

    记账是什么意思记账是什么意思 记账是什么意思记账是什么意思[]

    业务记账 是指库存业务 存货成本记账。
    总账记账,是指凭证记账。
    @畅捷支持侯椿寳1976: 记账是有什么作用?
    记账确立 财务数据的正式生效。

  • 科目设置中日记账对方科目按照账号设置时只能选择银行账号么,现金账号不能选择

    科目设置中日记账对方科目按照账号设置时只能选择银行账号么,现金账号不能选择

    科目设置中日记账对方科目按照账号设置时只能选择银行账号么,现金账号不能选择 科目设置中日记账对方科目按照账号设置时只能选择银行账号么,现金账号不能选择[]

    补丁解决了不能设置现金帐号的问题,请备份账套到社区~产品更新下载补丁执行。
    @服务社区刘小艳:已经更新了最新补丁,但是到账套里还是不能设置
    @服务社区刘小艳:
    @科航019:红色账套点击升级。

关于我们 | 公司动态 | 获奖记录 | 联系我们 | 招聘信息 | 用友产品中心 | 用友云基地
Copyright ©  www.kuaiji66.com  All Rights Reserved 天龙瑞德
京ICP备11046295号-1 技术支持 北京天龙瑞德信息技术有限责任公司   北京海淀上地十街辉煌国际大厦3号楼6层 总机:010-59798025   售后:4009908488
北京天龙瑞德信息技术有限责任公司