找回密码
 注册账号

QQ登录

只需一步,快速开始

手机号码,快捷登录

手机号码,快捷登录

初学者课程:T3自学|T6自学|U8自学软件下载课件下载工具下载资料:通资料|U8资料|NC|培训|年结积分规则 | 使用常见问题Q&A
知识库:U8 | | NC | U9 | OA | 政务U8|U9|NCC|NC65|NC65客开|NCC客开新手必读 | 任务 | 快速增金币用友QQ群[微信群]
查看: 7088|回复: 19

[已解决] U63.1升级T63.3出错

  [复制链接]
发表于 2009-11-10 11:31:38 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册账号

×
本帖最后由 lyfan 于 2009-11-10 11:40 编辑

U63.1升级T63.3出错
出了以下提示 高手指点下。急
错误提示.JPG
发表于 2009-11-10 11:50:20 | 显示全部楼层
把数据库里面的DTC运行就可以了
发表于 2009-11-10 12:48:39 | 显示全部楼层
少字段?
去后台添加字段?
 楼主| 发表于 2009-11-10 13:46:03 | 显示全部楼层
DTC运行了也不行。还出这个提示。
 楼主| 发表于 2009-11-10 15:16:43 | 显示全部楼层
本帖最后由 lyfan 于 2009-11-10 15:18 编辑

问题已经解决
经过跟踪出现下面语句
create view OM_HX_CK_List
as

--先材料期初后出库单
--期初的委外材料期初
select distinct top 100 percent RKRdRecords.AutoID,        --子表标识
        OM_POmain.MainID,        --订单主表标识
        '' as CKcode,        --出库单号
        '' as CKdate,        --出库日期
        OM_RdRecord.cInvCode as CKInvCode,        --材料编号
        Inventory.cInvName as CKInvName,        --材料名称
        Inventory.cInvStd as CKInvStd,        --规格型号
        Inventory.cComunitCode as CKComunitCode,        --计量单位
        ComputationUnit.cComUnitName as CKComUnitName,        --单位名称
        isnull(OM_RdRecord.iQuantity,0) as CKQuantity,        --出库数量

        --改为核销单价?
        --OM_RdRecord.iUnitCost as CKUnitCost,        --出库单价
        OM_JSRecords.iHXUnitCost as CKUnitCost,        --出库单价

        OM_RdRecord.iPrice as CKPrice,        --出库金额
        isnull(OM_JSRecords.HXQuantity,0) as CKHXQuantity,        --材料核销数量

        --把核销单价也记录上 2008-01-03 13.50
        --OM_RdRecord.iUnitCost * isnull(OM_JSRecords.HXQuantity,0) as CKHXPrice,        --材料核销金额
        OM_JSRecords.iHXUnitCost * isnull(OM_JSRecords.HXQuantity,0) as CKHXPrice,        --材料核销金额

        --改为从核销记录表中读取 2008-01-03 13.50
        --isnull(OM_RdRecord.iQuantity,0) - isnull(OM_RdRecord.iHXQuantity,0) as CKnonHXQuantity,        --材料未核销数量
        OM_JSRecords.nonHXQuantity as CKnonHXQuantity,        --材料未核销数量

        --改为上面的 核销单价×未核销数量
        --OM_RdRecord.iUnitCost * (isnull(OM_RdRecord.iQuantity,0) - isnull(OM_RdRecord.iHXQuantity,0)) as CKnonHXPrice,        --材料未核销金额
        OM_JSRecords.iHXUnitCost * isnull(OM_JSRecords.nonHXQuantity,0) as CKnonHXPrice,        --材料未核销金额

        OM_ProductPO.cVenCode as CKVenCode,                --供应商编号
        Vendor.cVenName as CKVenName,        --供应商名称
        Vendor.cVenAbbName as CKVenAbbName,        --供应商简称
        --10个存货自由项
        isnull(OM_RdRecord.cFree1,'') as cFree1,
        isnull(OM_RdRecord.cFree2,'') as cFree2,
        isnull(OM_RdRecord.cFree3,'') as cFree3,
        isnull(OM_RdRecord.cFree4,'') as cFree4,
        isnull(OM_RdRecord.cFree5,'') as cFree5,
        isnull(OM_RdRecord.cFree6,'') as cFree6,
        isnull(OM_RdRecord.cFree7,'') as cFree7,
        isnull(OM_RdRecord.cFree8,'') as cFree8,
        isnull(OM_RdRecord.cFree9,'') as cFree9,
        isnull(OM_RdRecord.cFree10,'') as cFree10,
        --16个存货自定义项
        isnull(Inventory.cInvDefine1,'') as cInvDefine1,
        isnull(Inventory.cInvDefine2,'') as cInvDefine2,
        isnull(Inventory.cInvDefine3,'') as cInvDefine3,
        isnull(Inventory.cInvDefine4,'') as cInvDefine4,
        isnull(Inventory.cInvDefine5,'') as cInvDefine5,
        isnull(Inventory.cInvDefine6,'') as cInvDefine6,
        isnull(Inventory.cInvDefine7,'') as cInvDefine7,
        isnull(Inventory.cInvDefine8,'') as cInvDefine8,
        isnull(Inventory.cInvDefine9,'') as cInvDefine9,
        isnull(Inventory.cInvDefine10,'') as cInvDefine10,
        Inventory.cInvDefine11,
        Inventory.cInvDefine12,
        Inventory.cInvDefine13,
        Inventory.cInvDefine14,
        Inventory.cInvDefine15,
        Inventory.cInvDefine16,
        OM_JSRecords.ID
