xtract.G_L_Entry.sql 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE VIEW [xtract].[G_L_Entry] AS
  6. SELECT [timestamp]
  7. -- , [Entry No_]
  8. , [G_L Account No_]
  9. , [Posting Date]
  10. -- , [Document Type]
  11. , [Document No_]
  12. , [Description]
  13. -- , [Bal_ Account No_]
  14. , [Amount]
  15. , [Global Dimension 1 Code]
  16. , [Global Dimension 2 Code]
  17. , [User ID]
  18. -- , [Source Code]
  19. -- , [System-Created Entry]
  20. -- , [Prior-Year Entry]
  21. -- , [Job No_]
  22. -- , [Quantity]
  23. -- , [VAT Amount]
  24. -- , [Business Unit Code]
  25. -- , [Journal Batch Name]
  26. -- , [Reason Code]
  27. -- , [Gen_ Posting Type]
  28. -- , [Gen_ Bus_ Posting Group]
  29. -- , [Gen_ Prod_ Posting Group]
  30. -- , [Bal_ Account Type]
  31. -- , [Transaction No_]
  32. -- , [Debit Amount]
  33. -- , [Credit Amount]
  34. -- , [Document Date]
  35. -- , [External Document No_]
  36. -- , [Source Type]
  37. -- , [Source No_]
  38. -- , [No_ Series]
  39. -- , [Tax Area Code]
  40. -- , [Tax Liable]
  41. -- , [Tax Group Code]
  42. -- , [Use Tax]
  43. -- , [VAT Bus_ Posting Group]
  44. , [VAT Prod_ Posting Group]
  45. -- , [Additional-Currency Amount]
  46. -- , [Add_-Currency Debit Amount]
  47. -- , [Add_-Currency Credit Amount]
  48. -- , [Close Income Statement Dim_ ID]
  49. -- , [IC Partner Code]
  50. -- , [Reversed]
  51. -- , [Reversed by Entry No_]
  52. -- , [Reversed Entry No_]
  53. -- , [Dimension Set ID]
  54. -- , [Prod_ Order No_]
  55. -- , [FA Entry Type]
  56. -- , [FA Entry No_]
  57. -- , [Value Entry No_]
  58. -- , [Exch_ Parts Tax Amount]
  59. , [Branch Code]
  60. -- , [Main Area]
  61. , [VIN]
  62. , [Book No_]
  63. , [Veh_ Source Code]
  64. -- , [Reposted]
  65. -- , [Corrected]
  66. -- , [Correction to curr_ No_]
  67. -- , [Reposting to curr_ No_]
  68. -- , [Register Date]
  69. -- , [Service Ledger Entry No_]
  70. -- , [Factory No_]
  71. -- , [Main Group Code]
  72. -- , [Subgroup Code]
  73. -- , [Line Group Code]
  74. -- , [Deleted G_L Account No_]
  75. -- , [Import Costing No_]
  76. -- , [OPP Pmt_ Import Entry No_]
  77. -- , [OPP Orig_ Currency Code]
  78. -- , [OPP Original Amount (FCY)]
  79. -- , [OPP Posted at]
  80. -- , [OPP Transaction No_]
  81. -- , [OPP Invoice Entrance Date]
  82. -- , [Cash Register Posting]
  83. , [Client_DB]
  84. FROM [GC_TRANSIT_ARI].[import].[G_L_Entry]
  85. GO
  86. SET QUOTED_IDENTIFIER OFF
  87. GO
  88. SET ANSI_NULLS OFF
  89. GO
  90. GO