How to Manage index of user define dimensions

When I create a new rate application,The BPC system throw the message"Index was out of range:must be non-negative and less than the size of the collection parameter name :Index".
I searched oss notes:1323195 saying :"A user can change the index of user-defined dimensions by clicking a button named "Manage Index" in "Modify application". The button will be shown if**
*there are user-defined dimensions already assigned to an application or at*
*the moment of assigning a user-defined. If the button is clicked a windows*
*will popup, and the user can maintain a user-defined dimension index from*
*the window."*
But  i can't find the menu "manage index" .
could someone tell me how to find it?
thanks

Just go trough Manage application and Modify application and use reindex and full process.
This normally should fix your issue.
Regards
Sorin Radulescu

Similar Messages

  • How to use negation in user defined rules?

    Hi,
    Can you please show me an example to use negation in user defined rule? I created a rule like below (the rule says if a patient has a fever problem and not have penicillin hypersensitivity, then recommend medication1):
    INSERT INTO mdsys.semr_myMedicineRB VALUES('rule1',
    '(?p rdf:type :Patient) (?p :present ?c1) (?c1 rdf:type :Fever) (?c2 rdf:type :Penicillin_Hypersensitivity)',
    '(NOT_EXISTS(p :present c2))',
    '(?p :recommendation :medication1)',
    SEM_ALIASES(SEM_ALIAS('','http://www.example/medicine#')));
    The rule successfully inserted into the rulebase. However, I cannot pass the entailment creation phase and got the errors:
    ORA-29532: Java call terminated by uncaught Java exception: java.sql.SQLException: Missing IN or OUT parameter at index:: 1
    ORA-06512: at "MDSYS.SDO_SEM_INF_INTERNAL", line 16453
    ORA-06512: at "MDSYS.SDO_SEM_INFERENCE", line 302
    ORA-06512: at "MDSYS.SDO_SEM_INFERENCE", line 352
    ORA-06512: at "MDSYS.RDF_APIS", line 118
    ORA-06512: at line 2
    29532. 00000 -  "Java call terminated by uncaught Java exception: %s"
    *Cause:    A Java exception or error was signaled and could not be
               resolved by the Java code.
    *Action:   Modify Java code, if this behavior is not intended.
    According to the post built-in primitives(noValue,remove) for user defined rules, it seems negation is not supported in user defined rules. Can you please advice how to implement negation in user defined rules?  Thanks a lot in advance.
    Hong

    Hi Hong,
    Let's look at this similar but simplified problem:
      if (?p  rdf:type  :Patient) and (NOT_EXISTS(?p  :present  :c2)) ==> (?p :recommendation :medication1)
    You can use something like this in the user defined inferencing:
    -- First get the numeric IDs for the relevant URIs
    recomID := sdo_sem_inference.oracle_orardf_add_res('http://..../recommendation');
    medID := sdo_sem_inference.oracle_orardf_add_res('http://..../medication1')
    rdfTypeID := sdo_sem_inference.oracle_orardf_res2vid('... full URI for rdf:type');
    patientID := ...
    presentID := ...
    c2ID := ...
    -- Now this query will find out ?p that satisfy (?p  rdf:type  :Patient) but not
    -- (?p  :present  :c2)
    sqlStmt := '
      select ids1.sid  sub
         from ' || src_tab_view || ' ids1
        where ids1.pid= ' || to_char(rdfTypeID,'TM9') || '
          and not exists (
             select 1
               from ' || src_tab_view || '
              where sid = ids1.sid
                and pid = ' || to_char(presentID, 'TM9') || '
                and oid = '|| to_char(c2ID,'TM9') || '
    insertStmt := '
      insert /*+ parallel append */
       into ' || output_tab || '(sid, pid, oid)
      select sub, '||to_char(recomID,'TM9') || ',' || to_char(medID,'TM9') || '
       from (' || sqlStmt || ')'
    More details can be found in
    http://docs.oracle.com/cd/E16655_01/appdev.121/e17895/inference_extension.htm#CHDDBGEC
    Hope it helps,
    Zhe Wu

  • User Defined Dimension

    I am getting the following Error (when I try to Process members for an user defined dimension)
    ""Object reference not set to an instance of an object.""
    I am creating the following User Definied Dimension : Dept
    Deptname           25
    Deptno                10
    Evedescription     50
    Scaling                  2
    ID............     NEWID.....EVDESCRIPTION.......PARENTH1  ...SCALING     Deptno     ....Deptname
    dept .........................accounts............................... .......                    ..........         10     ....      a
    computers.................computer............... ....      dept     ...............................      20...           b
    accounts     ............     accounting        ........  ............   dept..........      ........................            30.....           c
    What am I doing wrong? Please help me. Thanks.
    YV
    Edited by: Yedi Viladin on May 14, 2009 3:20 AM

    Hi,
    This is a very generic Error.
    u2022You can try re-booting the server.
    u2022Prior to re-boot log-in to the server and verify that the +COM objects are working or all started
    u2022You may also get this error if a dimension has not processed, which means the application is not processed
    u2022Another problem that can cause this problem is that the password for the installation user has been changed or that the installation user is locked out.
    u2022Do you see error in BPC Server Manager -> Diagnostic?
    There are several SAP Notes also available for this Error u2013 1246092, 1223846
    Regards,
    Ankita

  • PROMPT(SELECTINPUT, ...) and user defined dimensions

    Hi,
    I created a custom package that should enable the user to select members of  the TIME, Account and Category dimensions and also members of some user defined dimension called "Costcent". After that, a scriptlogic file should be called.
    I tried:
    1)
    PROMPT(SELECTINPUT, ... %TIME_DIM%%ACCOUNT_DIM%%CATEGORY_DIM%"Costcenter")
    which doesn't work, bc. compiler doesnt seem to like %var%"fixedexpression"
    2)
    PROMPT(SELECTINPUT, ... "Costcenter")
    PROMPT(SELECTINPUT, ... %TIME_DIM%%ACCOUNT_DIM%%CATEGORY_DIM%)
    running the package only allows to select a costcenter, 2nd prompt ignored?
    3) similar, the other way round.
    Any ideas?
    Moreover, I need to be able to access the selection of the Costcenter members in the script logic. For the std. dimensions, there is %TIME_SET%, %CATEGORY_SET% etc.I am using successfully, but how to define or access the set (or list) for the selected members of user-def. "CostCent" dimension ?
    Thanks for your help!

    Clear Bug: Using the DataManager to modify the .dtsx file sometimes modifies the prompt lines in an unpredictable way... So the file that is safed doesn't get the content it is intended to get... - Guess "this should never happen", but it is...

  • Numbers assigned to user defined dimensions

    Dear Experts
    I have created application set from APPSHELL and created three user defined dimensions viz., A, B and C
    Then removed all not required dimensions including 'P_ACTIVITY' which was a User defined dimension.
    System has assigned numbers as U4, U8 and U9 to these dimensions on its own (I do not know what is the logic system is following to assign numbers to these dimensions)
    Questions:
    1. What is the logic system is following for assignment of the numbers to User defined dimensions?
    2. Can I change these numbers to U1, U2 and U3 (for ease in ad-hoc reporting). If YES how can I do that?
    Thanks

    Hi,
    The userdefined dimensions are named Sequentially as they are created and these are not constant for them, the same dimension may have different names in different applications.
    Also the user defined dimensions are named as Ua to Ux in NW.
    For example, in App1 some dimension X may be named as Uc, the same dimension X in App2 may be named as Ud or some other.
    We need to manually work betweeen "a to x" with the below macro to find the exact name for the user defined dimension in the application.
    "MNU_eTOOLS_MEMBERSELECTOR_X"
    Eg:
    MNU_eTOOLS_MEMBERSELECTOR_Ua
    Also as suggested in earlier replies i dont think this naming can be changed.
    Hope this helps,
    Regards,
    G.Vijaya Kumar

  • Unable to process the user defined  Dimensions

    Dear Experts,
    When i am Create User defined Dimension and i fill the Dimension Members after this i am Processing the Dimension at that time i am getting the following errors.
    Exception error has occured;check the log id=122 for more details
    Call was rejected by callee.(Exception from hresult:0x80010001(rpc_e_call_rejected))
    Could you please help me how to Solve this issue.
    Thanks in Advance,
    Regards,
    Srinivasan.

    Hi Srini,
    Please check your log table in Appserver database.
    Please check your log file in the Server with the ID.
    The log file will have clear details of the errors faced.
    Hope this helps.
    Karthik AJ

  • User defined dimensions in planning

    hi all can any one tell me where are the user defined dimensions in planning are stored in the backend realtional tables ? I am learning about the worlkflow of the backend tables and how will they react to any changes that are made in the front end. I got the tables where pre defined dimensions are stored but i created a dimension called "CUSTOM" and checked it in the HSP_OBLECT, HSP_DIMENSION tables but did not find it. Can any one tell me whats actually going on in the backend ??
    thanks in advance,
    Ranjith Kumar. P

    You can find the dimension name in HPS_Object under Object_Name column and for the dimension Id you can check HSP_Dimension.
    Something like:
    Select Object_Name from HSP_OBJECT WHERE (Object_ID in (Select Dim_ID from HSP_Dimension))
    and just for finding the object_id of dimension name "Custom":
    Select * from HSP_OBJECT where Object_Name like 'Custom'
    Here is more information on all the relational data-models:
    http://docs.oracle.com/cd/E17236_01/epm.1112/epm_data_models_1112200.zip
    Cheers..!!
    Rahul S.

  • Maximum number of User defined dimensions in Planning v11.1.2

    Hi guys,
    I am new to Hyperion Planning version 11.1.2, just wanted to clarify what is the maximum number of User defined dimensions that can be added in a planning application.
    I've also learnt that the number of Alias tables is more than the previous versions. What is the maximum number of Alias tables in Planning version 11.1.2 ?
    Regards.

    Maximum number of alias tables is 10 including the default alias table
    As for custom dimensions then I wouldn't expect you to hit a maximum unless you want to design a planning application destined to fail.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • How can you change a user defined swatch

    How can you change a user defined swatch

    Double click on the swatch in the swatches palette.
    In most case you can do that , unless for example you have a placed image that has that color in a spot channel.

  • How do you create a user defined functions  UDF and passing a value like a ID to GEt a Value.

    How do you create a user defined functions UDF and passing a
    value like a ID to GEt a Value.
    using a query.
    are there example.
    Thanks

    tons of examples at cflib.org - good place to start, even
    though many
    udfs there are a bit outdated in their code...
    Azadi Saryev
    Sabai-dee.com
    http://www.sabai-dee.com

  • Need help: unable to change user defined dimension

    Hi,
    I have a problem with BPC. I installed BPC Server and BPC Client NW7.5 SP9. I can duplicate, create and modify all standard dimensions (Account, Category, Entity, Time) in my own application as also in appshell.
    I can duplicate or create a user defined dimension, but I cannot modify that user defined dimension. I change the elements, then I process my changes. But after I have refreshed the dimension all changes are reverted.
    I looked in UJFS and can see that .xls and .xlt are uploaded on NW correctly. Even on my local machine it is changed, but BPC does not recognize that.
    Has anyone an idea what to do? I need not only the standard dimensions but also user defined dimensions.
    Regards

    We've got this problem on non-unicode system on SP08, as Frank. Corrected with SP09.
    Maybe you have to check if all components patched well (NW, .Net and client):
    - In NW Go to System-Status-Component Information. CPMBPC must have level 0009.
    - On .Net Server check Server Version in Planning and Consolidation Server utility (.09)
    - In client for Excel check ETools-About Planning and Consolidation (7.50.09).
    If that's correct, first check, if new records occur in BW object for your dimension (in rsa1). Or maybe that info-object somehow become inactive.
    And did you mark checkbox "Process members from member shett" during processing the dimension?
    Edited by: Anton Kuznetsov on Oct 26, 2011 4:43 PM

  • Difference between UDA & User-Defined Dimension

    Hi all,
    I need to know what the difference between UDA and User-Defined Dimension and when can i use each one??
    thanks in advance

    UDAs are descriptive words that you can use to categories members of a dimension.
    http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_admin/uda_tab.html
    Using UDA, For ex: in Customer Dim you can divide customers into CAT A, B or C and then can use these UDAs in calc scripts, query them later in reports etc.
    User defined Dimension: Is any new dimension that you add to planning application apart from default ones.
    http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_admin/ch10s04s09.html

  • Indexing Failed - User-Defined message search

    Hi
    I am trying to set-up a user-defined message search in our PI 7.3 system. After having created a filter and defined a search criteria, SAP says to "create an index of the messages that match the active filters and search criteria"  [Link|http://help.sap.com/saphelp_nw73/helpdata/en/48/b2e0186b156ff4e10000000a42189b/content.htm]
    Every time I try to run indexing it fails. I don't know why as there is no help-button available and I haven't found anyone experiencing the same issue. Anyone else experienced the same issue?
    Also - using XPath - do I have to consider any particular namespace prefix etc for PI messsages? I have tested my XPath on payload XML in XMLSpy, but the search functionality seem to expect a different format on the XPath syntax...
    Thank you!
    regards Ole

    Hello,
    I have set this up for an interface now. I am not sure how important the index job is because
    the indexing job worked in the dev system, never stopped in QA and failed in prod. Anyway the message search works in all three systems.
    The following blog made me understand the namespace prefix:
    http://scn.sap.com/people/abinash.nanda/blog/2011/08/17/pi-73--adapter-user-defined-message-search
    Regards,
    Per Rune

  • Dynamic script - User defined dimension

    Hi
    I have the following problem.
    When i create a task in the data manager, and i want the user to select some menbers of the dimensions to be used in the script logic, for example, if i want him to select the time all i do is a PROMPT tag with the %TIME_DIM% variable.
    What if i want a user defined dimention, lets say product for instance.
    If i use the variable %DIMS% i get the product dimension and all others, but i want only the PRODUCT dimension.
    Any ideas?
    Thanks

    Hi Leandro,
    You can try something like below:
    PROMPT(SELECTINPUT,%SELECTION%,,"Select the members to CLEAR",%DIMS%)
    You can replace the above statement by
    PROMPT(SELECTINPUT,%SELECTION%,,"Select the members to CLEAR",CATEGORY)
    In the above statement, CATEGORY is just the name of the dimension. You can try similarly with other dimensions too.
    Hope this helps.

  • About semantic indexing using user defined ontology

    hi zhe,
    according to the dev. guide, you can do semantic index on a document using user defined ontology. however, multiword class names, individual names and property names defined in the ontology are usually concatenated and cannot have space. if I have a multiword concept such as "http://www.example.org/medicalProblem/DiagnosedPastNeurologicalDeficit" rather than "http://www.example.org/medicalProblem/Diagnosed Past Neurological Deficit" in the ontology and a loaded document in the table also contains the concept "Diagnosed Past Neurological Deficit", so how is the extractor able to identify the concept in the document? do I need to describe the concept in the ontology using rdfs:lable like this "<rdfs:label xml:lang="en">Diagnosed Past Neurological Deficit</rdfs:label>" so that extractor can identify the concept in the document? I am not clear how to use user defined ontology to semantically index documents. thanks a lot in advance.
    hong

    Hi Hong,
    The semantic indexing feature is itself a framework. There is no native NLP engine bundled with it.
    There are NLP engines like Open Calais, GATE, and Lymba that can work with this framework. Some engines
    can take an ontology and map entities (events, individuals, relationships etc.) embedded in the text to definitions in the ontology. You can also perform the mapping yourself. For example, you can take out the rdfs:label (or comment, or some other descriptive parts) of URIs, build an Oracle Text index, perform a fuzzy text match for a given piece of phrase, and select the URI that gives the best matching score.
    Hope it helps,
    Zhe Wu

Maybe you are looking for

  • How do I add Google Tag Manager to a Muse site?

    The tag manager code needs to be right after the opening body tag, yet I am having trouble getting it in there! Any help would be very much appreciated.

  • How do I move Outlook email from Windows to iMac

    I have decided to move from Windows (Vista) to iMac (Mavericks) and need to move all my email from my Windows PC (Outlook 2010) to iMail.  I've found several suggestions on the internet including various software applications for converting from one

  • Installation Failure: Windows failed to install the following update with error 0x800F0922

    Hi folks, I have a HP Elitebook Folio 9470p.  It came with Windows 8, and I installed it on my corporate domain.  I was trying to do some Windows updates so  I could upgrade it to Windows 8.1, but it fails installing the updates, whether or not I try

  • Abap import error DbSl Trace: ORA-1403 when accessing table SAPUSER

    hi all I am installing ERP  6.0 (ABAP) on win2003 cluster, oracle 10g, I have error at database instance intallation. here some logs DD03L.log I:\usr\sap\PRD\SYS\exe\uc\NTAMD64\R3load.exe: START OF LOG: 20090812102157 I:\usr\sap\PRD\SYS\exe\uc\NTAMD6

  • Dreamweaver/Flash help need ASAP!!!!!

    Okay So I am designing a site in dreamweaver as a final project and i have to used fireworks and flash throughout the site...So I did the flash insert it into dreamweave and it DOESNT WORK!!! It is giving me this message Unable to find the plugin tha