Content bar value in EPM 10.0 add-on

I have created a report using report editor of EPM 10.0 add-on with time dimension in the column and account dimension in the row. I notice that after the report was launched, when I tried to change the value from time dimension or account dimension, the row values or column values are not change correpodingly.How to work around this?

You either have to click the refresh button, or you need to set to automatically refresh when the context changes.  Go to "Options", then choose "User Options".  Make sure "Navigation" tab is selected.  Check the check box for "Automatic Refresh on Context Changes".
Cheers,
Rich Heilman

Similar Messages

  • Search bar  value from Interactive Report

    Could someone help me to acces the value entered in the search bar and pass it to another page?
    Basically our apex interactive reports has a link which allows to edit single records. However customer is looking to edit multiple records at the same time and I am thinking if I can pass the search bar value to an tabular form, then it will allow to update multiple records
    Thanks
    Rajesh Alex

    Hi Rajesh,
    There are a set of views that seem to contain the data for the IR:
    APEX_APPLICATION_PAGE_IR
    APEX_APPLICATION_PAGE_IR_CAT
    APEX_APPLICATION_PAGE_IR_CGRPS
    APEX_APPLICATION_PAGE_IR_COL
    APEX_APPLICATION_PAGE_IR_COND
    APEX_APPLICATION_PAGE_IR_RPT
    You could have a look through these to see if any help.
    Andy

  • The Web application at could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application

    Hi,
    I have created on windows service to fetch sharepoint list ad update the list items.
    when i run this service in sharepoint server(where the sharepoint site is hosted),it is working fine. If i run the same service in another machine(sharepoint installed in this machine also). it is giving the below error
    The Web application at [URL] could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application.
    Code snippet
    SPSite sharepointSite = null;
                SPWeb rootWeb = null;
                try
                    //SPList current = null, previous = null;
                    string colmId = ConfigurationManager.AppSettings[ID_COLM];
                    List<TaskEntity> list = new List<TaskEntity>();
                    sharepointSite = new SPSite(URL);
                    rootWeb = sharepointSite.OpenWeb();
                    SPList current = rootWeb.Lists[ConfigurationManager.AppSettings[OMEGA_REGISTRATION_LIST]];
                    WriteEventLog("current" + current.Items.Count.ToString());
                catch (Exception ex)
                    ExceptionMethod(ex);
                finally
                    sharepointSite = null;
                    rootWeb = null;
    I have pointed .net framework to 3.5 version and target palform as Any CPU. Please suggest me

    Hi mallela1,
    I also had similar issue couple of months back when I was trying to access a remote URL from a Windows service when the site does not exists in the server where service resides.
    You cannot access a remote url (even though it is SharePoint server and also in same network ) from server object model.
    SPSite can look in the current server only. here what is happening is SPSite will look for this in the current server DB and it is not finding this errror.
    So please dont use ServerObject model for accessing remote sites. You can use Client Object model for the code /requirement you have stated above.
    I wasted lot of time in finding a work around to make to work. It did not. So look for other options.
    Regards,
    Nandini

  • How do I get rid of the other section on iphone content bar?

    I have trouble decreasing the amount of the yellow other section on the iphone content bar on itunes, I believe it consists of background encrypted data but I dont know how to decrease it

    A small amount is normal. If there is lots, and you don't have apps with large anounts of private data, then I'd suggest you backup, then restore.
    tt2

  • How to solve "Bad Content-Length value" Error that show in ADF Mobile

    I was develop application that using web service from mine original ADF project and I can't fetch via AMX Page as pop-up error "Bad Content-Length value" How to solve this problem ?
    My Web-service configuration
    - "Find" is only basic operation that in view instance
    - None of View criteria
    As only find is basic operation, that seems required "findCriteria" and "findControl" parameter(as seen in "Panel From layout" generated in AMX Page)
    After drag generate form view in AMX Page and after to deploy to simulator, I was found pop-up error was said Bad Content-Length value as shown below.
    I am also using HTTP Analyzer and didn't found any request from ADF Mobile Application
    http://img844.imageshack.us/img844/7720/screenshot20130305at163.png

    Hi,
    I'm also got a problem with this tutorial too, after touch at "Salary Upgrade" button and got same error too
    http://docs.oracle.com/cd/E18941_01/tutorials/BuildingMobileApps/ADFMobileTutorial_2.html
    I have some conclusion with develop ADF Mobile in OSX will related with this problem as tutorial are properly working and nobody was said about this problem.
    My current development machine is OSX 10.8.2 with jDeveloper 11.1.2.3.0
    Edited by: meddlesome on Mar 7, 2013 2:49 AM

  • Refreshing navigation bar value

    Hi,
         I'm facing a problem in refreshing navigation bar value. Below is my requirement,
    Based on the user , I'm having navigation bar values for e.g when user xy is logged in . navigation bar will apprear as "Your Email Settings is: 'On' click here to update" on clicking this navigation value I'm opening one pop up page where i can update the email settings to on/off. After submitting the pop up window it is getting closed but this navigation bar need to be updated  as "Your Email Settings is: 'Off' click here to update" i.e. auto refresh of navigation value need to be done on closure of pop up window.
    Can you please help on this.
    Thanks,
    Salai Kumar

    Hi Salai Kumar,
    What version of APEX do you use?
    In recent versions there is a refresh action which you can try to use.
    Regards,
    Vincent
    http://vincentdeelen.blogspot.com

  • Retrieve Title field values from multiple lists and add into another list

    Hi , Iam trying to retrieve Title field value from multiple lists. and add them into another list. using Javascript. Can any one help me in doing this. Below is the code.. function save() { clientContext = new SP.ClientContext.get_current(); oWebsite = clientContext.get_web(); oList = clientContext.get_web().get_lists().getByTitle('MainList'); clientContext.load(oList); clientContext.executeQueryAsync(OnSucceeded, onQueryFailed); } function GetListItemValue(listName, fieldName) { var list = oWebsite.get_lists().getByTitle(listName); var eventValue = document.getElementById(fieldName).value; eventValue = eventValue.replace(",", ""); var camlQuery = new SP.CamlQuery(); var filterdata = '<view><query><where><eq><fieldref name="Title/"><value type="Text">' + myreqValue.trim() + '</value></fieldref></eq></where></query></view>'; camlQuery.set_viewXml(filterdata); listItems = list.getItems(camlQuery); clientContext.load(list); clientContext.load(listItems, 'Include(Id)'); clientContext.executeQueryAsync(Succeeded,Failed); } function OnSucceeded() { itemCreateInfo = new SP.ListItemCreationInformation(); oListItem = oList.addItem(itemCreateInfo); oListItem.set_item('Title', 'My New Title'); var deptItemLookupField = new SP.FieldLookupValue(); //Problem in below line...I was unable to get ID var getId = GetListItemValue("Listname1", "txtboxname1"); alert("ID" + getId); if (getId != undefined) { deptItemLookupField.set_lookupId(getId); } var getId12 = GetListItemValue("Listname12", "txtboxname12"); alert("ID" + getId12); if (getId12 != undefined) { deptItemLookupField.set_lookupId(getId12); } oListItem.update(); clientContext.executeQueryAsync(itemadded, itemFailed); } function itemadded() { alert('Item added successfully'); } function itemFailed(sender, args) { alert('Item added itemFailed' + args.get_message() + '\n' + args.get_stackTrace()); }
    Raj

    Hi,
    For this requirement, you will need to retrieve all the lists objects you want firstly, then execute the requests one by one to get the value of the Title column using CAML or
    LINQ.
    How to: Retrieve Lists Using JavaScript
    http://msdn.microsoft.com/en-us/library/office/hh185009(v=office.14).aspx
    About
    retrieve list items:
    http://msdn.microsoft.com/en-us/library/office/hh185007(v=office.14).aspx
    You can use
    Promise in your script to make your requests sequentially:
    http://www.shillier.com/archive/2013/03/04/using-promises-with-the-javascript-client-object-model-in-sharepoint-2013.aspx
    http://www.learningsharepoint.com/2013/08/13/using-deferred-and-promise-to-handle-async-calls-in-sharepoint-client-object-model/
    Best regards
    Patrick Liang
    TechNet Community Support

  • How can i do with labview program,when i have 20 different values,and 1 want to add it with constant value.and how to get the results?

    how can i do with labview program,when i have   20 different values,and 1 want to add it with constant value.and how to get the results?

    Why do the 20 values have to be different? The same code should work even if some are equal.
    What do you mean by "get the result"? The result is available at the output terminal and all you need is a wire to get it where you need it. That could be an indicator, another operation, or even a hardware device.
    What is the data type of the 20 values? An array? A cluster? A bunch of scalars? A waveform? Dynamic data?
    LabVIEW Champion . Do more with less code and in less time .

  • We each have our own device, a laptop and an iPad.  when sending imessages recipients cannot tell which of us sent it other than looking at the content.  Is there any way to add an identifier to make it clear who is sending the message?

    We each have our own device, a laptop and an iPad.  when sending imessages recipients cannot tell which of us sent it other than looking at the content.  Is there any way to add an identifier to make it clear who is sending the message?  I know we can say 'this is mom or this is dad" but when an email is sent it identifies the device that sent it so why not imessages too? 

    Stop using the same apple id on all your devices. Each person should have their own. You can still share apps via home sharing.

  • After ios 8 numbers doesnt have cell content bar...please help

    fter ios 8 numbers doesnt have cell content bar...please help

    It seems to be broken on some ipad 2 installations. I found a workaround. Click on a cell that has text in it. The bar then activates. You can then move to other cells and keep the bar. When you end your edit you are back to no bar unless you start with a text cell. Hope they fix this soon.

  • Excel chart - bar values appear after selecting slicers

    I have a small dashboard that displays total order dollars by week. This is generated from a SSAS cube on SQL Server. I have a couple slicers that control what is being displayed (order type and product type). The chart type is from a template.
    This is a stacked bar chart. 
    I do not want the values of each bar to appear on the chart. When I first open the sheet the values are not there. When I start selecting the different slicers the chart starts displaying values of each bar.
    How can I stop this from happening?
    Thanks

    In excel 2013, if you want to Remove data labels from the chart. Click  the chart area->On the
    'Design' Tab->Add chart Element->Data Labels, choose
    none .http://office.microsoft.com/en-001/excel-help/add-or-remove-data-labels-in-a-chart-HP001234166.aspx
    If theses values still appear when you select slicer, please check if there any Macros in this excel file, meanwhile you can share us with this chart template.

  • Retrieving Variables and Values using EPM Functions

    Hi Experts
    Does anybody know how this fuctions works with and example?
    32.26 EPMVariableList
    Applies to: SAP BW (INA Provider) connections.
    This function retrieves the list of variables for the query for the specified connection. You can display the
    variables:
    ● in the current cell, where a specified character separates the variable names.
    ● in one or more dropdown lists
    32.27 EPMVariableValue
    Applies to: SAP BW (INA Provider) connections.
    This function retrieves the value(s) currently selected for the specified variable. The value(s) is (are) retrieved in
    the cell in which you enter the function.
    I already checked the EPM Add-in for Microsoft Office User Guide but is didn't say anything helpfull
    Regards
    Ariel

    Hi Ariel,
    It's clearly stated in help: "Applies to: SAP BW (INA Provider) connections."
    And if look on connection types:
    4.4.2 SAP BW (INA Provider) Connections
    Using the SAP BW (INA Provider) connection, you can do the following:
    • Work with BW queries (with or without variables).
    • Retrieve data, using reports.
    • Enter and save data, using input forms.
    • Execute planning function for BW Integrated Planning, using what are called in the EPM add-in "data processes".
    And some info about 10.1
    Unfortunately I don't have 10.1...
    Vadim

  • How do I move my TABS below the address bar WITHOUT having to install an add on ?? may have to goto another browser now!

    Firefox just updated and now my TABS are above the address bar...
    I do not wish to add another add on, it should be basic functionality to do this (as in previous versions)
    The vast population of users also want this according to the forums.
    How do I do this without having to resort to a "FIX" or an add on as this would add to memory usage.. ??
    Why have you removed this functionality?

    So if I dont want to install an add you suggest installing an add on???
    PS, I dont want to install an addon!!

  • Invalid Content-Type value on OC4J 10.1.3.4.0 when using JAX-WS

    Hi all,
    I'm developing web services using JAX-WS on top of OC4J 10.1.3.4.0. I followed the procedure to enable this in the developer guide with success. My web service is running fine but the headers of the HTTP response contains an invalid value for the Content-Type header
    The charset element has the value utf-8" (with the double quote included) which is interpreted as a wrong encoding by the client application.<br />
    Below is the HTTP request and response with the error. (I stripped the soap part for clarity)<br />
    <br />
    POST /mywebservice/ HTTP/1.1<br />
    Content-Type: text/xml;charset=UTF-8<br />
    SOAPAction: "http://soap.exemple.com/mywebservice"<br />
    User-Agent: Jakarta Commons-HttpClient/3.0.1<br />
    Host: behs0054:8888<br />
    Content-Length: 2174<br />
    <br />
    &lt;...&gt; soap message<br />
    <hr />
    HTTP/1.1 500 Internal Server Error<br />
    Date: Fri, 03 Oct 2008 13:10:43 GMT<br />
    Server: Oracle Containers for J2EE<br />
    Connection: Keep-Alive<br />
    Keep-Alive: timeout=15, max=100<br />
    Content-Type: text/xml;charset=<strong>utf-8"
    </strong>Transfer-Encoding: chunked
    &lt;...&gt; soap fault received
    <hr />
    Thanks a lot for your answers,
    Gauthier

    Does not only happen when using JAX-WS.
    the following servlet code is enough to reproduce the problem :
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    response.setContentType("text/xml;charset=\"utf-8\"");
    It only occurs on 10.1.3.4.0 (works fine on 10.1.3.3.0 and 11.1.1.1.0 TP4)
    Regards

  • Crys Reports - Mark the Legend Labels and Chart bar - values custom names

    Hai,
    I want to change the default names/labels of the chart elements (for e.g. bar chart - the labels and values) , in my reports the labels are directly taken from the database columns, how can I change this?,
    Someone please help...
    Thank you in advance.
    Vijay.

    Hi
    You can select the individual elements(for e.g chart title,legend,chart frame,grid lines,individual bars and series risers etc.).
    To do this do a normal left click and then again a left click on the desired object within the chart(which will select the object), and then do a right click which will come up with all possible options.
    Say for e.g you wan't to edit a default data label then follow the steps:
    1. Left click on the chart
    2.Left click on the data label.
    3.Right click>>Chart Options>>Titles
    4.Here you can edit the default title
    Thanks

Maybe you are looking for

  • Synching problem with 2nd gen Shuffle

    I've had a 2nd gen iPod Shuffle for several years and have always had it work well. But recently it has trouble synching when I plug it in. Whether using Autofill or synching manually, it will only synch from 1 to 4 or 5 songs at a time, and then sto

  • Bug in Premiere Elements 13?

    I am using Premiere Elements as a trial version and actually want to buy it. But this problem now makes me quite reluctant: when I delete the audio of a clip, or import a clip into a video track, elements on other tracks get shifted, cut and sometime

  • Exchange 2007 SP3 failed and cannot comeback to upgrade Menu

    Hi team, I plan to migrate from Exchange 2007 to 2013. so I wan to upgrade exchange 2007 from SP1 to SP3 I have two exchange 2007 SP1 Server, Server 1 CAS+HT. Server 2 CAS+HT+MBX. I already upgrade Server1 (CAS+HT). upgrade success without issue. but

  • The black "show shadow clipping" indicator not extinguishable.  What can be done?  I tried the obvious.  There is no evidence of clipping.

    The black "show shadow clipping" indicator not extinguishable. .  What can be done?  I tried the obvious.  There is no evidence of clipping. Lightroom version: 5.6 [974614] License type: Perpetual Operating system: Windows 7 Ultimate Edition Version:

  • FResDir Problem

    I am getting an error when calling a dll using a call library node.  The error says Labviewv.lib could not locate "FResDir".  This is a library created in version 2009 but called in a labview 7 application.  Something is different as i wasn't receivi