找回密码
 注册账号

QQ登录

只需一步,快速开始

手机号码,快捷登录

手机号码,快捷登录

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

[技巧] 【用友U8】常用数据库表名

[复制链接]
发表于 2024-3-29 08:54:59 | 显示全部楼层 |阅读模式

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

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

×
一、基础档案
1、存货档案
select * from inventory
select * from inventory_extradefind
2、人员档案
select * from person
3、部门档案
select * from department
4、供应商档案
select * from vendor
5、客户档案
select * from customer
select * from customer_extradefind
6、计量单位档案
select * from tc_unit
7、仓库档案
select * from Warehouse
8、质量原因码档案(原因码档案)
select * from Reason
9、不良品处理方式档案(不良品处理方式)
select * from QMScrapDispose

二、库存管理
1、现存量查询
select * from CurrentStock
2、货位存量查询
select * from InvPositionSum
3、其他出库单
select * from rdrecord09
select * from rdrecords09
4、其他入库单
select * from RdRecord08
select * from RdRecords08
5、销售出库单
select * from RdRecord32
select * from RdRecords32
6、材料出库单
select * from RdRecord11
select * from RdRecords11
7、采购入库单
select * from RdRecord01
select * from RdRecords01
8、产成品入库单
select * from rdrecord10
select * from rdrecords10

三、销售管理
1、销售订单
select * from so_somain
select * from so_soDetails
2、-发货单
select * from DispatchList
select * from DispatchLists
3、销售专用发票
select * from SaleBillVouch
select * from SaleBillVouchs

四、采购管理
1、请购单
select * from PU_AppVouch
select * from PU_AppVouchs
2、采购订单
select * from PO_Pomain
select * from PO_Podetails
3、采购到货单
select * from PU_ArrivalVouch
select * from PU_ArrivalVouchs
4、采购专用发票
select * from PurBillVouch
select * from PurBillVouchs
5、供应商存货调价单、表
select * fromPU_PriceJustMain
select * from Ven_Inv_Price

五、质量管理
1、来料报检单
select * from QMInspectVoucher
select * from QMInspectVouchers
2、来料检验单
select * from QMCheckVoucher
select * from QMCheckVouchers
3、来料不良品处理单
select * from QMRejectVoucher
select * from QMRejectVouchers
select * from QMRejectVouchers_extradefine

六、财务
1、收款单
select * from AR_CloseListDetail
select * from AR_CloseList
select * from AR_Closeck

七、系统
1、单据系列号查询 及更改
select * from ufsystem…ua_identity where cvouchtype = ‘Somain’ --cacc_id = ‘705’ and 849059
select * from VoucherHistory where CardNumber=‘17’ and AutoId>36636
select * from VoucherHistory where AutoId=36723
–update VoucherHistory set cNumber=74 where AutoId=36723 --1231
————————————————

                            版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

原文链接:https://blog.csdn.net/qq_44759590/article/details/131850095

发表于 2024-4-1 16:23:58 | 显示全部楼层
学习学习
回复 点赞 1 拍砖 0

使用道具 举报

发表于 2024-3-30 14:30:00 | 显示全部楼层
来赚个分,踩一踩
回复 点赞 1 拍砖 0

使用道具 举报

发表于 2024-3-29 10:32:40 | 显示全部楼层
布错,好好好。。。。。。。。。。。。
回复 点赞 1 拍砖 0

使用道具 举报

 楼主| 发表于 5 天前 | 显示全部楼层
WU@先森 发表于 2024-4-22 10:15
存货档案的计量单位如何在数据库修改

