SAP HANA: Error while activating Graphical Calculation Views

Hello,
I am receiving the below error while activating a Graphical Calculation View.
I am getting this error lately. Not sure what is causing this because the calculation views worked just fine before.
It is failing at the Repository Activation step with the Activation ID 2146.
It says - Repository: Revalidation failed for at least one object.
MDXRuntime: Internal deployment of object failed: Internal Error:Create Scenario: failed aCalcEngine.createScenario(): The following errors occured: Could not create repository entry for scenario (34053)nnprinting XML <?xml version="1.0" encoding="UTF-8" standalone="no"?><cubeSchema defaultLanguage="EN" defaultSchema="_SYS_BIC" operation="createCalculationScenario" version="3"><calculationScenario name="sflight/GC_AGENCY_REVENUE" schema="_SYS_BIC"><dataSources><tableDataSource name="SBOOK" schema="SFLIGHT" table="SBOOK"><attributes><allAttribute /></attributes></tableDataSource><tableDataSource name="STRAVELAG" schema="SFLIGHT" table="STRAVELAG"><attributes><allAttribute /></attributes></tableDataSource></dataSources><calculationViews><join name="Join_1" type="inner"><viewAttributes><viewAttribute ignoreFromInputsFlag="false" isVisible="true" name="MANDT" /><viewAttribute ignoreFromInputsFlag="false" isVisible="true" name="AGENCYNUM" /><viewAttribute ignoreFromInputsFlag="false" isVisible="true" name="FORCURAM" /><viewAttribute ignoreFromInputsFlag="false" isVisible="true" name="LOCCURAM" /><viewAttribute ignoreFromInputsFlag="false" isVisible="true" name="NAME" /></viewAttributes><inputs><input name="SBOOK"><mapping source="MANDT" target="MANDT"/><mapping source="AGENCYNUM" target="AGENCYNUM"/><mapping source="FORCURAM" target="FORCURAM"/><mapping source="LOCCURAM" target="LOCCURAM"/></input><input name="STRAVELAG"><mapping source="MANDT" target="MANDT"/><mapping source="AGENCYNUM" target="AGENCYNUM"/><mapping source="NAME" target="NAME"/></input></inputs><joinAttributes><joinAttribute excludeFlag="false" name="MANDT" /><joinAttribute excludeFlag="false" name="AGENCYNUM" /></joinAttributes></join><aggregation name="finalAggregation" defaultViewFlag="true"><inputs><input name="Join_1"><mapping source="NAME" target="NAME"/><mapping source="AGENCYNUM" target="AGENCYNUM"/><mapping source="MANDT" target="MANDT"/><mapping source="LOCCURAM" target="LOCCURAM"/><mapping source="FORCURAM" target="FORCURAM"/></input></inputs><viewAttributes><viewAttribute name="NAME"/><viewAttribute name="AGENCYNUM"/><viewAttribute name="MANDT"/></viewAttributes><keyfigures><keyfigure name="LOCCURAM" aggregationType="sum"/><keyfigure name="FORCURAM" aggregationType="sum"/><keyfigure name="row.count" datatype="int" isVisible="false" aggregationType="count"/></keyfigures><calculationNodeHints countStarAttribute="row.count"/></aggregation></calculationViews></calculationScenario></cubeSchema>nVersion: 33n
I am using the SFLIGHT schema which is provided by SAP.
Any pointer is appreciated.

Hi Murali
I met the exactly same issue when I try to activate a graphical calculation views.
I created a new user in HANA db,  then create a simple graphical calculation view(just from one table from this user). It doesn't work. All attribute views work fine. There's no related column view under _sys_bic.
HANA database version is 1.00.31 runs on HP DL580 512GB. And here's the error message -
"MDXRuntime: Internal deployment of object failed: Internal Error:Create Scenario: failed aCalcEngine.createScenario(): The following errors occured: Could not create repository entry for scenario (34053)nnprinting XML <?xml version="1.0" encoding="UTF-8" standalone="no"?><cubeSchema defaultLanguage="EN" defaultSchema="_SYS_BIC" operation="createCalculationScenario" version="3"><calculationScenario name="co-pc-river/CALC_TEST1" schema="_SYS_BIC"><dataSources><tableDataSource name="JEST" schema="GLR" table="JEST"><attributes><allAttribute /></attributes></tableDataSource></dataSources><calculationViews><projection name="finalProjection" defaultViewFlag="true"><inputs><input name="JEST"><mapping source="MANDT" target="MANDT"/><mapping source="OBJNR" target="OBJNR"/><mapping source="STAT" target="STAT"/><mapping source="INACT" target="INACT"/></input></inputs><viewAttributes><viewAttribute name="MANDT"/><viewAttribute name="OBJNR"/><viewAttribute name="STAT"/><viewAttribute name="INACT"/></viewAttributes></projection></calculationViews></calculationScenario></cubeSchema>nVersion: 64n"
Best Regards
Mao Mingqi

