renhao
2023-09-21 1aa9f2bb83dd9e4b7517f1cbf06b0db53979bb31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Quintiq file version 2.0
#parent: #root
EDIBroker Converter_Q1Q2_ImportInventoryValue
{
  MDSDefinition: MacroPlan
  EDIModelLink.Destination DestinationConverterInventoryValue
  {
    EDIMLTable Converter_InventoryValue
    {
      PrimaryKeyColumns: ProductID
      PrimaryKeyColumns: Start
      PrimaryKeyColumns: StockingPointID
      TargetType: Converter_InventoryValue
      TypeIndex: IVTypeIndex
      EDIMLColumn ProductID { Attribute: ProductID ValueType: String }
      EDIMLColumn Start { Attribute: Start ValueType: Date }
      EDIMLColumn StockingPointID { Attribute: StockingPointID ValueType: String }
      EDIMLColumn Value { Attribute: Value ValueType: Real }
    }
  }
  EDITransformation.Transformation TransformationConverterInventoryValue
  {
    EDITableTransformation
    {
      InputTable: InventoryValues_MP
      OutputTable: Converter_InventoryValue
      EDIColumnMatch
      {
        InputColumn: StockingPointID
        OutputColumn: StockingPointID
      }
      EDIColumnMatch
      {
        InputColumn: Start
        OutputColumn: Start
      }
      EDIColumnMatch
      {
        InputColumn: ProductID
        OutputColumn: ProductID
      }
      EDIColumnMatch
      {
        InputColumn: Value
        OutputColumn: Value
      }
    }
  }
  EDIXLSLink.Source SourceConverterInventoryValue
  {
    FileName: 'MP_InventoryValues.xlsx'
    MDSDependent: true
    EDIXLSLinkTable InventoryValues_MP
    {
      Columns:
      [
        EDIXLSLinkColumn ProductID { ValueType: String }
        EDIXLSLinkColumn Start { ValueType: Date }
        EDIXLSLinkColumn StockingPointID { ValueType: String }
        EDIXLSLinkColumn Value { ValueType: Real }
      ]
    }
  }
}