select   a.cinvcode,f.cinvstd,f.cinvname,b.cwhname,convert(float ,a.iquantity)  ,
g.cComUnitName as MainUnit,g.iChangRate as mainrate,h.cComUnitName as asUnit,h.iChangRate as asRate
from currentstock as a inner join warehouse as b on a.cwhcode=b.cwhcode inner join v_inventory as f on a.cinvcode=f.cinvcode  inner join inventory_extradefine as fe on f.cinvcode=fe.cinvcode
left join (select * from  ComputationUnit where bMainUnit =1) as g on g.cComUnitCode=f.cComUnitCode and g.cGroupCode =f.cGroupCode
left join (select * from  ComputationUnit where bMainUnit =0) as h on h.cComUnitCode=f.cSTComUnitCode and h.cGroupCode =f.cGroupCode
where iQuantity>0 and a.cinvcode like '%'+'500291'+'%'





cinvcode    cinvname    cwhname    storagepos    kc    MainUnit    kcas    asUnit    cinvstd    asRate    mainrate
500291    PE膜    GE成品库    1号库    1003.5842    平米    17985.38    公斤    幅宽1500,厚度0.06-单面6丝单刨    17.921147    1.000000
500291    PE膜    辅料库    1号库    3584.40145    平米    64236.59    公斤    幅宽1500,厚度0.06-单面6丝单刨    17.921147    1.000000

回复 点赞 拍砖

使用道具 举报

发表于 2024-4-1 13:13:17 | 显示全部楼层
17379467360 发表于 2024-4-1 11:18
也可以的哈,先谢谢您了!

https://pan.baidu.com/s/1spiPCOO_9nxbAi1tF4foAA?pwd=H974  我上传到网盘了,自行下载吧

点评

跪谢。。。。  详情 回复 发表于 2024-4-1 14:26
回复 点赞 拍砖

使用道具 举报

发表于 2024-3-29 11:40:11 | 显示全部楼层
好,谢谢
回复 点赞 拍砖

使用道具 举报

发表于 2024-3-29 12:49:32 | 显示全部楼层
多谢分享,学习了
回复 点赞 拍砖

使用道具 举报

发表于 2024-3-29 13:11:05 | 显示全部楼层
u8数据字典谁有
回复 点赞 拍砖

使用道具 举报

发表于 2024-3-29 13:11:25 | 显示全部楼层
我需要u8数据字典

点评

我自己都没有哈  详情 回复 发表于 2024-3-29 13:42
回复 点赞 拍砖

使用道具 举报

 楼主| 发表于 2024-3-29 13:42:57 | 显示全部楼层
hyy12345 发表于 2024-3-29 13:11
我需要u8数据字典

我自己都没有哈
回复 点赞 拍砖

使用道具 举报

发表于 2024-4-1 10:48:35 | 显示全部楼层
有10.0的,需要吗?

点评

也可以的哈,先谢谢您了!  详情 回复 发表于 2024-4-1 11:18
回复 点赞 拍砖

使用道具 举报

 楼主| 发表于 2024-4-1 11:18:47 | 显示全部楼层
luckyh2023 发表于 2024-4-1 10:48
有10.0的,需要吗?

也可以的哈,先谢谢您了!

点评

https://pan.baidu.com/s/1spiPCOO_9nxbAi1tF4foAA?pwd=H974 我上传到网盘了,自行下载吧  详情 回复 发表于 2024-4-1 13:13
回复 点赞 拍砖

使用道具 举报

发表于 2024-4-1 12:18:24 | 显示全部楼层
感谢分享,学习了
回复 点赞 拍砖

使用道具 举报

 楼主| 发表于 2024-4-1 14:26:08 | 显示全部楼层
luckyh2023 发表于 2024-4-1 13:13
https://pan.baidu.com/s/1spiPCOO_9nxbAi1tF4foAA?pwd=H974  我上传到网盘了,自行下载吧
...

跪谢。。。。
回复 点赞 拍砖

使用道具 举报

发表于 7 天前 | 显示全部楼层
学习学习111

点评

亲,一起努力  详情 回复 发表于 7 天前
回复 点赞 拍砖

使用道具 举报

您需要登录后才可以回帖 登录 | 注册账号

本版积分规则

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

GMT+8, 2024-4-27 17:23 , Processed in 0.062007 second(s), 11 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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