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
| Quintiq file version 2.0
| #parent: #root
| Method CreateKPIParts (
| LibOpt_Scope scope
| )
| {
| Description: 'Creates `LibOpt_SnapshotKPIParts` to log the individual values of each `LibOpt_KPI` for this `LibOpt_Run`.'
| TextBody:
| [*
| // BLG1 Apr-13-2022 (created)
| run := this.Run();
| traverse( run, KPIOnRun.KPI, kpi )
| {
| part := LibOpt_SnapshotKPIPart::Create( run, this, kpi );
| value := 0.0;
| if( kpi.istype( LibOpt_KPIGlobal ) )
| {
| value := run.GetGlobalKPI( kpi.Name() );
| }
| else
| {
| value := run.GetLocalKPI( kpi.Name(), scope );
| }
| part.KPIValue( value );
| }
| *]
| }
|
|