from OM_POmain
        inner join OM_PODetails on OM_PODetails.MainID = OM_POmain.MainID
        left join OM_RdRecord on OM_RdRecord.cInvCode = OM_PODetails.cInvCode
                and isnull(OM_RdRecord.cFree1,'') = isnull(OM_PODetails.cFree1,'')
                and isnull(OM_RdRecord.cFree2,'') = isnull(OM_PODetails.cFree2,'')
                and isnull(OM_RdRecord.cFree3,'') = isnull(OM_PODetails.cFree3,'')
                and isnull(OM_RdRecord.cFree4,'') = isnull(OM_PODetails.cFree4,'')
                and isnull(OM_RdRecord.cFree5,'') = isnull(OM_PODetails.cFree5,'')
                and isnull(OM_RdRecord.cFree6,'') = isnull(OM_PODetails.cFree6,'')
                and isnull(OM_RdRecord.cFree7,'') = isnull(OM_PODetails.cFree7,'')
                and isnull(OM_RdRecord.cFree8,'') = isnull(OM_PODetails.cFree8,'')
                and isnull(OM_RdRecord.cFree9,'') = isnull(OM_PODetails.cFree9,'')
                and isnull(OM_RdRecord.cFree10,'') = isnull(OM_PODetails.cFree10,'')
        inner join OM_ProductPO on OM_ProductPO.ID = OM_POmain.ID
        left join Vendor on Vendor.cVenCode = OM_ProductPO.cVenCode
        inner join Inventory on Inventory.cInvCode = OM_RdRecord.cInvCode
        left join ComputationUnit on ComputationUnit.cComunitCode = Inventory.cComunitCode
        inner join RdRecords RKRdRecords on RKRdRecords.iOMMPoIds = OM_POmain.MainID
        inner join OM_JSRecords on OM_JSRecords.AutoID = RKRdRecords.AutoID
                and OM_JSRecords.HXQuantity <> 0
                and OM_RdRecord.ID = OM_JSRecords.QCID
where isnull(OM_RdRecord.bOMFirst,0) = 1
order by OM_JSRecords.ID

union all

