TFM_fStempelzeiten.sql 456 B

1234567891011121314151617181920212223242526
  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE VIEW [dbo].[TFM_fStempelzeiten]
  6. AS
  7. SELECT [Mandant ID]
  8. ,[Standort_ID]
  9. ,[Invoice Date]
  10. ,[Anwesenheit Mech Karo Lack]
  11. ,[Hauptbetrieb_ID]
  12. ,[Anwesenheit Meister]
  13. ,[Standort_Name]
  14. ,[Hauptbetrieb_Name]
  15. ,[Produktbuchungsgruppe]
  16. ,[Zuordnung Produktbuchungsgruppe]
  17. FROM [dbo].[TFM_fStempelzeiten95_3]
  18. GO
  19. SET QUOTED_IDENTIFIER OFF
  20. GO
  21. SET ANSI_NULLS OFF
  22. GO
  23. GO