freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

速達產(chǎn)品常見問題答疑-資料下載頁

2025-03-26 04:36本頁面
  

【正文】 信息:模塊名稱:系統(tǒng)維護解決方法:A、delete from flow B、返回到期初,重新生成“現(xiàn)金流量表”。 POS日結(jié)后,系統(tǒng)生成兩張完全相同的記賬憑證。產(chǎn)品信息:3000XP、版本信息:模塊名稱:POS銷售解決方法:DECLARE @credid varchar(32), @relevantbillid int, @relevantbillid_old int/*定義變量*/ DECLARE authors_cursor CURSOR for select credid,relevantbillid from credence where relevantbillid in ( select relevantbillid from credence where credtype = 34 group byrelevantbillid having count(*) 1) and credtype = 34 order byrelevantbillid /*credtype=34,該憑證類別為POS日結(jié)單*/set @relevantbillid_old = 1OPEN authors_cursorFETCH NEXT FROM authors_cursor into @credid,@relevantbillidWHILE @@FETCH_STATUS = 0BEGIN if (@relevantbillid_old = @relevantbillid) begin delete from creditem where credid = @credid/*刪除憑證從表相同的記錄*/ delete from credence where credid = @credid/*刪除憑證主表相同的記錄*/ end set @relevantbillid_old = @relevantbillid FETCH NEXT FROM authors_cursor into @credid,@relevantbillidENDclose authors_cursorDEALLOCATE authors_cursor 系統(tǒng)出現(xiàn):“違反了unique約束39。uq_porder39。,不能在對象porder中插入重復鍵。”的提示信息。產(chǎn)品信息:3000pro online版本信息:模塊名稱:系統(tǒng)維護解決方法:A、刪除Porder約束(Porder為采購訂單,系統(tǒng)規(guī)定,業(yè)務(wù)單據(jù)單號不允許重復)B、select * from porder where code in(select code from porder group by code having count(code)1)/*通過該查詢語句,主要查找采購訂單中是否存在重復的記錄*/C、 修改采購訂單單號 賬套初始化時,錄入往來單位資料后,應(yīng)收應(yīng)付的二級科目存在重復的名稱。產(chǎn)品信息:3000XP版本信息:模塊名稱:初始化解決方法:DECLARE @subid varchar(32), @name varchar(64), @name_old varchar(64) DECLARE authors_cursor CURSOR for select subid,name from subject where name in ( select name from subject group by name having count(*) 2) order by name /*過濾名稱相同的會計科目*/set @name_old = 1OPEN authors_cursorFETCH NEXT FROM authors_cursor into @subid,@nameWHILE @@FETCH_STATUS = 0BEGIN if (@name_old = @name) begin delete from subject where subid = @subid/*刪除不在上述過濾條件的會計科目*/ end set @name_old = @name FETCH NEXT FROM authors_cursor into @subid,@nameENDcLOSE authors_cursorDEALLOCATE authors_cursor 查詢“庫存庫存明細表”時,發(fā)現(xiàn)某商品的期末結(jié)余數(shù)量與填制“銷售開單”時查詢的貨品數(shù)量的余額不相符。產(chǎn)品信息:版本信息:模塊名稱:業(yè)務(wù)報表解決方法:A、 delete from onhandB、 insert into onhandselect storeid as storeid,goodsid as goodsid,sum(inqty)sum(outqty) as onhand from detailbillflow where billtype9 and billtype20 andbilltype16 group by storeid,goodsidC、create procedure upgoodsonhandasdeclare @goodsid integerdeclare @onhand integerdeclare goodsid_cur cursor for select goodsid from goodsopen goodsid_curfetch next from goodsid_cur into @goodsidwhile @@fetch_status=0beginselect @onhand=sum(onhand) from onhand where goodsid=@goodsidupdate goods set onhand=@onhand where goodsid=@goodsidfetch next from goodsid_cur into @goodsidendclose goodsid_curdeallocate goodsid_curD、 exec upgoodsonhand 用戶操作現(xiàn)金流量數(shù)據(jù)準備時,系統(tǒng)出現(xiàn)“現(xiàn)金流量數(shù)據(jù)準備中的顯示是憑證已處理完成”的提示信息。產(chǎn)品信息:3000STD版本信息:模塊信息:賬務(wù)管理解決方法:update subject set hscash=null/*Hscash為核算現(xiàn)金流量項目字段*/ 年未結(jié)賬后,用戶進行“初始數(shù)據(jù)導入”時,系統(tǒng)出現(xiàn)了“賬套文件出錯或不是速達3000的賬套文件!”的提示信息。產(chǎn)品信息:速達3000PRO版本信息:模塊信息:日常維護解決方法:A、delete attachast where 1=1經(jīng)過查詢后,發(fā)現(xiàn)導致這個問題發(fā)生的原因是帳套中的固定資產(chǎn)附屬設(shè)備表有問題,直接刪除后再做初始數(shù)據(jù)導入即可。B、重新進行“初始數(shù)據(jù)導入”。 同時恢復兩個賬套后(比如A與B賬套),并分別對原賬套數(shù)據(jù)進行“修復”,修復后,打開B賬套,“總分類賬”下某些科目名稱卻變成A賬套的科目名稱,但打開“明細分類賬”時,會計科目名稱和數(shù)據(jù)都沒有出現(xiàn)上述問題。產(chǎn)品信息:速達3000PRO版本信息:模塊信息:賬務(wù)報表解決方法:A、 緩存刷新問題。B、 注意事項:在切換賬套的時候,避免直接從一個賬套打開另一個賬套。需要打開另一個賬套的時候,關(guān)閉軟件并重新打開。 文章中的關(guān)鍵詞: 模塊 V ldquo 庫存 客戶端 服務(wù)器 POS 軟件安裝 軟件 采購 最新發(fā)表的文章:管家婆常見問題及解答 (20080204 07:22) 說說為什么沒有用友S4寫鎖程序放出來 (20071231 19:34) SQL2000 數(shù)據(jù)庫安裝說明 (20071114 16:31) 用友870+SP1安裝說明 (20071110 14:59) 速達軟件3000系列升級流程圖 (20071110 14:28) 還沒有評論,就等你了44 / 44
點擊復制文檔內(nèi)容
環(huán)評公示相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1