| View: dbo.AR_Payment_Application_Table_View | |||
| View definition | |||
|
-- This view allows fast access to the AR_Payment_Application table and can be used as a replacement to the slower AR_Payment_Application_View CREATE VIEW dbo.AR_Payment_Application_Table_View AS SELECT apa.gl_transaction_KEY , apa.payment__gl_transaction_KEY , apa.receivable__gl_transaction_KEY FROM dbo.AR_Payment_Application AS apa; -- This GO is required in order to be able to document the view | |||