load.Service_Umsaetze_intern.sql 544 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE
  6. OR
  7. ALTER VIEW [load].[Service_Umsaetze_intern]
  8. AS
  9. SELECT [G L Account No],
  10. [Posting Date],
  11. [Document Type],
  12. [Document No],
  13. [Description],
  14. [Amount],
  15. [Gen Bus Posting Group],
  16. [Service Ledger Entry No],
  17. [Invoice Date],
  18. [Hauptbetrieb],
  19. [Branch Code],
  20. [Standort],
  21. [Entry No],
  22. [Order No],
  23. [Ebene3],
  24. [Zeile],
  25. [Umsatz Lohn],
  26. [Umsatz Sonstiges],
  27. [Make Code],
  28. [Marke]
  29. FROM [export_csv].[Service_Umsaetze_intern]
  30. GO
  31. SET QUOTED_IDENTIFIER OFF
  32. GO
  33. SET ANSI_NULLS OFF
  34. GO
  35. GO