--期初的出库
select distinct top 100 percent RKRdRecords.AutoID,        --子表标识
        OM_POmain.MainID,        --订单主表标识
        RdRecord.cCode as CKcode,        --出库单号
        RdRecord.dDate as CKdate,        --出库日期
        RdRecords.cInvCode as CKInvCode,        --材料编号
        Inventory.cInvName as CKInvName,        --材料名称
        Inventory.cInvStd as CKInvStd,        --规格型号
        Inventory.cComunitCode as CKComunitCode,        --计量单位
        ComputationUnit.cComUnitName as CKComUnitName,        --单位名称
        isnull(RdRecords.iQuantity,0) as CKQuantity,        --出库数量

        --不取核销单价,取实时单价
        RdRecords.iUnitCost as CKUnitCost,        --出库单价
        --OM_JSRecords.iHXUnitCost as CKUnitCost,        --出库单价

        RdRecords.iPrice as CKPrice,        --出库金额
        isnull(OM_JSRecords.HXQuantity,0) as CKHXQuantity,        --材料核销数量

        --材料核销金额  实时单价×核销数量
        RdRecords.iUnitCost * isnull(OM_JSRecords.HXQuantity,0) as CKHXPrice,        --材料核销金额
        --OM_JSRecords.iHXUnitCost * isnull(OM_JSRecords.HXQuantity,0) as CKHXPrice,        --材料核销金额


        --改为从核销记录表中读取 2008-01-03 13.50
        --isnull(RdRecords.iQuantity,0) - isnull(RdRecords.iHXQuantity,0) as CKnonHXQuantity,        --材料未核销数量
        OM_JSRecords.nonHXQuantity as CKnonHXQuantity,        --材料未核销数量

        --未核销金额  实时单价×未核销数量
        --RdRecords.iUnitCost * (isnull(RdRecords.iQuantity,0) - isnull(RdRecords.iHXQuantity,0)) as CKnonHXPrice,        --材料未核销金额
        RdRecords.iUnitCost * isnull(OM_JSRecords.nonHXQuantity,0) as CKnonHXPrice,        --材料未核销金额

        OM_ProductPO.cVenCode as CKVenCode,                --供应商编号
        Vendor.cVenName as CKVenName,        --供应商名称
        Vendor.cVenAbbName as CKVenAbbName,        --供应商简称
        --10个存货自由项
        isnull(RdRecords.cFree1,'') as cFree1,
        isnull(RdRecords.cFree2,'') as cFree2,
        isnull(RdRecords.cFree3,'') as cFree3,
        isnull(RdRecords.cFree4,'') as cFree4,
        isnull(RdRecords.cFree5,'') as cFree5,
        isnull(RdRecords.cFree6,'') as cFree6,
        isnull(RdRecords.cFree7,'') as cFree7,
        isnull(RdRecords.cFree8,'') as cFree8,
        isnull(RdRecords.cFree9,'') as cFree9,
        isnull(RdRecords.cFree10,'') as cFree10,
        --16个存货自定义项
        isnull(Inventory.cInvDefine1,'') as cInvDefine1,
        isnull(Inventory.cInvDefine2,'') as cInvDefine2,
        isnull(Inventory.cInvDefine3,'') as cInvDefine3,
        isnull(Inventory.cInvDefine4,'') as cInvDefine4,
        isnull(Inventory.cInvDefine5,'') as cInvDefine5,
        isnull(Inventory.cInvDefine6,'') as cInvDefine6,
        isnull(Inventory.cInvDefine7,'') as cInvDefine7,
        isnull(Inventory.cInvDefine8,'') as cInvDefine8,
        isnull(Inventory.cInvDefine9,'') as cInvDefine9,
        isnull(Inventory.cInvDefine10,'') as cInvDefine10,
        Inventory.cInvDefine11,
        Inventory.cInvDefine12,
        Inventory.cInvDefine13,
        Inventory.cInvDefine14,
        Inventory.cInvDefine15,
        Inventory.cInvDefine16,
        OM_JSRecords.ID
from OM_POmain
        inner join OM_PODetails on OM_PODetails.MainID = OM_POmain.MainID
        left join OM_JS_RdRecords RdRecords on RdRecords.iOMMPoIds = OM_PODetails.SubID
        inner join OM_JS_RdRecord RdRecord on RdRecord.ID = RdRecords.ID
                --此条件是为了限制必须是委外入库,只要传递的AutoID正确,则此条件没有作用
                and RdRecord.cVouchType = '11' and RdRecord.cBusType = '委外出库'
        inner join OM_ProductPO on OM_ProductPO.ID = OM_POmain.ID
        left join Vendor on Vendor.cVenCode = OM_ProductPO.cVenCode
        inner join Inventory on Inventory.cInvCode = RdRecords.cInvCode
        left join ComputationUnit on ComputationUnit.cComunitCode = Inventory.cComunitCode
        inner join RdRecords RKRdRecords on RKRdRecords.iOMMPoIds = OM_POmain.MainID
        inner join OM_JSRecords on OM_JSRecords.AutoID = RKRdRecords.AutoID
                and OM_JSRecords.HXQuantity <> 0
                and RdRecords.AutoID = OM_JSRecords.CKAutoID
order by OM_JSRecords.ID

union all

