| Quintiq file version 2.0 | 
| #parent: #root | 
| Method MPSyncPostponementSpecification ( | 
|   Boolean isoverwritemanualconfig, | 
|   IOPostponementSpecifications iopostponementspecifications | 
| ) | 
| { | 
|   Description: 'Synchronization of PostponementSpecification for MPSync' | 
|   TextBody: | 
|   [* | 
|     // Select a set of existing PostponementSpecification | 
|     existing := selectset( this, SalesSegment_MP.PostponementSpecification, ps, true ); | 
|     updates := construct( PostponementSpecifications ); | 
|      | 
|     // Traverse the new set of valid PostponementSpecification | 
|     traverse( iopostponementspecifications, Elements, io, io.IsValid() ) | 
|     { | 
|       // Find existing PostponementSpecification | 
|       objectinstance := PostponementSpecification::FindPostponementSpecificationTypeIndex( io.SalesSegmentName() ); | 
|       // Find existing SalesSegment_MP | 
|       salessegment := SalesSegment_MP::FindSalesSegmentTypeIndex( io.SalesSegmentName() ); | 
|        | 
|       // Check if SalesSegment_MP is found | 
|       if( not isnull( salessegment ) ) | 
|       { | 
|         // If no existing PostponementSpecification is found, create one | 
|         if( isnull( objectinstance ) ) | 
|         { | 
|           objectinstance := PostponementSpecification::Create( salessegment, | 
|                                                                io.HorizonTimeUnit(), | 
|                                                                io.HorizonNrOfTimeUnit(), | 
|                                                                io.MaxTimeUnit(), | 
|                                                                io.MaxNrOfTimeUnit(), | 
|                                                                true | 
|                                                               ); | 
|         } | 
|         // Else, update PostponementSpecification | 
|         else | 
|         { | 
|           // Update PostponementSpecification | 
|           objectinstance.Update( salessegment, | 
|                                  io.HorizonTimeUnit(), | 
|                                  io.HorizonNrOfTimeUnit(), | 
|                                  io.MaxTimeUnit(), | 
|                                  io.MaxNrOfTimeUnit(), | 
|                                  true | 
|                                 ); | 
|         } | 
|         objectinstance.CustomUpdate( io, isoverwritemanualconfig ); | 
|         updates.Add( objectinstance ); | 
|       } | 
|     } | 
|      | 
|     // Get the set of old PostponementSpecification to be deleted | 
|     tobedeleteset := existing.Difference( updates ); | 
|      | 
|     // Traverse the set of PostponementSpecification to be deleted | 
|     // Only delete PostponementSpecification that is not manually configured or the imported instance should overwrite manual configuration | 
|     traverse( tobedeleteset, Elements, ele, not ele.IsManuallyConfigured() or isoverwritemanualconfig) | 
|     { | 
|       ele.Delete(); | 
|     } | 
|   *] | 
| } |