yanweiyuan3
2023-08-09 588bc7829387dfc761cc25f06f77d4c81818bd10
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
Quintiq file version 2.0
#parent: #root
EDIBroker Converter_Q2Q3_ImportProduct
{
  MDSDefinition: MacroPlan
  EDIModelLink.Destination DestinationConverteProduct
  {
    EDIMLTable Converter_PISPWithSafetyStocks
    {
      PrimaryKeyColumns: ProductID
      PrimaryKeyColumns: StockingPointID
      TargetType: Converter_PISPWithSafetyStocks
      TypeIndex: PISPWithSafetyStockTypeIndex
      EDIMLColumn KeepSafetyStock { Attribute: KeepSafetyStock ValueType: Boolean }
      EDIMLColumn ProductID { Attribute: ProductID ValueType: String }
      EDIMLColumn StockingPointID { Attribute: StockingPointID ValueType: String }
    }
    EDIMLTable Converter_ServiceLevel
    {
      PrimaryKeyColumns: ProductID
      PrimaryKeyColumns: StockingPointID
      TargetType: Converter_ServiceLevel
      TypeIndex: ConvertServiceLevelTypeIndex
      EDIMLColumn ProductID { Attribute: ProductID ValueType: String }
      EDIMLColumn ServiceLevel { Attribute: ServiceLevel ValueType: Real }
      EDIMLColumn StockingPointID { Attribute: StockingPointID ValueType: String }
    }
  }
  EDITransformation.Transformation TransformationConverteProduct
  {
    EDITableTransformation
    {
      InputTable: PISPWithSafetyStock_MP
      OutputTable: Converter_PISPWithSafetyStocks
      EDIColumnMatch
      {
        InputColumn: KeepSafetyStock
        OutputColumn: KeepSafetyStock
      }
      EDIColumnMatch
      {
        InputColumn: ProductID
        OutputColumn: ProductID
      }
      EDIColumnMatch
      {
        InputColumn: StockingPointID
        OutputColumn: StockingPointID
      }
    }
    EDITableTransformation
    {
      InputTable: ServiceLevel
      OutputTable: Converter_ServiceLevel
      EDIColumnMatch
      {
        InputColumn: ProductID
        OutputColumn: ProductID
      }
      EDIColumnMatch
      {
        InputColumn: ServiceLevelPercentage
        OutputColumn: ServiceLevel
      }
      EDIColumnMatch
      {
        InputColumn: StockingPointID
        OutputColumn: StockingPointID
      }
    }
  }
  EDIXLSLink.Source SourceConverteProduct
  {
    FileName: 'MP_Products.xlsx'
    EDIXLSLinkTable PISPWithSafetyStock_MP
    {
      Columns:
      [
        EDIXLSLinkColumn KeepSafetyStock { ValueType: Boolean }
        EDIXLSLinkColumn ProductID { ValueType: String }
        EDIXLSLinkColumn StockingPointID { ValueType: String }
      ]
    }
    EDIXLSLinkTable ServiceLevel
    {
      Columns:
      [
        EDIXLSLinkColumn StockingPointID { ValueType: String }
        EDIXLSLinkColumn ProductID { ValueType: String }
        EDIXLSLinkColumn ServiceLevelPercentage { ValueType: Real }
      ]
    }
  }
}