-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
64fc04d
commit 6e5c9fd
Showing
4 changed files
with
134 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"@type":"Process", | ||
"Name":"create_Y2Ksales_cube", | ||
"HasSecurityAccess":false, | ||
"[email protected]":"create_Y2Ksales_cube.ti", | ||
"DataSource": | ||
{ | ||
"Type":"ASCII", | ||
"dataSourceNameForServer":"y2ksales.cma", | ||
"dataSourceNameForClient":"../Contents('Files')/Contents('y2ksales.cma')", | ||
"asciiHeaderRecords":0, | ||
"asciiQuoteCharacter":"\"", | ||
"asciiDecimalSeparator":".", | ||
"asciiThousandSeparator":",", | ||
"asciiDelimiterType":"Character", | ||
"asciiDelimiterChar":"," | ||
}, | ||
"Parameters":[], | ||
"Variables": | ||
[ | ||
{ | ||
"Name":"V2", | ||
"Type":"String", | ||
"Position":2, | ||
"StartByte":0, | ||
"EndByte":0 | ||
}, | ||
{ | ||
"Name":"V3", | ||
"Type":"String", | ||
"Position":3, | ||
"StartByte":0, | ||
"EndByte":0 | ||
}, | ||
{ | ||
"Name":"V4", | ||
"Type":"String", | ||
"Position":4, | ||
"StartByte":0, | ||
"EndByte":0 | ||
}, | ||
{ | ||
"Name":"V5", | ||
"Type":"String", | ||
"Position":5, | ||
"StartByte":0, | ||
"EndByte":0 | ||
}, | ||
{ | ||
"Name":"V6", | ||
"Type":"String", | ||
"Position":6, | ||
"StartByte":0, | ||
"EndByte":0 | ||
}, | ||
{ | ||
"Name":"V7", | ||
"Type":"Numeric", | ||
"Position":7, | ||
"StartByte":0, | ||
"EndByte":0 | ||
} | ||
], | ||
"UID": "17146564360003" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
#region Prolog | ||
|
||
#****Begin: Generated Statements*** | ||
if ( CubeExists('Y2Ksales') <> 0 ); | ||
CubeDestroy('Y2Ksales'); | ||
endif; | ||
DIMENSIONSORTORDER('region','','','BYINPUT','ASCENDING'); | ||
CUBECREATE('Y2Ksales','actvsbud','region','model','account1','month'); | ||
OldCubeLogChanges = CUBEGETLOGCHANGES('Y2Ksales'); | ||
CUBESETLOGCHANGES('Y2Ksales', 0); | ||
#****End: Generated Statements**** | ||
|
||
#endregion | ||
#region Metadata | ||
|
||
#****Begin: Generated Statements*** | ||
DIMENSIONELEMENTINSERT('region','',V3,'n'); | ||
#****End: Generated Statements**** | ||
|
||
#endregion | ||
#region Data | ||
|
||
#****Begin: Generated Statements*** | ||
CellPutN(V7,'Y2Ksales',V2,V3,V4,V5,V6); | ||
#****End: Generated Statements**** | ||
|
||
#endregion | ||
#region Epilog | ||
|
||
#****Begin: Generated Statements*** | ||
CUBESETLOGCHANGES('Y2Ksales', OldCubeLogChanges); | ||
#****End: Generated Statements**** | ||
#endregion |