To remove a cube

Hi guys,
The requirement is to analyze the removal of a cube (an overview cube),
can u guys tell me the precaution and steps to take like archival, performance if
any and the functions this is doin has to be replaced by detail cube.
thanks,
your help will be greatly appreciated

Vj,
Replacing a cube with another one needs to be analyzed right from source till reporting. If the reports on the existing cube can be transfered to the detail cube(copied). Again, check if you need the xisting cube data or not. If needed you can keep it as it is and link the detail cube inbetween. just go ahead with impact analysis.

Similar Messages

  • To remove a cube frm PC

    hI all,
    how do i remove a cube from several diff PC's, (the cube is to be no longer valid),
    when(the time) and how do i transport these PC's in this process.
    Thanks,
    Your help will be rightly appreciated

    Vj,
    You will have some table where all te info related to a particular process chain exists. I don't have system access now because of which I can't search for that table.
    Also you can go to the respective PC and delink and delete teh process loading to that cube and transport that using transport connection.

  • Permissions for role in OLAP cube are removed when cube is rebuild

    Project Server rebuilds the OLAP cubes every 6 hours. I've recently added a role with "Process database" permissions, but this permission is removed each time the OLAP cube is rebuilt.
    I've read in a different thread (slightly older software versions) that to solve this issue, you can script and schedule the handling of permissions for that specific role, but it's not really a solution. The duration for the OLAP cube to rebuild varies
    in duration over time, and I'm not sure it's healthy to change the role permission on a cube when it's being rebuild.
    Is there a different, elegant way to solve this? I'm sure this can't be the intention?
    I'm running SQL Server 2008, Sharepoint 2010 SP2 and Project Server 2010 SP2

    sorry, i dont have much experience with project server. But, from the quick glance, it does look like as you said the configs are very limited including the ability to change user roles. My suggestion is that you take the cube solution and add the user to
    the role and redeploy to the AS. The assumption here is that, though you add the user manually, it is being written over with the old solution. 
    of course if you want to proceed with changing the roles via a script, you can schedule a job to run right after the cube has been processed each time. 
    probably better maintenance solution is to redeploy SSAS solution and reprocess. 

  • How to remove character from cube

    Dear Friends,
    How to remove character from info cube.
    I have removed from info source and update rules.
    but unable to remove from cube.
    Regards
    Ramu

    Hi,
    If you are working in BI 7.0, then you can use remodelling to remove the characteristic from the cube without deleting the data.
    But, if you are working in BW3.x, then definately you need to first delete the data, then delete the characteristic and then again activate the cube and load the data.
    There is no other solution except the above one...

  • View + stored function + synonym for other user

    Dear All!
    I've got a quite strange problem which I cannot decide whether it's caused by my lack of knowledge on the appropriate topic or by an Oracle bug. I'm already after some heavy googling on the topic and I was unable to track any valuable answers neither in forums nor in the Oracle documentation. I'll try to be as short and specific as possible.
    Database: Oracle 10g
    Result of "SELECT BANNER FROM V$VERSION":
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    "CORE     10.2.0.4.0     Production"
    TNS for Solaris: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    I have two users in the database for a single Web application: UAPP01, which is the owner of application DB objects and UAPP02 which is the application user connecting to the DB. The application runs for quite many years by now and DB structure layout has always been following a simple logic: for each DB object used by the app. (tables, views, packages and stored procedures/functions) and found in the UAPP01 there exists a synonym in the UAPP02 schema. For the privileges to be set correctly a role is created: RL_MY_APPL which is granted the necessary privileges on objects of UAPP01 (CRUD on tables, SELECT on views, EXECUTE on procedures, etc..). This role is granted to UAPP02.
    In the previous days I was about to extend the DB with a view that invokes a stored function. This pattern has already occured in the DB previously so I kept following existing conventions: I've created the stored function and the view in the UAPP01 schema, granted SELECT on the view to RL_MY_APPL and created the synonym for it in the UAPP02 schema. This is where the entire functionality began to act strange. I'll try to explain with a simplified example that was sufficient to reproduce the problem:
    REM ========================================
    REM Execute below code as UAPP01 user.
    REM ========================================
    REM Test function.
    CREATE OR REPLACE FUNCTION testfunction(p_param NUMBER) RETURN NUMBER IS
    BEGIN
    RETURN p_param *2;
    END;
    REM Testview version 1. causing trouble.
    CREATE OR REPLACE VIEW testview AS
    WITH testdata AS
    SELECT /*+ materialize*/ LEVEL AS d
    FROM dual CONNECT BY LEVEL <= 100
    SELECT a, b, c, SUM(d) AS sum_d
    FROM
    SELECT FLOOR(dbms_random.VALUE(1, 100)) a, FLOOR(dbms_random.VALUE(1, 100)) b, FLOOR(dbms_random.VALUE(1, 100)) c, testfunction(d) AS d
    FROM testdata
    GROUP BY CUBE(a, b, c)
    REM Testview version 2. not causing trouble.
    CREATE OR REPLACE VIEW testview AS
    SELECT a, b, c, SUM(d) AS sum_d
    FROM
    SELECT FLOOR(dbms_random.VALUE(1, 100)) a, FLOOR(dbms_random.VALUE(1, 100)) b, FLOOR(dbms_random.VALUE(1, 100)) c, testfunction(d) AS d
    FROM
    SELECT LEVEL AS d FROM dual CONNECT BY LEVEL <= 100
    GROUP BY (a, b, c)
    REM Synonym.
    CREATE OR REPLACE SYNONYM UAPP02.testview FOR UAPP01.testview;
    REM Grants.
    GRANT SELECT ON testview TO RL_MY_APPL;
    When creating TESTVIEW with the 1 ^st^ version I cannot query it using the UAPP02 user, I'm constantly getting the error: ORA-00904: : invalid identifier. However, when I use the 2 ^nd^ version everything runs perfectly. What is common in the two cases is that both versions use the TESTFUNCTION function. I have not granted the EXECUTE rights on TESTFUNCTION to the RL_MY_APPL since it was never needed previously (for other views using stored functions) and as far as I know it's not necessary (as both the view and the function are owned by UAPP01). The strange thing in the above behaviour is that the function is used by both versions, however only one of them fails. This is where I thought it's not a granting issue, otherwise neither of the versions would have worked and I think I would have received a different error stating that UAPP02 lacks the necessary privileges on underlying objects of the view.
    As I further digged into the problem by examining the EXPLAIN PLAN output for the two versions I found that version 1. leads to a TEMP TABLE TRANSFORMATION and to MULTI TABLE INSERTs, whereas version 2. simply executes the query without doing such things. In my setup I presume the MULTI TABLE INSERTs were caused by the GROUP BY CUBE. When I simply removed the CUBE and used only GROUP BY the TEMP TABLE TRANSFORMATION remained in place but the MULTI TABLE INSERTs disappeared. As a result of this small modification the view again began to work when I executed it through the synonym and using the UAPP02 user.
    With the original DB objects of our application the behaviour is even more strange: the error comes up if I select from the view and filter for a column that is grouped in the query whereas it works correctly if I filter for the aggregated columns. However, I couldn't reproduce this with the above simplified example.
    No problem occurs with any of the versions if I query the view using the UAPP01 user.
    This hectic behaviour made me suspect that the TEMP TABLE TRANSFORMATION + MULTI TABLE INSERT + synonym + stored function combo appears to bring a strange Oracle bug to the surface...
    As a final note: when executing GRANT EXECUTE ON TESTFUNCTION TO RL_MY_APPL everything works fine in all cases. I know I could simply live with this but I'd really like to get to the bottom of this. Although this extra GRANT appears to solve the problem I don't really trust it. I'd really like to avoid the bug emerging again in Production in case this extra GRANT were not sufficient due to some unknown misteries.
    Excuse me, the post has become a bit lengthy. Thanks in advance for anyone who's willing to read through and answer it!
    Regards,
    Krisztian Balazs Szaniszlo

    The error is thrown at run-time and only for the UAPP02 (second) user.
    The problem is that the appearance of errors is independent of whether the query contains the call to the stored function or not.
    So far I thought that if I use a stored function indirectly, like in this setup: UAPP02.synonym -> UAPP01.view -> UAPP01.stored function, then I don't need the grant. Of course, I understand that if I had used it directly, like :UAPP02.synonym -> UAPP01.stored function then I'd need the GRANT EXECUTE.
    Shall I just ignore the strange behaviour and go on by adding GRANT EXECUTE privilege on all the functions used indirectly through views? It seems to solve the problem, but this behaviour is disturbing me quite and I fear the real root cause of the problem can emerge later in a different fashion.

  • How to turn off the authorization checks for a object in infoproviders?

    Hi - how can I turn off the authorization check for an object (ex: 0orgunit) in infoproviders?
    I have 0orgunit as an authorization-relevant object and is used in one of the cubes. When reports are run for this cube, this is causing authorization issues. The object is present in other cubes also but I have to remove or turn off the authorization check of this cube alone. How to do this? Please help.
    Thanks,
    Raj.

    Hi Raj,
    Srinivas, is right , however in BI7 the correct transaction is RSECADMIN and not RSADMIN.
    In BW3.5, use RSSM transaction to do thins.
    OR
    Go to transaction RSECAUTH ---> Choose  the authorization object that has been created for org unit(and has been assigned to the user). Go to change mode. Remove the cube from the dimension 0TCAIPROV
    If you are using old authorization concept in 3.5 or in 7.0
    Go to RSSM. In the checks for infoprovider, enter your infoprovider name. Choose change.Here you will see a checkbox to switch off the authorization.
    Hope this helps you,
    Best regards,
    Sunmit.

  • Error at the Format title view

    Hello,
    Using obiee 11g, encountered few things
    I created a title view in my answers.Now i go to edit the Format Title Viewi.e. there is a underline below that titlei changes the colour of it to green.
    No problem works fine
    Now when i again go to change the colour to red i see there the border colour is null.But the report works finw.When i try to change to red.
    It gives a huge error.
    At the end it shows this error msg
    Error Codes: EIRWWH9E
    Location: saw.httpserver.processrequest, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.handleConnection, saw.rpc.server.dispatch, saw.threadpool, saw.threadpool, saw.threads
    Same thing happens when i have a static text and when i try to add the font of a static text.
    First time no problme but then whatever we added never will be visible and then when we try to change its gves error.
    Please tell me why like this is happening...
    Thanks

    Hello,
    This is the error i am getting when i try to add a font family as Arial to my existing static view.
    Error
         Error Displaying Results
    The current xml is invalid with the following errors: Bad xml instance! <?xml version="1.0"?> <saw:report xmlns:saw="com.siebel.analytics.web/report/v1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlVersion="201008230" xmlns:sawx="com.siebel.analytics.web/expression/v1.1"><saw:criteria xsi:type="saw:simpleCriteria" subjectArea="&quot;ToolsReporting&quot;" withinHierarchy="true"><saw:columns><saw:column xsi:type="saw:regularColumn" columnID="c732bb9dae8dd66c3"><saw:columnFormula><sawx:expr xsi:type="sawx:sqlExpression">&quot;F3 APT&quot;.&quot;Distinct Cases&quot;</sawx:expr></saw:columnFormula><saw:displayFormat><saw:formatSpec suppress="repeat" wrapText="true"><saw:dataFormat xsi:type="saw:number" minDigits="0" maxDigits="0" commas="true" negativeType="minus"/></saw:formatSpec></saw:displayFormat><saw:tableHeading><saw:caption fmt="text"><saw:text>F3 APT</saw:text></saw:caption></saw:tableHeading><saw:columnHeading><saw:displayFormat><saw:formatSpec/></saw:displayFormat><saw:caption fmt="text"><saw:text>Cases</saw:text></saw:caption></saw:columnHeading></saw:column><saw:column xsi:type="saw:regularColumn" columnID="c3a4a8c02a76fa939"><saw:columnFormula><sawx:expr xsi:type="sawx:sqlExpression">&quot;F3 APT&quot;.&quot;Distinct Users&quot;</sawx:expr></saw:columnFormula><saw:displayFormat><saw:formatSpec suppress="repeat" wrapText="true"><saw:dataFormat xsi:type="saw:number" minDigits="0" maxDigits="0" commas="true" negativeType="minus"/></saw:formatSpec></saw:displayFormat><saw:tableHeading><saw:caption fmt="text"><saw:text>F3 APT</saw:text></saw:caption></saw:tableHeading><saw:columnHeading><saw:caption fmt="text"><saw:text>Users</saw:text></saw:caption><saw:displayFormat><saw:formatSpec/></saw:displayFormat></saw:columnHeading></saw:column><saw:column xsi:type="saw:regularColumn" columnID="cffa55d9d04d4333a"><saw:columnFormula><sawx:expr xsi:type="sawx:sqlExpression">&quot;D3 APT TIME&quot;.&quot;Actual Year Month&quot;</sawx:expr></saw:columnFormula><saw:tableHeading><saw:caption fmt="text"><saw:text>D3 APT TIME</saw:text></saw:caption></saw:tableHeading><saw:columnHeading><saw:caption fmt="text"><saw:text>Month-Yr</saw:text></saw:caption></saw:columnHeading></saw:column><saw:column xsi:type="saw:regularColumn" columnID="c10dcc5dd2aac8845"><saw:columnFormula><sawx:expr xsi:type="sawx:sqlExpression">&quot;D3 APT TIME&quot;.&quot;Actual Year Quarter&quot;</sawx:expr></saw:columnFormula></saw:column><saw:column xsi:type="saw:regularColumn" columnID="c410b08ca33dd1272"><saw:columnFormula><sawx:expr xsi:type="sawx:sqlExpression">count(&quot;D3 APT&quot;.&quot;PPTFILENAME&quot;)</sawx:expr></saw:columnFormula><saw:displayFormat><saw:formatSpec suppress="repeat" wrapText="true"><saw:dataFormat xsi:type="saw:number" minDigits="0" maxDigits="0" commas="true" negativeType="minus"/></saw:formatSpec></saw:displayFormat><saw:tableHeading><saw:caption fmt="text"><saw:text>D3 APT</saw:text></saw:caption></saw:tableHeading><saw:columnHeading><saw:caption fmt="text"><saw:text>PPT's Downloaded</saw:text></saw:caption><saw:displayFormat><saw:formatSpec/></saw:displayFormat></saw:columnHeading></saw:column></saw:columns><saw:filter><sawx:expr xsi:type="sawx:logical" op="and"><sawx:expr xsi:type="sawx:logical" op="or"><sawx:expr xsi:type="sawx:comparison" op="notEqual"><sawx:expr xsi:type="sawx:sqlExpression">&quot;D0 GEN_LDAP_DETAILS_NEW&quot;.&quot;LEVEL3&quot;</sawx:expr><sawx:expr xsi:type="xsd:string">[email protected]</sawx:expr></sawx:expr><sawx:expr xsi:type="sawx:comparison" op="null"><sawx:expr xsi:type="sawx:sqlExpression">&quot;D0 GEN_LDAP_DETAILS_NEW&quot;.&quot;LEVEL3&quot;</sawx:expr></sawx:expr></sawx:expr><sawx:expr xsi:type="sawx:special" op="prompted" setVariable="dashboard.currentPage.variables['Region']"><sawx:expr xsi:type="sawx:sqlExpression">&quot;D0 GEN_LDAP_DETAILS_NEW&quot;.&quot;Region_All&quot;</sawx:expr></sawx:expr><sawx:expr xsi:type="sawx:special" op="prompted" setVariable="dashboard.currentPage.variables['Industry']"><sawx:expr xsi:type="sawx:sqlExpression">&quot;D3 APT&quot;.&quot;Industry_All&quot;</sawx:expr></sawx:expr><sawx:expr xsi:type="sawx:list" op="notContains"><sawx:expr xsi:type="sawx:sqlExpression">&quot;D3 APT&quot;.&quot;USERNAME&quot;</sawx:expr><sawx:expr xsi:type="xsd:string">[email protected]</sawx:expr></sawx:expr><sawx:expr xsi:type="sawx:sql">cast( &quot;D3 APT TIME&quot;.&quot;USEDTIME&quot; as Date) &gt;=@{StartDate}{Current_Date} and cast( &quot;D3 APT TIME&quot;.&quot;USED_TIME&quot; as Date) &lt;=@{EndDate}{Current_Date}</sawx:expr></sawx:expr></saw:filter><saw:columnOrder/></saw:criteria><saw:views currentView="2"><saw:view xsi:type="saw:compoundView" name="compoundView!1"><saw:cvTable><saw:cvRow><saw:cvCell viewName="titleView!2"><saw:displayFormat><saw:formatSpec/></saw:displayFormat></saw:cvCell></saw:cvRow><saw:cvRow><saw:cvCell viewName="htmlview!1"/></saw:cvRow><saw:cvRow><saw:cvCell viewName="pivotTableView!1"/></saw:cvRow></saw:cvTable></saw:view><saw:view xsi:type="saw:pivotTableView" name="pivotTableView!1"><saw:pivotChart chartPosition="right"><saw:view xsi:type="saw:dvtchart" name="pivotTableView!1~~GridChart"><saw:display type="line" subtype="default" renderFormat="default" mode="online" xAxisLiveScrolling="false" yAxisLiveScrolling="false" clientEventEnabled="false" animateOnDisplay="false"><saw:style barStyle="default" lineStyle="default" scatterStyle="default" fillStyle="default" bubblePercentSize="100" effect="2d"/></saw:display><saw:canvasFormat height="350" width="680" showGradient="true"><saw:dataLabels display="default" label="default" position="below" transparentBackground="true" valueAs="default" abbreviation="default"><saw:textFormat fontFamily="Arial" fontStyle="bold" fontSize="12" fontColor="#000000"/></saw:dataLabels><saw:gridlines default="false"><saw:horizontal><saw:major visible="true"/><saw:minor visible="false"/></saw:horizontal><saw:vertical><saw:major visible="true"/><saw:minor visible="false"/></saw:vertical></saw:gridlines><saw:title mode="custom"><saw:caption><saw:text/></saw:caption></saw:title></saw:canvasFormat><saw:legendFormat position="default" transparentFill="true"><saw:textFormat fontFamily="Arial" fontStyle="bold" fontSize="12" fontColor="#000000"/></saw:legendFormat><saw:axesFormats syncAxis="false"><saw:axisFormat axis="Y1" displayScaleLabels="true"><saw:scale scaleValues="auto" showMajorTicks="false" showMinorTicks="false" logarithmic="false" defaultTicks="true"/><saw:title mode="auto"><saw:caption truncate="false" truncateLength="0"/><saw:displayFormat><saw:formatSpec fontFamily="Arial" fontStyle="bold" fontSize="12" fontColor="#000000"/></saw:displayFormat></saw:title><saw:scaleMarkers/><saw:labels rotate="0" rotateLabels="false" stagger="false" skip="false" abbreviation="default"/><saw:textFormat fontFamily="Arial" fontStyle="bold" fontSize="12" fontColor="#000000"/></saw:axisFormat><saw:axisFormat axis="X" displayScaleLabels="true"><saw:scale scaleValues="auto" showMajorTicks="false" showMinorTicks="false" logarithmic="false"/><saw:title mode="auto"><saw:caption truncate="false" truncateLength="0"/><saw:displayFormat><saw:formatSpec fontFamily="Arial" fontStyle="bold" fontSize="12" fontColor="#000000"/></saw:displayFormat></saw:title><saw:labels rotate="0" rotateLabels="false" stagger="false" skip="false" abbreviation="default"/><saw:textFormat fontFamily="Arial" fontStyle="bold" fontSize="12" fontColor="#000000"/></saw:axisFormat></saw:axesFormats><saw:seriesFormats><saw:seriesFormatGroup name="line"><saw:seriesFormatRule><saw:seriesCondition position="1"/><saw:visualFormats><saw:visualFormat color="#006600" lineStyle="default" lineWidth="7" symbol="default"/></saw:visualFormats></saw:seriesFormatRule><saw:seriesFormatRule><saw:seriesCondition position="2"/><saw:visualFormats><saw:visualFormat color="#FF0000" lineStyle="default" lineWidth="7" symbol="default"/></saw:visualFormats></saw:seriesFormatRule><saw:seriesFormatRule><saw:seriesCondition position="3"/><saw:visualFormats><saw:visualFormat color="#CCCCFF" lineStyle="default" lineWidth="7" symbol="default"/></saw:visualFormats></saw:seriesFormatRule></saw:seriesFormatGroup></saw:seriesFormats><saw:selections><saw:categories><saw:category><saw:columnRef columnID="c10dcc5dd2aac8845"/></saw:category><saw:category><saw:columnRef columnID="cffa55d9d04d4333a"/></saw:category></saw:categories><saw:measures showMeasureLabelsOnCategory="false"><saw:column measureType="y"><saw:columnRef columnID="c3a4a8c02a76fa939"/></saw:column><saw:column measureType="y"><saw:columnRef columnID="c732bb9dae8dd66c3"/></saw:column><saw:column measureType="y"><saw:columnRef columnID="c410b08ca33dd1272"/></saw:column></saw:measures><saw:seriesGenerators><saw:measureLabels/></saw:seriesGenerators></saw:selections></saw:view></saw:pivotChart><saw:sectionContent><saw:displayFormat><saw:formatSpec width="530" wrapText="true" height="14" hAlign="right" vAlign="middle"/></saw:displayFormat></saw:sectionContent><saw:edges><saw:edge axis="page" showColumnHeader="true"/><saw:edge axis="section"/><saw:edge axis="row" showColumnHeader="true"><saw:displayGrandTotals><saw:displayGrandTotal id="t1" grandTotalPosition="after"><saw:memberFormat><saw:displayFormat><saw:formatSpec wrapText="true" fontFamily="Arial" fontStyle="bold" fontSize="14"/></saw:displayFormat></saw:memberFormat><saw:dataBodyFormat><saw:displayFormat><saw:formatSpec wrapText="true" fontFamily="Arial" fontStyle="bold" fontSize="12"/></saw:displayFormat></saw:dataBodyFormat></saw:displayGrandTotal></saw:displayGrandTotals><saw:edgeLayers><saw:edgeLayer type="column" columnID="c10dcc5dd2aac8845" visibility="hidden"><saw:headerFormat><saw:displayFormat><saw:formatSpec wrapText="true"/></saw:displayFormat></saw:headerFormat></saw:edgeLayer><saw:edgeLayer type="column" columnID="cffa55d9d04d4333a"><saw:headerFormat><saw:displayFormat><saw:formatSpec fontStyle="bold" wrapText="true" fontSize="14"/></saw:displayFormat></saw:headerFormat><saw:memberFormat><saw:displayFormat><saw:formatSpec wrapText="true" fontFamily="Arial" fontSize="14" fontStyle="bold"/></saw:displayFormat></saw:memberFormat></saw:edgeLayer></saw:edgeLayers></saw:edge><saw:edge axis="column"><saw:edgeLayers><saw:edgeLayer type="measure"/></saw:edgeLayers></saw:edge></saw:edges><saw:measuresList><saw:measure columnID="c3a4a8c02a76fa939"><saw:memberFormat><saw:displayFormat><saw:formatSpec fontStyle="bold" wrapText="true" fontSize="14" fontFamily="Arial"/></saw:displayFormat></saw:memberFormat><saw:dataBodyFormat><saw:displayFormat><saw:formatSpec wrapText="true" fontFamily="Arial" fontSize="12"/></saw:displayFormat></saw:dataBodyFormat></saw:measure><saw:measure columnID="c732bb9dae8dd66c3"><saw:memberFormat><saw:displayFormat><saw:formatSpec fontStyle="bold" wrapText="true" fontSize="14" fontFamily="Arial"/></saw:displayFormat></saw:memberFormat><saw:dataBodyFormat><saw:displayFormat><saw:formatSpec wrapText="true" fontFamily="Arial" fontSize="12"/></saw:displayFormat></saw:dataBodyFormat></saw:measure><saw:measure columnID="c410b08ca33dd1272"><saw:memberFormat><saw:displayFormat><saw:formatSpec fontStyle="bold" wrapText="true" fontFamily="Arial" fontSize="14"/></saw:displayFormat></saw:memberFormat><saw:dataBodyFormat><saw:displayFormat><saw:formatSpec wrapText="true" fontFamily="Arial" fontSize="12"/></saw:displayFormat></saw:dataBodyFormat></saw:measure></saw:measuresList></saw:view><saw:view xsi:type="saw:htmlview" name="htmlview!1"><saw:staticText><saw:caption fmt="text"><saw:text>Region = @{Region}{All} Industry = @{Industry}{All}</saw:text></saw:caption></saw:staticText><saw:displayFormat fontFamily="Arial"><saw:formatSpec fontColor="#000000"/></saw:displayFormat></saw:view><saw:view xsi:type="saw:titleView" name="titleView!2" includeName="false" startedDisplay="none"><saw:title><saw:caption fmt="text"><saw:text>CPT Usage</saw:text></saw:caption><saw:displayFormat><saw:formatSpec fontColor="#FF0000" wrapText="false" fontFamily="Arial" fontStyle="bold" fontSize="16"/></saw:displayFormat></saw:title><saw:displayFormat><saw:formatSpec borderColor="#FF0000" borderPosition="8" borderStyle="thick" wrapText="true"/></saw:displayFormat></saw:view></saw:views><saw:prompts scope="report" subjectArea="&quot;APTReporting&quot;"/></saw:report> Line:4, Col:7234, Attribute 'fontFamily' is not declared for element 'displayFormat'
    Error Details
    Error Codes: EIRWWH9E
    Location: saw.httpserver.processrequest, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.handleConnection, saw.rpc.server.dispatch, saw.threadpool, saw.threadpool, saw.threads
    Can u pls tell me how ill remove the Cube Definition is invalid?
    My only intention is Region = @{Region}{All} Industry = @{Industry}{All} i would like to make this appear little bigger so want the font size to be 14 and family as Arial.
    Is there any other way i can do?
    Thanks

  • Status of the player

    hi
    ok im developing a game, in the game the player has to hit moles that pop up randomly and i want to add a status bar of the player in to the game.
    what i mean is that the bar has to ends good and bad. when the game starts the player is rated as a middle player because the player is niethjer good or bad. but as the game starts the bar begins to decrease and if the player hits the moles then the bar goes up representing that the player is quite good. basically its the job of the player that causes the bar to go either up or down according to the how the player plays. so if the player hits moles the status of the bar goes up and if the player misses the moles then the status of the bar starts to decreses.
    i hope that kinda makes sense but i am stuck!!!!!! i have no idea how to go about it.
    any suggestions or sample code is greately apprieciated!!!!!!!!
    thanks

    You could use cubes placed one after the other to represent the status. If there was no gap between a cube and the one which followed, it would look like a bar. So say if the status was full you would have maybe ten cubes all positioned one after the other, as time progressed you would remove the cube on the end, and if the player hit a mole, you would add one to the end.
    The way you would code this would be to create a translation for each cube and then attach it to the translation of the cube before it. Each translation would be the same distance, but because each cube is chained to end it undergoes all the translations from the start.
    CUBE 1
    |
    ------------ CUBE 2
    |
    --------------- CUBE 3
    |
    ------------------ CUBE 4
    Jonathan

  • Transports issue regarding navigational attribute

    Hi,
    I used to have some navigational attribues in somecubes and Multiprovider but as per the latest requirement from the customer again converted them as display attributes in masterdata so that automatically removed from cubes and multiprovider with out even our interventions as we know..
    So assigned to transport request and transporting into further systems then we r getting error as
    "Navigation attribute XYZ  does not (actively) exist
    Message no. R7748"
    but when i do check of cube it does not give any error but when i am transporting it is again loooking for those navigational attributes in target system..
    I am not sure why it is giving problem like this ...Just i am guessing is it because i did not remove navigational attribute flag first from cube instead of just master data directly ...but that should not be a problem as per my knowledge...
    Can any experts reply to me asap if you come accross this kind of problem ....
    Thanks & Rgards,
    BRK

    Editted as I understand the solution now.
    If you want to delete navigational attributes from a multi provider, cube and master data it needs to be done in the order:
    - remove navigational attribute from MultiProvider
    - remove navigational attribute from Cube
    - set navigational attribute to be display attribute on InfoObject
    If you don't follow this order e.g. just set navigational attribute to be a navigational attribute on master data then you get problem where every time you transport cube it says nav. attribute is inactive even though (as far as you can see) the nav. attribute does not exist.
    btw, if you have dug yourself into a hole then you need to re-create the navigational attribute on the InfoObject and then add it back to the cube and multiprovider - transport this and then follow correct order.
    Edited by: Mark Roberts on Oct 15, 2008 6:49 PM

  • BIA Server problem

    Hi All,
    In the monitor screen,under the details tab  i  see 'BIA server is overloaded '  but the requests are rolled up and available for reporting.
    will it have an impact on the data in the reporting??
    Thanks,
    V.Singh.

    Hi,
    You have an elevated risk according to BWA best practices. You are receiving this alert because you are using more than 50% of the allocated memory in a given check point ( even if you pay 100% license you are supposed to leave 50% of the memory idle for temp indexes, query joins etc ) . This warning usually comes with many "number of memory unloads in the past 24 hours etc" warnings. But there is practically no impact to your reporting - this claim can be challenged by theoreticians.
    You either take a risk and just keep monitoring it so that it won't get worse, or remove a cube or two from BWA. But definitely consider planning "logically partition" your cubes . This will allow you to control the growth of BWA. Say you have a revenue cube; every physical/fiscal year copy the cube to a new cube and start loading to new cube and add the new cube under multiproviders. The next year you remove the oldest cube from BWA and introduce the new one..
    Besides this, look at the standalone Python tool to see the peek times. You may be just getting this warning in certain time window e.g while loading data to BWA and running information broadcasting queries at the same time..Or you may be running APD queries that used to cause a lot of issues - i am not sure if it's still the case.
    Cheers
    Tansu

  • Anyone knows about the Error 213:11 ?

    I'll appreciate help fixing this problem

    Here is the error information
    01493, 0, "Invalid specification for dimension \"%(2)s\" in precompute condition for cube \"%(1)s\""// *Cause: The precompute condition contained an invalid specification. When a precompute percent is also specified, the precompute condition can specify only that the last dimensions in the cube's consistent solve specification are not precomputed.
    // *Action: Remove the cube's precompute condition or precompute percent, or rewrite the cube's precompute condition so that it specifies only NONE for dimensions at the end of the cube's consistent solve specification.>
    I have seen this once before with OWB. In that case it was due to mixed use of 'level' and 'cost' based precompute specifications. At the OLAP XML level the cube contained both a PrecomputeCondition and a PrecomputePercent value.
    PrecomputeCondition is for 'level based' and PrecomputePercent is for 'cost based' aggregation. You can specify one, but not both in a single cube. More specifically, if you have PrecomputeCondition, then you need to either remove PrecomputePercent or else specify PrecomputePercent="0".
    Here is what I heard from an OWB developer at the UI level.
    If you switch off the level based aggregation on the cube's aggregation panel, that should make you good to go. For each dimension that has levels selected for precompute, just deselect.

  • Adding characteristic

    Hi'.
    I have added a new characteristic to an infoprovider and assigned it to a new dimension. When I transport this correction to our QA system, I get an error stating : <b>"InfoCube contains data; intentional changes not permitted"</b>.
    I have found an OSS message(934250) which adresses issues around changing line item dimensions (which I haven't) but also adresses an issue regarding partitioning of infocube. We have not partitioned the cube, so I have no clue on what to do as deleting data and reloading is out of the question due to the amount of data. Can anyone help me out on this? I am on a 3.0B system using Oracle.
    KR Michael

    Hi
    You can add charecteristics but after adding the charecteristics you need to do the following
    Remove the data in the cube
    Reload the data into the cube after the addition of the charecteristics
    In Bi7, there is an option called remodelling tool which enables you to add charecteristics without removing the cube data. In all lower versions you have to remove data and reload to capture the records for the newly added charecteristics
    Regards
    N Ganesh

  • Suggestions of building this data warehouse

    Hi,
    We have 5 source systems and all the data are coming in to 5 different ODSes in our data warehouse.
    For reporting purposes,
    1). do you suggest that we feed each ODS into a one cube each and push them into a multiprovider
    or
    2) feed all 5 ODSes into a single cube
    3) What is the advantage of 1) over 2); and 2) over 1)
    4) Any suggestions on how best to configure the cubes and/or multiprovider?
    5) How should the keys fields of the ODSes be handled in the Cube?
    6) How best do your suggest that we handle this with respect to BW authorization?
    Thanks

    Hi,
    thanks for the response.
    I don't clearly get some of the points you made well.
    On 1) & 2), you indicated that
    "I would say 1 would be right way to do it. In that case, you can split ur KF values by dataprovider if ever you need them to comparision scenario.".
    What did you mean by "...ou can split ur KF values by dataprovider if ever you need them to comparision scenario"?
    I was also lost on the "split ur KF laues.." and " comparison scenario"
    I will appreciate and example to clarify this
    On 3) you wrote that 
    "Unless you dont have any field in each ODS to differentiate the data, putting all the data into a single cube would prevent you from spilting the data by dataprovider."
    Can you clarify (preferably with an exmaple) what you meant by ""Unless you dont have any field in each ODS to differentiate the data"?
    For performance purposes, won't multiple cubes be better than placing all the data in a single cube?
    I thought I read that the ODSes to multiple cubes and them pushing to a multiprovider has some advantages of being able to add or remove a cube whithout the need to modify the queries.
    On 4) what "data structure" were you refering to? ( this is logistic data).
    Thanks

  • Alert Manager, can a triger or before/after delete be used

    Is there a way to create a alert using the alert manager responsibility with a before or after delete statement to capture data before it is removed from a table? I would like to do this agianst the FND_RESP_FUCNTIONS table to know if someone removes a function exclusion from a repsonsibility.
    Message was edited by:
    si09

    Hi Chetan,
    Following is the error message.
    "Fiscal year variants have to be attached to a fixed value
    Message no. R7674
    Diagnosis
    You want to partition an InfoCube using time characteristic 0FISCPER or use 0FISCPER in multidimensional clustering (MDC). This is only permitted if you also assign a constant to the fiscal year variants (0FISCVARNT).
    Procedure
    Assign a constant to the characteristc 0FISCVARNT. To do this, choose "Object-Specific Properties" from the context menu for 0FISCVARNT."
    The cube is partitioned by 0FISCPER.
    Meanwhile, we have a interim solution to the issue. We will be mapping the 0FISCVARNT in infosource/Transfer rule in our 1st level ODS. We will remove the cube level constant assignment to 0FISCVARNT.
    Let me know your opinion.
    Thanks
    Mridul

  • Set a new OLAP connection for a dashboard

    Hi guys, I have one spreadsheet/dashboard linked with, let's say, Pippo cube. Everything it's ok. Now, I had to remove Pippo cube and I built Minnie cube. How can I set Minnie cube in the already working spreadsheet/dashboard?
    Should I rewrite all the dashboard with all the charts or there is an easyer solution?
    Thanks

    Hi Diegoctn0,
    Glad to hear that your issue had been solved by yourself. Thank you for your sharing which will help other forum members who have the similar issue.
    Regards,
    Charlie Liao
    TechNet Community Support