--正常的委外材料期初
select distinct top 100 percent RKRdRecords.AutoID,        --子表标识
        OM_POmain.MainID,        --订单主表标识
        '' as CKcode,        --出库单号
        '' as CKdate,        --出库日期
        OM_RdRecord.cInvCode as CKInvCode,        --材料编号
        Inventory.cInvName as CKInvName,        --材料名称
        Inventory.cInvStd as CKInvStd,        --规格型号
        Inventory.cComunitCode as CKComunitCode,        --计量单位
        ComputationUnit.cComUnitName as CKComUnitName,        --单位名称
        isnull(OM_RdRecord.iQuantity,0) as CKQuantity,        --出库数量

        --改为核销单价?
        --OM_RdRecord.iUnitCost as CKUnitCost,        --出库单价
        OM_JSRecords.iHXUnitCost as CKUnitCost,        --出库单价

        OM_RdRecord.iPrice as CKPrice,        --出库金额
        isnull(OM_JSRecords.HXQuantity,0) as CKHXQuantity,        --材料核销数量

        --把核销单价也记录上 2008-01-03 13.50
        --OM_RdRecord.iUnitCost * isnull(OM_JSRecords.HXQuantity,0) as CKHXPrice,        --材料核销金额
        OM_JSRecords.iHXUnitCost * isnull(OM_JSRecords.HXQuantity,0) as CKHXPrice,        --材料核销金额

        --改为从核销记录表中读取 2008-01-03 13.50
        --isnull(OM_RdRecord.iQuantity,0) - isnull(OM_RdRecord.iHXQuantity,0) as CKnonHXQuantity,        --材料未核销数量
        OM_JSRecords.nonHXQuantity as CKnonHXQuantity,        --材料未核销数量

        --改为上面的 核销单价×未核销数量
        --OM_RdRecord.iUnitCost * (isnull(OM_RdRecord.iQuantity,0) - isnull(OM_RdRecord.iHXQuantity,0)) as CKnonHXPrice,        --材料未核销金额
        OM_JSRecords.iHXUnitCost * isnull(OM_JSRecords.nonHXQuantity,0) as CKnonHXPrice,        --材料未核销金额

        OM_ProductPO.cVenCode as CKVenCode,                --供应商编号
        Vendor.cVenName as CKVenName,        --供应商名称
        Vendor.cVenAbbName as CKVenAbbName,        --供应商简称
        --10个存货自由项
        isnull(OM_RdRecord.cFree1,'') as cFree1,
        isnull(OM_RdRecord.cFree2,'') as cFree2,
        isnull(OM_RdRecord.cFree3,'') as cFree3,
        isnull(OM_RdRecord.cFree4,'') as cFree4,
        isnull(OM_RdRecord.cFree5,'') as cFree5,
        isnull(OM_RdRecord.cFree6,'') as cFree6,
        isnull(OM_RdRecord.cFree7,'') as cFree7,
        isnull(OM_RdRecord.cFree8,'') as cFree8,
        isnull(OM_RdRecord.cFree9,'') as cFree9,
        isnull(OM_RdRecord.cFree10,'') as cFree10,
        --16个存货自定义项
        isnull(Inventory.cInvDefine1,'') as cInvDefine1,
        isnull(Inventory.cInvDefine2,'') as cInvDefine2,
        isnull(Inventory.cInvDefine3,'') as cInvDefine3,
        isnull(Inventory.cInvDefine4,'') as cInvDefine4,
        isnull(Inventory.cInvDefine5,'') as cInvDefine5,
        isnull(Inventory.cInvDefine6,'') as cInvDefine6,
        isnull(Inventory.cInvDefine7,'') as cInvDefine7,
        isnull(Inventory.cInvDefine8,'') as cInvDefine8,
        isnull(Inventory.cInvDefine9,'') as cInvDefine9,
        isnull(Inventory.cInvDefine10,'') as cInvDefine10,
        Inventory.cInvDefine11,
        Inventory.cInvDefine12,
        Inventory.cInvDefine13,
        Inventory.cInvDefine14,
        Inventory.cInvDefine15,
        Inventory.cInvDefine16,
        OM_JSRecords.ID
