forked from cubewise-code/bedrock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bedrock.Dim.Export.pro
363 lines (295 loc) · 7.65 KB
/
Bedrock.Dim.Export.pro
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
601,100
602,"Bedrock.Dim.Export"
562,"SUBSET"
586,"}Cubes"
585,"}Cubes"
564,
565,"hhxV?gwyaZl?Vv4YotvwpmJI1x@C<`Y<sCfXpIrZyXGWu9pA6D0sskM8xZo8eDXRbt51@OkLm^tH<N6Uy@NjL\7DamEtpXeuuxU7?I\^YnmOIFGuejf5U>i`2sh<2gb?NA2@xdhPY;18F0FeeJGUL[Ag=Yf0Y0Z:8lu8I[QY6u2czktn7oNub3zKh6TxR_vKH2Hu\Uz>"
559,1
928,0
593,
594,
595,
597,
598,
596,
800,
801,
566,0
567,","
588,"."
589,
568,""""
570,
571,All
569,0
592,0
599,1000
560,5
pDimension
pExportPath
pExportFile
pTitleRecord
pDebug
561,5
2
2
2
1
1
590,5
pDimension,""
pExportPath,""
pExportFile,""
pTitleRecord,1
pDebug,0
637,5
pDimension,"Dimension"
pExportPath,"Export file path"
pExportFile,"Export file name (default extension .csv)"
pTitleRecord,"Boolean 1 = Yes - Include header row"
pDebug,"Debug Mode"
577,1
vElement
578,1
2
579,1
1
580,1
0
581,1
0
582,1
VarType=32ColType=827
603,0
572,108
#****Begin: Generated Statements***
#****End: Generated Statements****
#####################################################################################
##~~Copyright bedrocktm1.org 2011 www.bedrocktm1.org/how-to-licence.php Ver 3.0.0~~##
#####################################################################################
# This process will Export all Dimension elements to a File.
### Constants ###
cProcess = 'Bedrock.Dim.Export';
cTimeStamp = TimSt( Now, '\Y\m\d\h\i\s' );
sRandomInt = NumberToString( INT( RAND( ) * 1000 ));
cDebugFile = GetProcessErrorFileDirectory | cProcess | '.' | cTimeStamp | '.' | sRandomInt ;
### Initialise Debug ###
If( pDebug >= 1 );
# Set debug file name
sDebugFile = cDebugFile | 'Prolog.debug';
# Log start time
AsciiOutput( sDebugFile, 'Process Started: ' | TimSt( Now, '\d-\m-\Y \h:\i:\s' ) );
# Log parameters
AsciiOutput( sDebugFile, 'Parameters: pDimension : ' | pDimension );
AsciiOutput( sDebugFile, ' pExportPath : ' | pExportPath );
AsciiOutput( sDebugFile, ' pExportFile : ' | pExportFile );
AsciiOutput( sDebugFile, ' pTitleRecord : ' | NumberToString( pTitleRecord ) );
EndIf;
### Initialise ###
nRecordCount = 0;
### Validate Parameters ###
nErrors = 0;
# Validate dimension
If( Trim( pDimension ) @= '' );
nErrors = 1;
sMessage = 'No dimension specified';
If( pDebug >= 1 );
AsciiOutput( sDebugFile, sMessage );
EndIf;
DataSourceType = 'NULL';
ItemReject( sMessage );
EndIf;
If( DimensionExists( pDimension ) = 0 );
nErrors = 1;
sMessage = 'Invalid dimension: ' | pDimension;
If( pDebug >= 1 );
AsciiOutput( sDebugFile, sMessage );
EndIf;
DataSourceType = 'NULL';
ItemReject( sMessage );
EndIf;
# Validate export path
If( FileExists( pExportPath ) = 0 );
nErrors = 1;
sMessage = 'Invalid export path specified. Folder does not exist.';
If( pDebug >= 1 );
AsciiOutput( sDebugFile, sMessage );
EndIf;
DataSourceType = 'NULL';
ItemReject( sMessage );
EndIf;
If( SubSt( pExportPath, Long( pExportPath ), 1 ) @<> '\' );
pExportPath = pExportPath | '\';
EndIf;
# Validate export filename
If( pExportFile @= '' );
pExportFile = pDimension | '_Export.csv';
Else;
If( Scan( '.', pExportFile ) = 0 );
# No file extension specified
pExportFile = pExportFile | '.csv';
EndIf;
EndIf;
# Construct full export filename including path
sFilename = pExportPath | pExportFile;
### Constants
cCubeS1 = '}DimensionProperties';
### Assign Data Source ###
DatasourceNameForServer = pDimension;
DatasourceNameForClient = pDimension;
DataSourceType = 'SUBSET';
DatasourceDimensionSubset = 'ALL';
### End Prolog ###
573,4
#****Begin: Generated Statements***
#****End: Generated Statements****
574,108
#****Begin: Generated Statements***
#****End: Generated Statements****
#####################################################################################
##~~Copyright bedrocktm1.org 2011 www.bedrocktm1.org/how-to-licence.php Ver 3.1.0~~##
#####################################################################################
### Check for error in prolog ###
If( nErrors > 0 );
ProcessBreak;
EndIf;
### Record Count
nRecordCount = nRecordCount + 1;
### Export Header Information
## Line 1: File Metadata information
If(
nRecordCount = 1 & pTitleRecord = 1 );
AsciiOutput( sFilename,
'Export from dimension: ' | pDimension | ', all elements in index order. Total elements=' |
NumberToString( DimSiz( pDimension ) ) | '. On ' | Date( Now, 1 ) | ' at ' | Time );
## Line 2: Source Dimension
AsciiOutput( sFilename,
pDimension );
## Line 2: Sort Order Information
sSortElementType = CELLGETS( cCubeS1, pDimension, 'SORTELEMENTSTYPE' );
sSortComponentType = CELLGETS( cCubeS1, pDimension, 'SORTCOMPONENTSTYPE' );
sSortElementSense = CELLGETS( cCubeS1, pDimension, 'SORTELEMENTSSENSE' );
sSortComponentSense = CELLGETS( cCubeS1, pDimension, 'SORTCOMPONENTSSENSE' );
AsciiOutput( sFilename,
sSortElementType , sSortComponentType , sSortElementSense , sSortComponentSense );
## Line 3: Header Information
AsciiOutput( sFilename, 'Reserved' );
## Line 4: Header Information
AsciiOutput( sFilename, 'Reserved' );
## Line 6: Header Information
AsciiOutput( sFilename,
'Line_Type', 'Element', 'Value_1', 'Value_2', 'Value_3' );
### Attribute Information
sAttrDimName = '}ElementAttributes_' | pDimension;
IF(
DimensionExists( sAttrDimName ) = 1 );
nIndex = 1;
nLimit = DIMSIZ ( sAttrDimName );
WHILE( nIndex <= nLimit );
sElName = DIMNM( sAttrDimName, nIndex );
sElType = DTYPE( sAttrDimName, sElName );
AsciiOutput( sFilename, 'A', sElName, sElType );
nIndex = nIndex + 1;
END;
ENDIF;
ENDIF;
### Element Information
nElIndex = DIMIX ( pDimension, vElement );
sElType = DTYPE( pDimension, vElement );
AsciiOutput( sFilename,
'E', vElement, sElType, NumberToString( nElIndex ) );
### Element Parents
nElPar =ELPARN( pDimension, vElement );
IF(
nElPar > 0 );
nIndex = 1;
nLimit = nElPar;
WHILE( nIndex <= nLimit );
sElPar = ELPAR( pDimension, vElement, nIndex );
sElType = DTYPE( pDimension, sElPar );
nElWgt = ElWeight( pDimension, sElPar, vElement );
AsciiOutput( sFilename, 'P', vElement, sElPar, sElType, NumberToString( nElWgt ) );
nIndex = nIndex + 1;
END;
ENDIF;
### Attribute Value
IF(
DimensionExists( sAttrDimName ) = 1 );
nIndex = 1;
nLimit = DIMSIZ ( sAttrDimName );
WHILE( nIndex <= nLimit );
sElName = DIMNM( sAttrDimName, nIndex );
sElType = DTYPE( sAttrDimName, sElName );
IF(
sElType @= 'AN' );
sAttrValue = NumberToString( ATTRN( pDimension, vElement, sElName ) );
ELSE;
sAttrValue = ATTRS( pDimension, vElement, sElName );
ENDIF;
AsciiOutput( sFilename, 'V', vElement, sElName, sAttrValue );
nIndex = nIndex + 1;
END;
ENDIF;
575,35
#****Begin: Generated Statements***
#****End: Generated Statements****
#####################################################################################
##~~Copyright bedrocktm1.org 2011 www.bedrocktm1.org/how-to-licence.php Ver 3.1.0~~##
#####################################################################################
### Initialise Debug ###
If( pDebug >= 1 );
# Set debug file name
sDebugFile = cDebugFile | 'Epilog.debug';
# Log errors
If( nErrors <> 0 );
AsciiOutput( sDebugFile, 'Errors Occurred' );
EndIf;
# Log finish time
AsciiOutput( sDebugFile, 'Process Finished: ' | TimSt( Now, '\d-\m-\Y \h:\i:\s' ) );
EndIf;
### If errors occurred terminate process with a major error status ###
If( nErrors <> 0 );
ProcessQuit;
EndIf;
### End Epilog ###
576,CubeAction=1511DataAction=1503CubeLogChanges=0
930,0
638,1
804,0
1217,1
900,
901,
902,
938,0
937,
936,
935,
934,
932,0
933,0
903,
906,
929,
907,
908,
904,0
905,0
909,0
911,
912,
913,
914,
915,
916,
917,0
918,1
919,0
920,50000
921,""
922,""
923,0
924,""
925,""
926,""
927,""