發表文章

目前顯示的是 5月, 2018的文章

[EasyFlow] Form Design > 如何刪除,設計中電子表單中使用到的'元件'

Easy flow 在設計表單時,第一次存檔後,各設定的功能元件, (如Check box , Radio button , Textbox.....) 會把設定的元件資料類型存到資料庫中,做第二次修改時, 使用刪除功能時,會跳出警示訊息,顯示此元件已存於資料庫中無法刪除。 解法: -第1步驟- 執行語法,將不需要的元件Column name 刪除 (此語法只適用還未有表單資訊的表單,且執行前請將資料庫備份好, 如有問題還可以Recover回去) select * from EFormWizardField --DELETE FROM EFormWizardField WHERE FieldName ='column name' and FormID='table name' -第2步驟- 回到表單,重新設計一次,在進入表單,此元件就會刪除了。

[MSSQL]Record it : Mssql familiar instruction >case

Record it : Mssql familiar instruction >case case (change Value) use testdb select case (E.testcolumn ) when '1' then 'Reject' when '2' then 'Allow' when '3' then 'Deny' else 'No data' end 'status' from testtable

[MSSQL] UPDATE from code match in SQL Server

UPDATE from code match in SQL Server View join / update  Create Trigger ink_quote_dropdown_to_text on odm_ink_quote For insert --When easyflow odm_ink_quote add new form , on trigger as Begin Update ink_quote --update data odmotccus to ink_quote set ink_quote.com_text    = (b.companycode+b.companyname),     ink_quote.sal_text    = (b.salcode+b.salname),     ink_quote.client_text =(b.clientcode+'('+b.clientabb+') (condition : '+b.tracurrency+b.creditsline+')-upto90day : '+b.creditsmon),     odm_ink_quote.sel_text    = (b.selquantity+'KG') --Update Table companyname/salname/clientname/selquantiy to text(column) from  ink_quote a inner join V_ink_quote_01 b --join View on a.client_code=b.clientcode where com_text  is NULL and   sal_text  is NULL and client_text is NULL and   sel_text  is NULL and   a.client_code=b.clientcode and   a.company_code=b.companycode and   a.sal_code=b.salcode and   a.sel_quantity=b.selquantity --condition cortrol upd