1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- SET QUOTED_IDENTIFIER ON
- GO
- SET ANSI_NULLS ON
- GO
- CREATE
- OR
- ALTER VIEW [load].[Service_Umsaetze_intern]
- AS
- SELECT [G L Account No],
- [Posting Date],
- [Document Type],
- [Document No],
- [Description],
- [Amount],
- [Gen Bus Posting Group],
- [Service Ledger Entry No],
- [Invoice Date],
- [Hauptbetrieb],
- [Branch Code],
- [Standort],
- [Entry No],
- [Order No],
- [Ebene3],
- [Zeile],
- [Umsatz Lohn],
- [Umsatz Sonstiges],
- [Make Code],
- [Marke]
- FROM [export_csv].[Service_Umsaetze_intern]
- GO
- SET QUOTED_IDENTIFIER OFF
- GO
- SET ANSI_NULLS OFF
- GO
- GO
|