Unable to ViewZeroOut }bedrock.cube.view.create
Posted: Sat Nov 11, 2023 6:26 pm
Hi,
I am having an issue with the bedrock.cube.view.create where it cannot be seen from within a process that is calling it. The example below is a ViewZeroOut but I have a similar one when assigning the view as a datasource. I just wondered if it something anyone has come accross before or if I am doing something wrong?
Environment: PAW 2.080
Bedrock VersionL: 4.0
Issue: Unable to ViewZeroOut a view that was created when calling '}bedrock.cube.view.create' within the same process.
Code:
Error:
Prolog procedure line (25): View "GLMain_Bedrock_Test_VZO" in cube "GLMAIN" not found.
I am having an issue with the bedrock.cube.view.create where it cannot be seen from within a process that is calling it. The example below is a ViewZeroOut but I have a similar one when assigning the view as a datasource. I just wondered if it something anyone has come accross before or if I am doing something wrong?
Environment: PAW 2.080
Bedrock VersionL: 4.0
Issue: Unable to ViewZeroOut a view that was created when calling '}bedrock.cube.view.create' within the same process.
Code:
Code: Select all
vSlice = 'DR CR Reclass';
vLedger = 'Actual';
vTime = '2023001';
pView = 'GLMain_Bedrock_Test_VZO';
pCube = 'GLMAIN';
pFilter = 'Slice¦' | vSlice | '&Ledger¦' | vLedger | '&Time¦' | vTime ;
pTemp = 1;
pSuppressConsol = 1;
RunProcess( '}bedrock.cube.view.create', 'pView', pView, 'pCube' , pCube, 'pFilter' , pFilter, 'pTemp', pTemp, 'pFilter', pFilter, 'pSuppressConsol', pSuppressConsol);
ViewZeroOut(pCube, pView);
Prolog procedure line (25): View "GLMain_Bedrock_Test_VZO" in cube "GLMAIN" not found.