-
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.
Fixed my create_Y2Ksales_cube process code
- Loading branch information
1 parent
6e5c9fd
commit ed8612b
Showing
1 changed file
with
0 additions
and
11 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,22 @@ | ||
#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 |