Synchronize the values of variables of substitution between Essbase and planning

Hello
In EMP 11.1.2.1 version (but we noticed the problem also in previous versions of EPM) when we set the value of a variable substitution in Essbase, the value is not immediately updated in planning: for a while, we see the old value. The value in the planning remains unchanged even to disconnect or exit planning and reconnect.
On the contrary if we restart the planning service, the value is immediately updated
Since we would like to use the Essbase substitution variables to manage some selections in forms of Entru data planning, is it possible to force a synchronization, or increase the frequency of synchronization between Essbase and planning?

Concerning

Francesco Quaranta

Take a look at the definition of ownership of planning SUBST_VAR_CACHE_LIFETIME

http://docs.Oracle.com/CD/E17236_01/EPM.1112/hp_admin/properts.html

See you soon

John
http://John-Goodwin.blogspot.com/

Tags: Business Intelligence

Similar Questions

  • How to synchronize data between essbase and planning?

    I have an essbase database and a classic of planning an application. They're all two-dimensional entity, year, period and account. I want to synchronize these dimensions. For example, new essbase created members are automatically copied into the planning. Should what tool I use? Dimensions can be shared between essbase and planning?

    To be honest it looks like you after some of the features within the EPMA, although if you have an essbase database then you will certainly be a source for dimensions for this can be used to fill the demand for planning as well.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • How to store the values of variable level OBIEE presentation in DB

    Hi all!

    We have a command prompt of dashboard which is set up to store values in variables of presentation (period start and period end dates). Is there a way to store values selected from a database? for further processing?
    that is, I need to pass the variable level (report parameters) presentation to complex calculations to a PL/SQL function.
    Also my requirement might be solved if I can get access to the selected values of logical column in the tab 'Business Model and mapping' definition in the BI administrator.
    that is, I'll be able to define the logical column using VALUEOF (NQ_SESSION. < nom_var >)

    Kind regards
    Mr.Maverick

    Hello.

    1 do SQL PL/function (in the database) which has an input parameters, which number depends on number of guests and in it you'll insert these parameters into a table.

    2. your report in column expression answers call this function that will do insert, the code would be like:
    EVALUATE ("YOUR_FUNCTION (1%, 2%, 3%, 4%) (' as varchar (20), @{p_1}, @{p_2}, @{p_3}, @{p_4})

    3. Note that the function returns something and be careful on data types inside EVALUATE it.

    4. notes that, in the case where some messages are not selected (all or nothing) you recognize this case as:

    -case when LENGTH('@{pv_var}') > 0 then ' @{pv_var}' end else' all '.

    or like this:

    -case when LENGTH('@{pv_var}') is null then 'all choice"other" @{pv_var}' end; "

    Kind regards
    Goran
    http://108obiee.blogspot.com

  • The value of variable binding VO on page load by program

    Hello everyone!

    I use JDeveloper version 11.1.2.3.0

    I am currently trying to get the filtered data to a VO, based on a WHERE clause with a variable binding. This process must be done on the loading of the page. I have set this variable for liaison with the id of the logged in user (the part to get this id is already reached and used somewhere else). My current approach is to define a bean managed with scope pageFlow. Inside of this, I have a method in which I get the id and I put it as parameter. The code snippet:

          BindingContainer bindings = getBindings();
            OperationBinding operationBinding = bindings.getOperationBinding("getUserIdFromUsername"); //getUserIdFromUsername is a method defined in the AppModule and exposed in the client interface
           operationBinding.getParamsMap().put("username", getUserName());
          Object userID = operationBinding.execute();
            setUserId(Integer.parseInt(userID.toString()));
           System.out.println("THE USER ID IS: "+getUserId());
           BindingContainer bindings2 = getBindings();
           OperationBinding operationBinding2 = bindings.getOperationBinding("ExecuteWithParams");  // i've dragged and dropped the ExecuteWithParams operation into the page
           operationBinding2.getParamsMap().put("userId", getUserId());  // userId is the bind variable which i'm talking about
            Object result = operationBinding2.execute();
    
    
    

    Then I call this method on BeforePhase in the view of the page. It works, I get the filtered data and the println shows me the correct ID. The problem is that whenever I select a row in the table showing the data, the page seems to reload and it always reload the selection at the forefront.

    What I am doing wrong? Maybe this isn't the right approach, that I saw a few other posts on this topic, but they are not very clear to me.

    Please advice

    OK, that's what I did. I created the method to set the value of the variable to bind to the query of the VO in the AppModule instead of inside the bean (this method also runs the query) and client presentation to the interface. After I have created the method call in the section of links the pagedef (where he gets the value of the id of the bean in the original post), and followed Cvele_new_account suggestion, calling the method as follows:

    RefreshCondition = "#{! requestContext.postback and empty bindings.exceptionList}" / >

    Thank you for the help guys!
  • Display the values of variables

    I'm working on a Captivate 5 project in which the values of the variables are assigned and then reassigned. Is it possible to display the value of a variable in a text box or other window to ensure that the value changes? Thank you.

    Darin

    Hello David,.

    It's the way I am especially debugging advanced actions by inserting the variables used in a text of the legend Rick indicates. A long time ago that I wrote two articles on the basic use of variables, perhaps reading could specify:

    Use the power of variables without advanced actions

    Unleash the power of variables with advanced actions

    CAUTION: sometimes the update does not appear immediately. In another thread, I explained how you can refresh the contents of the enhanced TextArea widget that contains a variable that is filled with another widget on the same blade.

    Lilybiri

  • the value of variables in the text box.

    I write a code that has a function of function there is a table of the different variables of table, values come from Server I'd like
    Enter this value of var in the text box.

    It's like in the code file is like this

    public void mainMenu (rcvParametersArray:Array): void {}

    var IndianMenu:int = rcvParametersArray [0];
    var chainesMenu:int = rcvParametersArray [1];
    }

    Assuming a component textArea on the stage, something like the following should work (composed an array to pass to the):

    var theMenus:Array = [1,2];
    mainMenu (theMenus);
    function mainMenu(rcvParametersArray:Array):void {}
    var IndianMenu:int = rcvParametersArray [0];
    var chainesMenu:int = rcvParametersArray [1];
    arrayDisplay.text = IndianMenu + ', ' + chainesMenu;
    }

    However, it seems that he might extend to several items, I was wondering if maybe you don't want to have an array of arrays so that the menu name is incorporated with its index or regardless of the other properties are associated with. Maybe not, but I thought that I would say something like the following in case it is useful

    var theMenus:Array = new Array ({name: 'Indian', index: 1}, {name: 'Channels', index: 42});
    mainMenu (theMenus);
    function mainMenu(rcvParametersArray:Array):void {}
    for (var i: int = 0; i< rcvparametersarray.length;="">
    arrayDisplay.text += rcvParametersArray [i] .name + "" + rcvParametersArray [i] .index + "\n";
    }
    }

    Finally, if the values in the table of your original paintings are numbers or integers (ints), you can convert them to strings before displaying using the toString() function, unless they are be concatenated with an existing string.

  • need to change the value of variables without deploying

    I need to code of values to variables and need to change the value of the variable without redeploying code.

    BPEL properties
    It is possible to have properties set in the BPEL process. Properties are set on a global scale and outside the BPEL process. The properties are accessible via an internal function.

    In the bpel.xml file, add the following lines just before the end of:


    [email protected]

    Properties are available in the BPEL process (.) BPEL file) via the function ora: getPreference():

    Ora:getPreference('propertyEmailAdress')

    You can change this value in console deployment descriptors

  • View the value of variables

    The following procedure, I wrote, and when I run my out parameters is not any value. I want to fill in the parameters out of my selection. How to display values?

    PROCEDURE Retrieve_Item_And_MeasureUOM
    (
    -parameters passed in
    p_wr_item_oid in NUMBERS
    p_wr_measure_oid in NUMBERS
    p_measure_uom OUT VARCHAR2,
    p_report_item_measure_uom OUT VARCHAR2
    )

    As
    -local variables
    v_sql1 varchar2 (500): = ";
    v_report_name varchar2 (200): = "reportname";
    v_wr_item_oid NUMBER;
    v_measure_oid NUMBER;
    v_report_item_measure_uom VARCHAR2 (5);
    v_measure_uom VARCHAR2 (5);

    BEGIN

    v_sql1: =.
    "SELECT."
    FM.wr_item_oid, fm.wr_measure_oid, fm.default_display_uom as Report_Item_Measure_UOM,
    m.Default_UOM_App_Code as Measure_UOM
    IN
    v_wr_item_oid, v_measure_oid, v_report_item_measure_uom, v_measure_uom
    Of
    wr_form_measure fm
    JOIN IN-HOUSE
    m wr_measure ON m.wr_measure_oid = fm.wr_measure_oid
    WHERE
    FM.wr_item_oid =' | p_wr_item_oid | "and fm.wr_measure_oid = ' |" p_wr_measure_oid | ' AND
    FM.wr_form_oid =' | Retrieve_FormOID_From_Name (v_report_name);


    EXCEPTION

    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR (-20999, "no data found. Possible error in the form OID.') ;

    END Retrieve_Item_And_MeasureUOM;


    When I run the query, the out parameters show this:

    p_measure_uom =
    p_report_item_measure_uom =

    Hello

    Maybe I missed something, you set a query with "v_sql1" but I don't see where it run you?

    I mean usually in PL/SQL that you define a CURSOR with a query. Then on a LOOP, you GET it
    each row returned by the query results.

    If you have a unique value to EXTRACTION you can write directly in your query as follows:

    SELECT col1, ... INTO v_1,...
    FROM ... ;
    

    Then, in this example, v_1 takes the value of col1.

    Hope this helps.
    Best regards
    Jean Valentine

  • the value of variable equal to the value of a recordset from database

    It is for Coldfusion version 8.

    I have two tables which I am inserting data in. After I insert a record in the first table, I need to use the id (auto incremented, not something I already have) to the new folder as part of the data I enter in the second table.

    I'm having a hard time nailing down the syntax to get me there. I searched the documentation, any thoughts on what I should have sought under would be welcome as well.

    Any help would be appreciated, thanks.

    -----------------------------------

    <!-this table contains a column id that autoincrements->

    < cfquery datasource = "labdsn" name = "newLabDataRecord" > INSERT INTO LabData (savedLab, lastSavedBy) VALUES ('data data data", '555') < / cfquery >

    <! - find the value of this new identifier - >

    < cfquery datasource = "labdsn" name = "maxLabIDRecord" > select max (id) OF LabData < / cfquery >

    <!-this generates the error. Not surprised, but don't know what it should be->

    < cfset maximum = < cfoutput query = "rsMaxLabIDRecord" > #rsMaxLabIDRecord.id # < / cfoutput > >

    < cfquery datasource = "labdsn" name = "newUserRecord" > INSERT INTO UsersVsLab (userID, whichLab, IDB) VALUES ('2', 1, < cfqueryparam value = "#maxID #" >) < / cfquery >

    <!-it's another syntax I tried->

    <!-cfquery datasource = "labdsn" name = "newUserRecord" > INSERT INTO UsersVsLab (userID, whichLab, IDB)

    VALUES

    ('2', 1, < cfqueryparam value = < cfoutput query = "rsMaxLabIDRecord" > #rsMaxLabIDRecord.id # < / cfoutput > >) < / cfquery->

    You can solve your specific error by adding an alias to the application where you get max id.  However, there are often better ways to achieve this.  The details depend on the type of db that you use.

    If you need to use max (id) select, add a where clause clause in order to make sure you get the right pair.

  • How to choose the value of a string are numeric together and words of letters (for example, TEST)

    Hi all

    How to choose the value of a string are letters (for example, TEST) and all numeric...

    for example
    TEST 123456
    TEST 34567
    123456 ABCD
    1234 TEST
    TESTING 12345
    TEST 1@234$
    YOUR T 123456

    I want the results of the query as below.
    TEST 123456
    TEST 34567

    And I tried to use regexp_like in this case but without success. See the code below.
    SELECT * FROM TABLE WHERE regexp_like (Description, ' [TEST] % & [[: digit:]] + $');

    How can I do this, please answer.

    Thank you

    WF

    If you want to return only the rows that contain the string 'TEST', followed by zero or more space characters, followed by one or more digits?

    How about this:

    SELECT *.

    FROM my_table

    WHERE REGEXP_LIKE(description,'^TEST\s*\d+$')

  • How set the value of a LOV in CO prgramatically and get the Pkey value?

    Hello

    I need to get the Primaykey LOV will return and set a value for a LOV, say ItemLOV in a page through CO. How can I achieve this?

    Req:
    1. set the nom_element, say "DELL_1618" so that the page displays this in the LOV.
    2 get the PK value returned by LOV in the backend in an attribute of VO say Item_ID, ' 100009881'.

    Thank you
    Sicard.

    Hi Santosh,

    Sorry, I responded to general LOV scenario, but want to put it right,

    You need run your LOV query to the controller for the "DELL_1618" element using the prepared command, get the value of the value display and Id and assign the LOV and FormVlaue in the PR of the controller.

    Kind regards
    Out Sharma

  • How the value of variable Page of Backing Bean

    Hi all

    New on ADF trying to access page variable value to a BackingBean (scope wonders).

    I tried this approach but does not work, I do not know how to solve.

    My ADF page is filled by a VO.

    It is the ADF page code:

    < af:panelLabelAndMessage label = "Name" id = "plam8" >

    < af:outputText value = "#{bindings." Name.inputValue}"id ="ot7">

    < / af:outputText >

    < / af:panelLabelAndMessage >

    < af:panelLabelAndMessage label = 'Start Date' id = 'plam8' >

    < af:outputText value = "#{detailBean.startDate.inputValue}" id = "ot8" / > "

    < / af:panelLabelAndMessage >

    This is the piece of my BackingBean where I need to read my element value and the format in right way and then push it down on the page of the ADF:

    private String startDate;

    public String getStartDate() {}

    StartDateXD = (Date) resolveExpression("#{pageFlowScope.startDate}");

    If (startDateXD ! = null) {}

    In the date format = new Date (startDateXD. getTime());

    SimpleDateFormat newFormat = new SimpleDateFormat("dd/MM/yyyy");

    startDate = newFormat.format (formatted);

    }

    Return dataSds;

    }

    Is someone coulfd help me?

    Thanks for your help.

    Fairlie

    Yes, you can use af:convertNumber to convert currency. Check Ashish Awasthi (Jdev/ADF) Blog: change of af: convertNumber Format according to the regional settings - Oracle ADF for a sample.

    Timo

  • Database trigger to get the value of Variable forms... How... ??

    Hello

    I have a global varibale in a form having a block of the base table. I created a trigger on the base table data after deletion/update, it will include all the updates/delete lines in the Table of Trail.

    I want to insert this global variable (which is available in the form) in the Trail Table as well as all other values of the record with the database trigger. But this global variable is available in the form not available in the database trigger. How to pass this variable to database trigger...


    Help, please...
    Thank you and best regards.

    Hello

    Package variables are specific session.

    If user1 is
    PAK_TEST.lv_user = 'user1'
    In the other schema user2
    PAK_TEST.lv_user will always be the null value.

    Locking won't, if you commit records using the trigger.
    Kind regards
    Franck

  • The values of variables are case-sensitive in Adobe Captivate 9?

    Hello, I was just curious to know if Adobe Captivate 9 user variables values are case-sensitive.

    Yes, they are. AS3 and JavaScript are both case sensitive.

  • By pulling the values of Variables for my Table of facts

    Hi all

    The Load_Date of my fact table is currently, current_timestamp-1, the data are a day old when it's loaded. I want to get that date to a variable, because if I need to raise with an earlier date like 20 or 30 days before the current date, I don't want to touch the map instead, change the variable and run the package. Please advise on how to do this?

    Thanks for your time and your help.

    Do not you have correctly, but you can create a variable of refreshment with query like select sysdate-20 of: double. And then, you can use the variable everywhere.
    Thank you

Maybe you are looking for

  • How to remove unused genres

    I'm trying to remove unused genres in my library?

  • Additional installers list empty

    Hello

  • under run time menu round table

    Hello I feel that I'm missing something obvous, but... I create a runtime for the secondary menu (the user can access by the secondary name, for example, a right-click if a Subvi is loaded in high school). I'm going to the event loop, so I can progra

  • Pro tools does not work

    I'm having a problem with Pro tools 9 MP. I think it might have to do with something that I uninstalled it recently. I tried to create more space on my computer. Now when I try to open Pro tools it says that the program has trouble communicating with

  • Accent for 10.2 colors?

    I remember reading on the set of the arrival of the former site for 10.2 that he would be a "Colors of Accent" concept that would shine through the basics as well as the theme. What happened to him? I can't find a reference to it on the developers si