Similar Messages

  • Error in activating Sqlscript Calculation view - Data type mismatch

    Hi All,
    I am trying to create a Calculation view using sql script. When I try to activate the calculation view I get the below error., Could you please help.
    Error
    Internal deployment of object failed;Repository: Encountered an error in repository runtime extension;Internal Error:Deploy Calculation View: SQL: transaction rolled back by an internal error: column store error: [34011] failed to save calculation scenario : The following errors occured: Inconsistent calculation model (34011)nDetails (Errors):n- CalculationNode (_ELECTION_ANALYTICAL_VIEW) -> attributes -> attribute (VOTE):
    Datatype int of VOTE does not match to datatype fixed18.0(9) in datasource.
    nnnSet Schema DDL statement: set schema "_SYS_BIC"nType DDL: create type "_SYS_BIC"."p1940328499trial.logesh.HanaElection/ELECTION_SQL_CA/proc/tabletype/VAR_OUT" as table ("VOTE" INTEGER, "NAME_1" VARCHAR(250), "NAME_4" VARCHAR(250))nProcedure DDL: create procedure "_SYS_BIC"."p1940328499trial.logesh.HanaElection/ELECTION_SQL_CA/proc" ( OUT var_out "_SYS_BIC"."p1940328499trial.logesh.HanaElection/ELECTION_SQL_CA/proc/tabletype/VAR_OUT" ) language sqlscript sql security definer reads sql data as  n /********* Begin Procedure Script ************/ n BEGIN n n election_analytical_view = CE_OLAP_VIEW("_SYS_BIC"."p1940328499trial.logesh.HanaElection/ELECTION_RESULTS_ANA",[VOTE,NAME,NAME_1,NAME_3,NAME_4]);n n var_out = CE_PROJECTION(:election_analytical_view,[VOTE,NAME_1,NAME_4]);nnnnEND /********* End Procedure Script ************/n
    SQL Script
    /********* Begin Procedure Script ************/
    BEGIN
    election_analytical_view = CE_OLAP_VIEW("_SYS_BIC"."p1940328499trial.logesh.HanaElection/ELECTION_RESULTS_ANA",[VOTE,NAME,NAME_1,NAME_3,NAME_4]);
    var_out = CE_PROJECTION(:election_analytical_view,[VOTE,NAME_1,NAME_4]);
    END /********* End Procedure Script ************/

    Hi Logesh,
    You have to use at least one aggregation while using CE_OLAP_VIEW. You can not use the same with out aggregation of at least on of the available measures .
    page 96 of SQL Script reference says
    Note you must have at least one <aggregation_exp> in the attributes.
    where
    <aggregate_exp> ::= <aggregate_func>(<aggregate_column> [AS <column_alias>])
    Specifies the required aggregation expression for the key figure.
    <aggregate_func> ::= COUNT | SUM | MIN | MAX
    Specifies the aggregation function to use. Supported aggregation functions are:
    ●count("column")
    ●sum("column")
    ●min("column")
    ●max("column")
    Sreehari

  • Simple way to create a "RANK" on a graphical Calculation-view ?

    Hi guys,
    I've saw some articles around, about creating a "Rank" column, in order to select TOP N inside analysis level (Design Studio in this case).
    The problem is, that all of them were incredibly complicated (comparing....), And I wonder if there's a simple way to any "Rank" function these days (or in future versions).
    My source:
    SAP HANA: Implementing RANK using Graphical calculation View
    Thank you,
    Or.

    Hello Or,
    Using Script based view, you can use RANK() function.
    From Graphical, I have not found any way to implement RANK. So will have to wait along with you to know, if there is an easier way to implement rank from graphical calculation view.
    Regards,
    Krishna Tangudu

  • Error while activation the Datastore Object

    Hi folks,
    I am in SAP BASIS, so not aware of BI very much...can u help me in this,
    One user is getting error while activation the Datastore Object
    below is error log,
    (Green) Activation of Objects with Type DataStore Object
    (Green) Checking Objects with Type DataStore Object
    (Green) Checking DataStore Object DSO_TEST
    (Green) DataStore object DSO_TEST is consistent
    Table/view /BIC/VDSO_TEST2 (type VIEW) from DataStore object DSO_TEST saved
    Change log for DataStore object "DSO_TEST" saved successfully
    Writing of object catalog entries (TADIR)
    (RED) The creation of the export DataSource failed
    (RED) Error during the retrieval of the logon data stored in secure storage
    (RED) Error when creating the export DataSource and dependent Objects
    (RED) Error when activating DataStore Object DSO_TEST
    Thx. in advance
    Yash

    Hi Yash,
    Check out the below thread:
    [activation of the Datastore Object.|error in ODS activation/export datasource;
    Hope it helps you!
    Please reward points if helpful
    Manish

  • Error While activating 0Material(BI7)

    Dear Gurus,
                     I am trying to Activate 0Material Infoobject after deleting a Navigation attribute(Classification characteristics) ,the system throws a error " Error while activating Type Info object".And when i navigated to the Detailed error message it says " error : Internal Activation(info object) - error while converting master data tables .Can anyone help me out with this.
    manythanks
    arun

    Dear gurus,
                     We posted the error message to SAP and they have replied " while we deleted the attributes from the Info object(0material) it broke the D-Version of the Object and so to Transport the Info object from another Working system to the Problem(Dev)system ,Install and then activate".
    1). Does it mean we can install them object in PRODUCTION Server and then transport to the Development.???
    2). Now i tried installing 0Material in RSORBCT in Produciton,but gets a message "Cant make any changes in the repository-changes in this client prohibited".  Guys could u help us with this??
    manythanks
    arun

  • Error while activating Transformation CO_OM_WBS_3

    Hi everybody,
    i get the following error message while activating the transformation for  CO_OM_WBS_3 in Dev
    Error while activating transformation
    Message no. RSTRAN510
    Error when writing routines
    i checked the routine for co_om_wbs_3 the syntex was correct.
    i have checked in forum am not getting clear picture  please guide me and
    sap component version : SAP EHP 1 for SAP NetWeaver 7.0
    SAP_BW    7010006    SAPKW70106
    BI_CONT    704   0006  SAPK-70406INBICONT
    Regards,
    Sunder

    Dear anand,
    thankyou
    Regards,
    sunder
    Edited by: sundersham on Mar 28, 2010 12:34 PM

  • Error while activating DTP in BI 7.0

    I am facing an error while activating DTP between a ODS and CUBE.
    I have converted 3.x update rules and transfer rules to 7.x transformation. Enhancements were carried out on the data source as well. All the objects and transformations were activated. While activating the DTP between the ODS and CUBE i get an error message saying:
    "Creation of PSA /BIC/B0000XXX failed.
    Error during creation of DDIC sources of Data Transfer Process DTP_<Request Number>
    Error when activating Data Transfer Process DTP_<Request Number>"
    I have come across a OSS note, 954574, which is relavent to SP09. But we have SP17 installed on our server.
    Any pointers on the same would be of great help.

    Hi Rupesh,
    Chk these links they may help you
    http://help.sap.com/saphelp_nw70/helpdata/EN/43/fa2f42e8fc6befe10000000a11466f/frameset.htm
    http://help.sap.com/saphelp_nw70/helpdata/EN/44/03a25c0bbe025ce10000000a1553f7/content.htm
    Regards,
    RK

  • Error while Activating Inventory record in WM

    Hi All,
    I am getting an error while activating Inventory record using LI02N ,The Inventory record has been created using LICC Cycle Inventory at Quant Level.The error detrails are as below:
    Message Text:
    Function code cannot be selected
    Technical Data
    Message type__________ A (Cancel)
    Message class_________ BL (Application Log)
    Message number________ 001
    Message variable 1____ Function code cannot be selected
    Message variable 2____ 
    Message variable 3____ 
    Message variable 4____ 
    Message Attributes
    Level of detail_______ 
    Problem class_________ 4 (Additional information)
    Sort criterion________ 
    Number________________         
    Thanks you all in Advance.
    Regards,
    NVK                                                                               

    I am encountering a similar error whils tryng to create or display WM Physical Inventory documents.
    Tx: LX16 - Error Message no. BL001: u201CWarehouse number WH1 does not exist (check your entry)u201D
    Tx: LI01N and LI03N u2013 Error Message no. L4001: u201CWarehouse number WH1 does not exist (check your entry)u201D
    Errors when trying to create or display PIs, but can run reports on u201CWH1u201D and configuration looks ok?
    I cannot find anthing n SAP OSS for WM.
    Any assistance would be appreciated.

  • Error while activating Queue XBTR* in Manage Queues in TCODE sxmb_adm

    Hello Experts,
    SAP PI is sending the data to ECC through inbound proxy in PI SXMB_MONI it is showing Black colur flag as it is through but in R3 SXMB_MONI messages  are in green colur flag showing it is in scheduled state.Data is in quues in SMQ2.
    While i try to activate queues in SXMB_ADM it throwing as Error while activating Queue XBTR*
    XBTR Queue is in SMQ2.
    Regards
    Naresh

    Hello Naresh,
    Check if the queue XBTR* is already registered in your SAP R3 server.
    You have to do it first, if not already done.
    Regards,
    Subhajit

  • Error while Activating ODS data

    Hi Experts,
    I am getting following error while Activating ODS Request.
    Job started                                                         
    Step 001 started (program RSODSACT1, variant &0000000000142, user ID lsingh
    Activation is running: Data target ZINV_MAT, from 7,883 to 7,883    
    Data to be activated successfully checked against archiving objects 
    SQL: 10/17/2005 21:04:17 lsingh                                      
    ANALYZE TABLE "/BIC/AZINV_MAT40" DELETE                             
    STATISTICS                                                          
    SQL-END: 10/17/2005 21:04:17 00:00:00                               
    SQL: 10/17/2005 21:04:17 GOELA                                      
    BEGIN DBMS_STATS.GATHER_TABLE_STATS ( OWNNAME =>                    
    'SAPIBD', TABNAME => '"/BIC/AZINV_MAT40"',                          
    ESTIMATE_PERCENT => 1 , METHOD_OPT => 'FOR ALL                      
    INDEXED COLUMNS SIZE 75', DEGREE => 1 ,                             
    GRANULARITY => 'ALL', CASCADE => TRUE ); END;                       
    SQL-END: 10/17/2005 21:04:17 00:00:00                               
    ABAP/4 processor: DBIF_RSQL_INVALID_RSQL                            
    Job cancelled                                                       
    It's giving DBIF_RSQL_INVALID_RSQL error.
    I am loading full upload to the ODS first time.
    Any answer will be greatly appreciated.
    Regards,
    LS

    hi LS,
    yes contact basis is the right way
    try to double click the DBIF_RSQL_INVALID_RSQL if you interest with more detail error info, by viewing the short dump (transaction st22 can be used), transaction sm21 may also helpful, if authorization is granted.

  • Error while activating standard business contents e.g : 0SD_C11, 0SD_C12

    Hi Friends,
    I am getting this error while activating the Cube ,I'm not able to see update rules after activated in the Modelling.. My using 7.o but working on 3.x version, with support package 15.
    When i stimuldate following are the errors:
    80BP_ID not maintained
    Data source 0DBDUNS_IMPORT_ATTR not maintained
    Error while reading InfoProvider 0SD_O01 etc...
    Please help me out from this error since two days i'm tryhing to resolve but i'm not able to activate...

    Hello,
    Go to business content, select the Infoprovider which you intend to install, select the before after option. Then say install & ignore the warnings & say yes. If still you are not able to view the update & transfer rules there might be some issues in the source system.
    1] Check in rsa 6 that the datasources feeding to your cube are avialable or not.
    2] Check the same is been replicated in BW or not.
    3] The time stamp from both source system & BW system should match, otherwise replicate it again.
    Hope this helps.
    Regards,
    Atul...

  • Error while activating Trnasfer rules

    I am getting the following error, while activating Infosource. Can you please help me identifying the solution
    Syntax error in GP_ERR_RSAPTM2_____________, row 43 (-> long text)
    Diagnosis
    "ZOXID30058" must be a flat structure. You cannot use internal tables, strings,references, or    ...

    Hi,
    Usually this occurs when even the SOURCE SYSTEM is not configured properly. Recently I had the same issue. If the source system is newly configured, meaning other tran structures / rules are working fine then don't go over this process.
    1. Drop the Source System
    2. Re-Create the Source System.
    3. For other than PC Files, "Replicate the DataSources" in the Source System.
    4. Try mapping the transfer rules / structure and activate it.
    Also check the SAP Note no :147195
    Hope this works.
    Regards
    Pavan Prakhya

  • Error while activating DSO after loading from another DSO..Production issue

    Hello Gurus,
    I got an error while activating DSO2 after loading from another DSO1.
    DSO1 load and activation was sucessful but while loading from DSO1 to DSO2 load was fine but got error while activating...
      >Error when assigning SID: Action VAL_SID_CONVERT table ZWEEK_NUM
      >Value u201809u2019 of characteristic ZWEEK_NUM is not a number with 000004 spaces
    this theard was posted after searching for related post in SDN.
    and i tried Function Module RSODS_CHECK_RSODSACTUPDTYPE but it is not available .. but I used this in BW 3.10u2026..
    is their any similar Function Module in BI 7.0 please advice.
    We are using SAP NetWeaver BI 7.0
    Release- 700    Service level- 017
    Thanks in advance
    Sandy

    sloved the issue......
    it was due to wrong data for the related field...
    it  must be "0009 "
    Thanks for ur support. closing the ticket
    Regards
    Sandy

  • Error while activating DTP : database returned a value containing an error

    Hi ,
    I am getting an error as "The database returned a value containing an error"
    while activating the DTP. Can neone suggest any solution for this error .
    The system is also not allowing to delete the DTP and giving the same error as above one .

    Are you receiving a similar error as below from the log:
    Creation of PSA /BIC/B0001995 failed
    Error during creation of DDIC sources of Data Transfer Process DTP_4DGGKC0NCCP394FEOOSQC68Y3
    If yes then look into SAP Note 1145673 - Extracting from InfoProviders with navigation attributes. Application of this note should resolve the issue.

  • Error while calling the EAI Viewer

    Dear all,
    I am working on Document Management System ECC 6.00
    I am able to upload a PDF document in to the system, but when i save it and try to call the document back it is giving me the folllowing error."Error while calling the EAI Viewer" But when i try to open the same in the next PC it is opening. the work station application which i have defined is EAIWeb.webviewer2D.1 %SAP-CONTROL% for the application .pdf.
    Kindly suggest what will be the problem as it is not opening in my PC but opening in an different PC with the same user name.
    Kindly suggest.

    Hi Kishuz  ,
    ECL Viewer comes with SAP
    It is Engineering client viewer, which works for files like *.jt(jupiter technology), *.pdf(acrobat), *.dwg(autocad), *.step, *.iges
    with ECL viewer you can view files like dwg without having Autocad Installed on your machine.
    Alos it gives redlining feature...
    thus layers help in indicating the modifications needed or commenting on the drawings...
    Now the procedure for installation,
    1. Install the latest SUN JAVA version. The path could be <b>c:\program files\java\</b>
    2. While installing SAP GUI, ensure that the ECL component is not selected from R/3 Add On.
    4. Install ECL Viewer 5.1.2 on local machine.
    5. Ensure the path is as follows :(C:\Program Files\Common Files\SAP Shared\System or C:\Program Files\Common Files\SAP Shared\System\Java )
    6. Ensure that the following files are in the <b>c:\program files\java\1.5.0_08\lib\ext</b>
    folder:
    - VisWebS.jar,
    - VisWeb.jar,
    - eaisupport.jar,
    - eaisupportS.jar
    - version.ini
    - vctk.ini
    In case, please copy the mentioned files from <ECL Install DIR>\java.
    (C:\Program Files\Common Files\SAP Shared\System or
    C:\Program Files\Common Files\SAP Shared\System\Java )
    Reward points if useful...
    regards
    Niranjan

