| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | | Quintiq file version 2.0 |  | #parent: #root |  | StaticMethod Create ( |  |   DataTransformationDefinition owner_i |  | ) as DataTransformationMP_Plan |  | { |  |   TextBody: |  |   [* |  |     dtdmp_plan := select( owner_i, DataTransformation.astype( DataTransformationMP_Plan ), dtd,  |  |                           dtd.ChannelName() = LibDEC_ChannelMP_Plan::CHANNEL_NAME() ); |  |      |  |     if( isnull( dtdmp_plan ) ) |  |     { |  |       dtdmp_plan := owner_i.DataTransformation( relnew, DataTransformationMP_Plan, |  |                                                 ChannelName := LibDEC_ChannelMP_Plan::CHANNEL_NAME() )  |  |     } |  |      |  |     return  dtdmp_plan; |  |   *] |  |   InterfaceProperties { Accessibility: 'Module' } |  | } | 
 |