NC报销单保存时,报”保存失败:fail to save VO Array ~#@“
NC报销单保存时,报”保存失败:fail to save VO Array ~#@“造成此错误的一般原因是单据中,存在内容过多,超出了表字符长度导致的。
·
NC报销单保存时,报”保存失败:fail to save VO Array ~#@“
造成此错误的一般原因是单据中,存在内容过多,超出了表字符长度导致的。
如果是内容过多,超过了字段字符存储的长度。则需要修改元数据字段长度和表的字段字符长度。
如修改defitem8、zy两个字段的字符长度为500
select a.id,a.* from md_component a where a.displayname like '%结转%'
select a.id, a.* from md_class a where a.componentid = '9e1ab9ff-4ff4-44ea-b332-99ebca302cd4'
select * from md_property a where a.classid = '204d357b-d993-43b1-baa9-8bfde873ba3b' and name = 'zy'
update md_property set attrlength='500' where classid = '204d357b-d993-43b1-baa9-8bfde873ba3b' and name = 'defitem8'
update md_column set columnlength='500' where id = 'er_costshare@@@defitem8'
update md_property set attrlength='500' where classid = '204d357b-d993-43b1-baa9-8bfde873ba3b' and name = 'zy'
update md_column set columnlength='500' where id = 'er_costshare@@@zy'
更多推荐
所有评论(0)