xtract.Vehicle_Option.sql 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. SET QUOTED_IDENTIFIER ON
  2. GO
  3. SET ANSI_NULLS ON
  4. GO
  5. CREATE VIEW [xtract].[Vehicle_Option] AS
  6. SELECT [timestamp]
  7. , [VIN]
  8. -- , [Line No_]
  9. -- , [Make Code]
  10. -- , [Model No_]
  11. -- , [Option Code]
  12. -- , [Internal Code]
  13. , [Option Type]
  14. -- , [Short Description]
  15. , [Description]
  16. -- , [Description 2]
  17. -- , [Unit Price]
  18. -- , [Unit Cost]
  19. -- , [Total Price]
  20. -- , [Total Cost]
  21. -- , [Purchase Discount Amount]
  22. -- , [Purchase Discount _]
  23. -- , [Bill of Materials]
  24. -- , [Series Option]
  25. , [Built-in Date]
  26. -- , [Type]
  27. -- , [Quantity]
  28. -- , [Copy-to Setting]
  29. -- , [Sorting]
  30. -- , [Total Price Incl_ VAT]
  31. -- , [VAT _]
  32. -- , [VAT Base Amount]
  33. -- , [Differential Taxation]
  34. -- , [List Price]
  35. -- , [List Price Incl_ VAT]
  36. -- , [Inventory Posting Group]
  37. -- , [Gen_ Product Posting Group]
  38. -- , [Service Order No_]
  39. -- , [Option Class]
  40. -- , [Used Car Management Assignment]
  41. -- , [Search Internal Code]
  42. -- , [Replaced Option Code]
  43. -- , [Replaced Internal Code]
  44. -- , [Corrected on]
  45. -- , [Corrected at]
  46. -- , [Description Document Language]
  47. -- , [Description2 Document Language]
  48. -- , [Serial No_]
  49. -- , [Vehicle Ledger Entry No_]
  50. -- , [Print Option Line]
  51. -- , [Print Unit Price]
  52. -- , [Priced Series Option]
  53. -- , [Basic Color]
  54. -- , [Model Line Option]
  55. -- , [Belongs to Model Line]
  56. -- , [Emission Relevant]
  57. , [Client_DB]
  58. FROM [GC_TRANSIT_ARI].[import].[Vehicle_Option]
  59. GO
  60. SET QUOTED_IDENTIFIER OFF
  61. GO
  62. SET ANSI_NULLS OFF
  63. GO
  64. GO