用友u8軟件操作員權(quán)限打印
2018-07-14 16:22 來源:用友
操作員權(quán)限打印原因分析:1.先將數(shù)據(jù)庫中的操作員權(quán)限查出并生成一張新表:select a.cacc_id 賬套號, a.cuser_id 操作員編號,b.cauth_name 權(quán)限 into new from ua_holdauth a inner join ua_auth b on a.cauth_id=b.cauth_id where cacc_id=0022.打開ufsystem 數(shù)據(jù)庫并找到生成的新表 new 3.用dts將數(shù)據(jù)導(dǎo)出為excel格式即可打出4.刪除新表new 問題解答:1.先將數(shù)據(jù)庫中的操作員權(quán)限查出并生成一張新表:select a.cacc_id 賬套號, a.cuser_id 操作員編號,b.cauth_name 權(quán)限 into new from ua_holdauth a inner join ua_auth b on a.cauth_id=b.cauth_id where cacc_id=0022.打開企業(yè)管理器中的ufsystem 數(shù)據(jù)庫并找到生成的新表 new 3.用dts將數(shù)據(jù)導(dǎo)出為excel格式即可打出4.刪除新表new drop table new