Maybe you are looking for

  • Can't find any of my HD Video on a PC external drive

    Just got my new MacBook aluminum ten days ago as my first Mac. I have a Maxtor Onetouch 300G external hard drive that has hours upon hours of HD video shot with a Sony handicam and imported and saved to the Maxtor through my old PC laptop. I plugged

  • Should be Oracle database bin path in PATH BEFORE Soa Suite bin path ?

    On my local computer I installed Oracle Database 10g Express AND Soa Suite. Hence the PATH environment variable contains (among others) two pathes: one for Soa Suite and one for database 10g.e.g.: Path=D:\soa\v10.1.3.1\OracleAS_1\jdk\bin;D:\soa\v10.1

  • EJB deploy - NullPointerException

    I don't understand next message: Auto-deploying devRequest (New server version detected)... Copying default deployment descriptor from archive at C:\jdev903\jdev\zkouska\Pa nasonic\DevelopReq\deploy\devRequest/devEjb.jar/META-INF/orion-ejb-jar.xml to

  • Lightroom 6 desktop will not download--says' not applicable'

    I bought an upgrade for Mac Lightroom 5.7  to Lightroom 6 and it displays my new serial number but it won't give me the option to download. s.chism

  • Jsse 1.0.2 samples didn't work

    hello I'm trying to make a connection between the sample client and the sample server of jsse 1.0.2 When The server need the client authentification I've got the following exception : server side : java.net.SocketException: Socket closed client side