用友u8软件生成销售出库单报错
来源:会计实战基地
发表时间:2020-12-18 09:42:50
作者:木槿老师
阅读量:893
生成销售出库单报错原因分析:经检查出库单单据号带有特殊符号‘-’和‘.’所致,请在查询分析器里选择对应帐套执行下列语句(注意备份啊!) update rdrecord set ccode=replace(ccode,'-','0') where brdflag=0 and cvouchtype='32' update rdrecord set ccode=replace(ccode,'.','0') where brdflag=0 and cvouchtype='32' 上述两条语句将出库单单据号中的‘-’和‘.’全该成了0,用户可以根据实际情况进行修改。问题解答:经检查出库单单据号带有特殊符号‘-’和‘.’所致,请在查询分析器里选择对应帐套执行下列语句(注意备份啊!) update rdrecord set ccode=replace(ccode,'-','0') where brdflag=0 and cvouchtype='32' update rdrecord set ccode=replace(ccode,'.','0') where brdflag=0 and cvouchtype='32' 上述两条语句将出库单单据号中的‘-’和‘.’全该成了0,用户可以根据实际情况进行修改。