This commit is contained in:
2024-03-21 17:47:57 +01:00
commit 9b7b684dc4
84 changed files with 6990 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
USE [DD_ECM]
GO
/****** Object: View [dbo].[VWCUST_NI_NAVISION_VENDOR] Script Date: 21.03.2024 17:02:38 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE VIEW [dbo].[VWCUST_NI_NAVISION_VENDOR] AS
SELECT DISTINCT Name,LieferantenNr
FROM [VWCUST_NAVISION_VENDORACCOUNTS]
GO