| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | | Quintiq file version 2.0 |  | #parent: #root |  | StaticMethod GetDemoWorkflowFilePath ( |  |   String democategory |  | ) const as String |  | { |  |   Description: 'Retrieve the filepath of workflow demo data' |  |   TextBody: |  |   [* |  |     dataPath := GlobalParameters_MP::GetDefinitonsDir(); |  |      |  |     // Add extension "bin" as DP import/export topic for web needs extension to download properly in browser |  |     workflowPath := dataPath + "\" + GlobalParameters_MP::GetSalesDemoPath() + "\" + democategory + "\S&OP Workflow.bin"; |  |     workflowPath := workflowPath.ReplaceAll( '/', '\' ); |  |        |  |     return workflowPath; |  |   *] |  | } | 
 |