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
| Quintiq file version 2.0
| #parent: #root
| StaticMethod CreateAndSynchronizeAccountTemplate (
| ScenarioManager scenariomanager,
| MacroPlan macroplan,
| String accountName,
| String parentname,
| String accounttype,
| String reporttype,
| Real budget,
| Real defaultcost,
| String defaultcostdriver,
| Number defaultlengthoftime,
| String defaulttimeunit,
| Boolean ispercentage,
| Number displayindex
| )
| {
| Description: 'Create new account template and synchronize to macroplan'
| TextBody:
| [*
| account := select( scenariomanager, KPI.astype( Account ), account, account.Name()= accountName )
| if ( isnull( account ) )
| {
| account := Account::Create( scenariomanager,
| accountName , parentname , accounttype ,reporttype ,budget , defaultcost, defaultcostdriver ,
| defaultlengthoftime, defaulttimeunit, ispercentage, displayindex );
|
| }
|
| accounts:= selectset( scenariomanager, KPI.astype( Account ), acc, true, true );
| Account_MP::SynchronizeWithTemplate( macroplan, accounts );// Synchronize account template from scenario manager to macroplan
| *]
| InterfaceProperties { Accessibility: 'Module' }
| }
|
|