Pages
Labels
- Bisnis (1)
- CIT Scripts - Financore (5)
- Cokelat (3)
- MySQL (2)
- PHP (23)
- PT Comment Indonesia (10)
- SQL Query (2)
- SQL Server 2000 (4)
- SQL Server 2005 (4)
- Tips - Tricks Cokelat (2)
Archives
-
▼
2010
(41)
-
▼
August
(14)
- Kulit Cantik dengan Cokelat
- Serba Serbi Tentang Cokelat
- Cokelat Juga Setangguh Viagra
- Langkah Bangun Bisnis Sendiri
- Tips Mengetim Cokelat
- Agar Cokelat Tahan Lama
- Sekilas Administrasi Microsoft SQL Server 2005
- Piutang Pembiayaan Jatuh Tempo
- FPD 1-6 Survey
- COL998
- View COL998 Khusus
- View COL998
- Create Database AdventureWorksDW
- Attached Database AdventureWorksDB
-
▼
August
(14)
Link List
- Code Igniter Indonesia
- MySQL Reference Manuals
- MySQL Tutorial
- SQL Developer
- 9 Useful jQuery Calendar and Date Picker Plugins For Web Designers
- 10 Powerful AJAZ jQuery File Uploaders
- 35 Useful jQuery Plugins for Slideshows, Graphs and Text Effects
- 30 jQuery Calendar Date Picker Plugins
- jQuery
- Web Developers Notes
- SQL Copy MySQL Table
- Natural Cooking Club Indonesia
- Aneka Resep Praline - Sedap Sekejap
- Resep Cokelat
- Pastry and Bakery
- Peluang Bisnis Hotspot
- Billing Hospot
- JpGraph
- Zend Developer Zone
- MySQL Tutorials and Others
- W3 School
- Open Source Projects
CREATE VIEW dbo.v_col998
AS
SELECT dbo.genRegional.regionalid, dbo.genRegional.regional, dbo.genRegional.zoneid, dbo.genRegional.zonename,
dbo.prfUser.BranchId, dbo.cshTxn.TxnDate,
(SELECT minCicildate
FROM v_rptFinancore_totNotPaid
WHERE norek = corPayment.norek AND nopin = corPayment.nopin) AS CicilDate, dbo.cshTxn.ValueDate, dbo.cshTxn.NoRek, dbo.cshTxn.NoPin,
dbo.corPayment.CshBranchId, dbo.genBranch.BranchName, dbo.cshFuncCode.InOut, dbo.corPayment.KuitansiNo,
dbo.cshTxn.FuncType, dbo.corPayment.Amount, dbo.cshTxn.TxnType, dbo.cshFuncCode.FuncCode, dbo.corPayment.CollectFee,
(SELECT sum(isnull(angsuran, 0))
FROM tmppjt_khusus
WHERE branchid = dbo.prfUser.BranchId AND norek = dbo.corPayment.norek AND nopin = dbo.corPayment.nopin) AS angsuran
FROM dbo.corPayment WITH (nolock) INNER JOIN
dbo.corAccount WITH (NOLOCK) ON dbo.corPayment.NoRek = dbo.corAccount.NoRek AND
dbo.corPayment.NoPin = dbo.corAccount.NoPin LEFT OUTER JOIN
dbo.prfUser WITH (NOLOCK) LEFT OUTER JOIN
dbo.cshTxn WITH (NOLOCK) ON dbo.prfUser.UserId = dbo.cshTxn.AuthorId LEFT OUTER JOIN
dbo.cshFuncCode WITH (NOLOCK) ON dbo.cshTxn.FuncCode = dbo.cshFuncCode.FuncCode ON
dbo.corPayment.TxnId = dbo.cshTxn.TxnId LEFT OUTER JOIN
dbo.genBranch WITH (NOLOCK) ON dbo.prfUser.BranchId = dbo.genBranch.BranchId INNER JOIN
dbo.genRegional ON dbo.genRegional.branchid = dbo.prfUser.BranchId
WHERE (dbo.cshTxn.NoRek IS NOT NULL)
Labels: CIT Scripts - Financore