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
  | Quintiq file version 2.0 
 |  #parent: #root 
 |  StaticMethod Create ( 
 |    OptCampaignUnit owner, 
 |    DateTime starttime, 
 |    DateTime endtime, 
 |    String type, 
 |    Key referencekey, 
 |    Boolean isfixed 
 |  ) as OptCampaignUnitSubPeriod 
 |  { 
 |    TextBody: 
 |    [* 
 |      optsubunitperiod := owner.OptCampaignUnitSubPeriod( relnew, 
 |                                                          StartTime := starttime, 
 |                                                          EndTime := endtime, 
 |                                                          Type := type, 
 |                                                          ReferenceKey := referencekey, 
 |                                                          IsFixed := isfixed ); 
 |       
 |      //Calculate relations immidiately as they are used in next steps 
 |      if( type = OptCampaign::TypeCampaign() ) 
 |      { 
 |        Transaction::Transaction().Propagate( relation( OptCampaignUnitSubPeriod, Campaign_MP ) ); 
 |      } 
 |      else if( type = OptCampaign::TypeTransition() )  
 |      { 
 |        Transaction::Transaction().Propagate( relation( OptCampaignUnitSubPeriod, Transition_MP ) ); 
 |      } 
 |      Transaction::Transaction().Propagate( relation( OptCampaignUnitSubPeriod, UnitPeriod ) ); 
 |      return optsubunitperiod; 
 |    *] 
 |  } 
 |  
  |