from OM_POmain
        inner join OM_PODetails on OM_PODetails.MainID = OM_POmain.MainID
        left join OM_RdRecord on OM_RdRecord.cInvCode = OM_PODetails.cInvCode
                and isnull(OM_RdRecord.cFree1,'') = isnull(OM_PODetails.cFree1,'')
                and isnull(OM_RdRecord.cFree2,'') = isnull(OM_PODetails.cFree2,'')
                and isnull(OM_RdRecord.cFree3,'') = isnull(OM_PODetails.cFree3,'')
                and isnull(OM_RdRecord.cFree4,'') = isnull(OM_PODetails.cFree4,'')
                and isnull(OM_RdRecord.cFree5,'') = isnull(OM_PODetails.cFree5,'')
                and isnull(OM_RdRecord.cFree6,'') = isnull(OM_PODetails.cFree6,'')
                and isnull(OM_RdRecord.cFree7,'') = isnull(OM_PODetails.cFree7,'')
                and isnull(OM_RdRecord.cFree8,'') = isnull(OM_PODetails.cFree8,'')
                and isnull(OM_RdRecord.cFree9,'') = isnull(OM_PODetails.cFree9,'')
                and isnull(OM_RdRecord.cFree10,'') = isnull(OM_PODetails.cFree10,'')
        inner join OM_ProductPO on OM_ProductPO.ID = OM_POmain.ID
        left join Vendor on Vendor.cVenCode = OM_ProductPO.cVenCode
        inner join Inventory on Inventory.cInvCode = OM_RdRecord.cInvCode
        left join ComputationUnit on ComputationUnit.cComunitCode = Inventory.cComunitCode
        inner join RdRecords RKRdRecords on RKRdRecords.iOMMPoIds = OM_POmain.MainID
        inner join OM_JSRecords on OM_JSRecords.AutoID = RKRdRecords.AutoID
                and OM_JSRecords.HXQuantity <> 0
                and OM_RdRecord.ID = OM_JSRecords.QCID
where isnull(OM_RdRecord.bOMFirst,0) = 0
order by OM_JSRecords.ID

union all

--正常的出库
select distinct top 100 percent RKRdRecords.AutoID,        --子表标识
        OM_POmain.MainID,        --订单主表标识
        RdRecord.cCode as CKcode,        --出库单号
        RdRecord.dDate as CKdate,        --出库日期
        RdRecords.cInvCode as CKInvCode,        --材料编号
        Inventory.cInvName as CKInvName,        --材料名称
        Inventory.cInvStd as CKInvStd,        --规格型号
        Inventory.cComunitCode as CKComunitCode,        --计量单位
        ComputationUnit.cComUnitName as CKComUnitName,        --单位名称
        isnull(RdRecords.iQuantity,0) as CKQuantity,        --出库数量

        --不取核销单价,取实时单价
        RdRecords.iUnitCost as CKUnitCost,        --出库单价
        --OM_JSRecords.iHXUnitCost as CKUnitCost,        --出库单价

        RdRecords.iPrice as CKPrice,        --出库金额
        isnull(OM_JSRecords.HXQuantity,0) as CKHXQuantity,        --材料核销数量

        --材料核销金额  实时单价×核销数量
        RdRecords.iUnitCost * isnull(OM_JSRecords.HXQuantity,0) as CKHXPrice,        --材料核销金额
        --OM_JSRecords.iHXUnitCost * isnull(OM_JSRecords.HXQuantity,0) as CKHXPrice,        --材料核销金额


        --改为从核销记录表中读取 2008-01-03 13.50
        --isnull(RdRecords.iQuantity,0) - isnull(RdRecords.iHXQuantity,0) as CKnonHXQuantity,        --材料未核销数量
        OM_JSRecords.nonHXQuantity as CKnonHXQuantity,        --材料未核销数量

        --未核销金额  实时单价×未核销数量
        --RdRecords.iUnitCost * (isnull(RdRecords.iQuantity,0) - isnull(RdRecords.iHXQuantity,0)) as CKnonHXPrice,        --材料未核销金额
        RdRecords.iUnitCost * isnull(OM_JSRecords.nonHXQuantity,0) as CKnonHXPrice,        --材料未核销金额

        OM_ProductPO.cVenCode as CKVenCode,                --供应商编号
        Vendor.cVenName as CKVenName,        --供应商名称
        Vendor.cVenAbbName as CKVenAbbName,        --供应商简称
        --10个存货自由项
        isnull(RdRecords.cFree1,'') as cFree1,
        isnull(RdRecords.cFree2,'') as cFree2,
        isnull(RdRecords.cFree3,'') as cFree3,
        isnull(RdRecords.cFree4,'') as cFree4,
        isnull(RdRecords.cFree5,'') as cFree5,
        isnull(RdRecords.cFree6,'') as cFree6,
        isnull(RdRecords.cFree7,'') as cFree7,
        isnull(RdRecords.cFree8,'') as cFree8,
        isnull(RdRecords.cFree9,'') as cFree9,
        isnull(RdRecords.cFree10,'') as cFree10,
        --16个存货自定义项
        isnull(Inventory.cInvDefine1,'') as cInvDefine1,
        isnull(Inventory.cInvDefine2,'') as cInvDefine2,
        isnull(Inventory.cInvDefine3,'') as cInvDefine3,
        isnull(Inventory.cInvDefine4,'') as cInvDefine4,
        isnull(Inventory.cInvDefine5,'') as cInvDefine5,
        isnull(Inventory.cInvDefine6,'') as cInvDefine6,
        isnull(Inventory.cInvDefine7,'') as cInvDefine7,
        isnull(Inventory.cInvDefine8,'') as cInvDefine8,
        isnull(Inventory.cInvDefine9,'') as cInvDefine9,
        isnull(Inventory.cInvDefine10,'') as cInvDefine10,
        Inventory.cInvDefine11,
        Inventory.cInvDefine12,
        Inventory.cInvDefine13,
        Inventory.cInvDefine14,
        Inventory.cInvDefine15,
        Inventory.cInvDefine16,
        OM_JSRecords.ID
