| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 | | Quintiq file version 2.0 |  | #parent: #root |  | Method PTF_CreateMPTestScenario () id:Method_LibPTF_frmTestScenario_PTF_CreateMPTestScenario |  | { |  |   #keys: '[136682.0.314358756]' |  |   Body: |  |   [* |  |     // Create MP Test Scenario |  |     container :=  Form.PTF_GetPTF().LibPTF_TestScenarioContainer(); |  |     ptfname         := "MP sample test scenario"; |  |      |  |     ptfdescription  := "Create scenario, select scenario, import data (dataset dependent)"; |  |     ptftestscenario := LibPTF_TestScenario::Create( container, |  |                                                     ptfname, |  |                                                     ptfdescription |  |                                                   ); |  |      |  |     this.PTF_CreateScenario_ImportData( ptftestscenario, "Sales_demo" ); |  |   *] |  | } | 
 |