Maybe you are looking for

  • Mac Creative Cloud menubar opens to blank window.

    This week the creative cloud menu bar opens to a blank window. I've tried delting opm.db in OOBE but that makes no difference. Anyone got any solutions or is the problem in the recent update to CC?

  • HP OfficeJet Pro L7680 All-In-One

    I am considering deploying a wireless print server for my home - specifically, a Netgear WGPS606.  I checked with Netgear and the HP OfficeJet Pro L7680 is not listed on their printer compatibility list while dozens of other HP OficeJet models are fo

  • Vendor Analysis data?

    i have below requirement to create report in "Accounts Payable". Key figures: Balance Purchase Volume - (Value & Quantity) Characteristics: Time Vendor vendor reconciliation amount Material Material Group I think i will get details from Purchase as w

  • My iPhone got 3 apps which I didn't install..

    Hello. everyone... I got some problems that, I've got 3 applications on my iphone which I totally didn't install. when I open my phone. I saw there were 3 applications name as Interpret, A Love Calc and Compass App. These 3 application were " PAUSED

  • I upgraded My 3GS to ios 5.0.1 but it won't activate and just tells me to try again later because the activationserver is down

    I upgraded My 3GS to ios 5.0.1 but it won't activate and just tells me to try again later because the activationserver is down. I have tried both with and without a SIM and it still doesn't work. I also tried connecting it to itunes but it didn't hel