from OM_POmain
        inner join OM_PODetails on OM_PODetails.MainID = OM_POmain.MainID
        left join RdRecords on RdRecords.iOMMPoIds = OM_PODetails.SubID
        inner join RdRecord on RdRecord.ID = RdRecords.ID
                --此条件是为了限制必须是委外入库,只要传递的AutoID正确,则此条件没有作用
                and RdRecord.cVouchType = '11' and RdRecord.cBusType = '委外出库'
        inner join OM_ProductPO on OM_ProductPO.ID = OM_POmain.ID
        left join Vendor on Vendor.cVenCode = OM_ProductPO.cVenCode
        inner join Inventory on Inventory.cInvCode = RdRecords.cInvCode
        left join ComputationUnit on ComputationUnit.cComunitCode = Inventory.cComunitCode
        inner join RdRecords RKRdRecords on RKRdRecords.iOMMPoIds = OM_POmain.MainID
        inner join OM_JSRecords on OM_JSRecords.AutoID = RKRdRecords.AutoID
                and OM_JSRecords.HXQuantity <> 0
                and RdRecords.AutoID = OM_JSRecords.CKAutoID
order by OM_JSRecords.ID

在查询分析器里面执行出现
服务器: 消息 207,级别 16,状态 3,过程 OM_HX_CK_List,行 6
列名 'ID' 无效。
服务器: 消息 207,级别 16,状态 1,过程 OM_HX_CK_List,行 6
列名 'ID' 无效。
服务器: 消息 207,级别 16,状态 1,过程 OM_HX_CK_List,行 6
列名 'ID' 无效。
服务器: 消息 207,级别 16,状态 1,过程 OM_HX_CK_List,行 6
列名 'ID' 无效。

在到这张视图的“设计视图”里面查看语句并且和正常数据库对比。最后发现
OM_JSRecords这张表里面少“ID”字段。添加上再升级就行。

评分

参与人数 1金币 +8 收起 理由
销魂 + 8 助人为乐,感谢分享!

查看全部评分

发表于 2009-11-10 15:30:42 | 显示全部楼层
已经解决啦,反正一看就是少字段,看一下升级日志,再去查找一上ID这个字段就行了
发表于 2009-11-10 19:44:44 | 显示全部楼层
我也碰上这个问题了。~
发表于 2009-11-11 13:42:50 | 显示全部楼层
我来学习一下哈只哈
发表于 2009-11-12 08:40:36 | 显示全部楼层
就知道用友天天搞升级,搞得升级都出错.下面的代理商就麻烦了
发表于 2009-11-12 14:52:36 | 显示全部楼层
学习一下.经验呀!
发表于 2009-11-14 10:06:17 | 显示全部楼层
经验啊 谢谢分享了
发表于 2009-11-14 13:38:48 | 显示全部楼层
好,顶一个啊,,,,,
发表于 2009-11-16 17:21:12 | 显示全部楼层
3Q     
学习经验
发表于 2009-11-16 17:41:43 | 显示全部楼层
学习 学习 领教了
发表于 2009-11-19 11:37:11 | 显示全部楼层
这种报错就是数据结构的问题,只要按最新的改正一下就全哦了/..........
您需要登录后才可以回帖 登录 | 注册账号

本版积分规则

QQ|站长微信|Archiver|手机版|小黑屋|用友之家 ( 蜀ICP备07505338号|51072502110008 )

GMT+8, 2024-5-20 06:29 , Processed in 0.054987 second(s), 15 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表