Web Analysis and HFM : show  Current Month

Hi,
I tried to create a table which displays only figures coming from HFM and related to the current month.
In fact, I created a table which is populated with HFM data.
This table has only one column : "June", which is the current month.
What should I do to have automatically "July" the next time I open it if the current month is July ?
Thanks for your help folks,

Hi,
This can be achived,but little bit tedious process...
Create an intermediate report with three columns.
first column : Monthcolumn,which you are using in prompt.
Second column :This column is for selected month
Try to convert Jan 2012 to 201201,Feb 2012 to 201202...This can be achieved by writing a case statement like below
cast((Case when substring(column from 1 for 3)='Jan' then 01...........)||substring(column from 5 for 4) as int)
Third column:Prior month
cast((Case when substring(column from 1 for 3)='Jan' then 01...........)||substring(column from 5 for 4) as int)-1
Now add the same column formula to the main report and hide it(let's say column name will be "HIDED")
cast((Case when substring(column from 1 for 3)='Jan' then 01...........)||substring(column from 5 for 4) as int)
Now you can apply filter based on another request on the hided column.
HIDED<=Second column in intermediate report.
HIDED>=Third column in intermediate report.
Now you will get the desired reults in your report.
Hope this helps.
Thanks,
Pramod.

Similar Messages

  • Differences between Hyperion Workspace, Web Analysis and Financial Reportin

    Hello,
    Can anybody explain me the differences between Hyperion Workspace, Web Analysis and Financial Reporting?
    Thank you

    In real simple terms....
    Financial reporting - Perfect for producing standardised monthly reporting such as P&L, balance sheets etc. Highly formatted, print well in PDF format.
    Web Analysis - Highly graphical, web based analysis tool more suited to dashboards, pinboards etc with slice and dice capability.
    Workspace - Common environment where reporting content in deployed. Users can access web anlysis, fin reports, Interactive reports plus other content through the workspace. It was the start of the 'log on to one place for all reporting' concept instead og logging on to multiple products.
    Hope that helps
    Regards
    CD

  • Error when opening workspace, web analysis and shared services

    Hi All,
    We installed hyperion 11.1.2, Essbase on a AIX server, with reports etc on a windows 2008 server. when logging onto workspace, web analysis and shared services i get the following error message:
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    10.4.5 404 Not Found
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    If we re-start the server it sometimes work, but in the morining we have the same issue, can anyone help.
    Thanks
    Dylan

    Hi,
    Restart the services. Issue with Oracle Http server. If you restart foundation and other services I can bring workspace up.
    Thanks
    Radhika

  • Web Analysis and Planning smart lists

    Hi,
    Does anyone know whether Smart Lists can be used in Web Analysis reports?
    I dont think this is possible since you can only connect to an Essbase data source in Web Analysis.
    Thanks for your help.
    Regards,
    Seb

    Seb,
    Did you figure this one out? I am trying to use Smart Lists in Web Analysis and cannot seem to create a planning connection.
    Thanks,
    Neha

  • Show current month's calendar based on computer date

    As a page loads, is it possible to check the computer date
    and display the current month's calendar (specialized with events),
    either on the same page or on a separate page?
    Any help would be appreciated,
    Cliff

    You can adapt this script to do that:
    http://www.valleywebdesigns.com/vwd_csscalhelp/vwd_csscalhelp_faq.asp#a5
    cliff man wrote:
    > As a page loads, is it possible to check the computer
    date and display the
    > current month's calendar (specialized with events),
    either on the same page or
    > on a separate page?
    > Any help would be appreciated,
    > Cliff
    >
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • Web analysis and attributes No.2

    Hi,
    When doing report in web analysis as admin for my users I select my attribute dimension instead of entity (i think that when it is assigned to entity it shall has the same function as entity being chosen, right?). The numbers, percentages fits perfectly. But when my user logs into workspace and open a report there is NO DATA. I even tried the essbase filters and add manually (Read - @IDES(HSP_RATES), @IDES(Attribute_Dimension) as i thought this can be a problem) But it is not.
    My users has access to all dimensions and members selected in reports.....
    Please, Any idea of what ca be wrong? I really need some help
    Thank you very much again
    lubos

    Hi lubos,
    check if is there any multiple filters assigned to the user. if security overwritten happens he can not access the data.
    Kiran

  • Security settings for web analysis and finacial reporting

    Hi
    Would anyone be able to let me know when I am creating a group/user within Shared Services what provisioning I need to set up so that the user can create there own reports using finacial reports and web analysis.
    Also If a user is to just refresh reports but cannot change them what access do they need?
    Thanks

    Hi,
    Have a read here :- http://download.oracle.com/docs/cd/E12825_01/epm.111/epm_security_11111/apas04.html
    It should have all the information you are after.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Show current month and previous month measures

    Experts,
    My period names are stored like this in the Period Dim table 'Jan 2012'.....'Aug 2012', ... 'Dec 2012' etc..
    To my request, i will pass only the current period value via. a drop down prompt, say 'Feb 2013' and it has to apply filter like this Period."Period name" in ('Feb 2013', 'Jan 2013').
    I cannot use TIMESTAMPADD(SQL_TSI_MONTH, -1, Period."period name") as my period name is a char. Can someone suggest any idea?
    Version : 10.1.3.4
    Regards,
    Sarvan

    Hi,
    This can be achived,but little bit tedious process...
    Create an intermediate report with three columns.
    first column : Monthcolumn,which you are using in prompt.
    Second column :This column is for selected month
    Try to convert Jan 2012 to 201201,Feb 2012 to 201202...This can be achieved by writing a case statement like below
    cast((Case when substring(column from 1 for 3)='Jan' then 01...........)||substring(column from 5 for 4) as int)
    Third column:Prior month
    cast((Case when substring(column from 1 for 3)='Jan' then 01...........)||substring(column from 5 for 4) as int)-1
    Now add the same column formula to the main report and hide it(let's say column name will be "HIDED")
    cast((Case when substring(column from 1 for 3)='Jan' then 01...........)||substring(column from 5 for 4) as int)
    Now you can apply filter based on another request on the hided column.
    HIDED<=Second column in intermediate report.
    HIDED>=Third column in intermediate report.
    Now you will get the desired reults in your report.
    Hope this helps.
    Thanks,
    Pramod.

  • Two renewal orders and charges showing every month for one account and same renewal package, WHY

    Why am I charged twice with two different orders every month for one package of 800 mins. Are they giving me 1600 minutes! I need only 800 minutes please, so please refund these extra order charges please. I just noticed this thing month today and on checking order history find that same practice has been followed for all my previous months transcations!

    Hello and welcome to the Skype Community.
    The duplicate charge has been reversed and the funds will be returned to you.

  • Web Analysis and RSS Feed

    Does WA support insertion of an RSS feed into a document? I have tried to do this through the Services button "Launch External Browser" but it locks up WA.
    We are using WA 9.3.01
    Any other ideas are appreciated.

    Hi lubos,
    check if is there any multiple filters assigned to the user. if security overwritten happens he can not access the data.
    Kiran

  • FR and Web Analysis reports will not run in workspace

    I have configured both FR and Web Analysis and then re-configured workspace to pick them up. 'Reporting and Analysis shows up in my foundation metadata under workspace. All my related ports are enabled.
    Database connection manager, import financial reporting reports, preferences financial reporting, tools/link to web analysis, do not appear in workspace.
    get 'required application context analyzer is missing. please contact your adminstrator.' error when try to run a web analysis or financial reporting report from workspace.
    Web analysis as a client with reports is working fine.
    Financial reporting allows me to create a database connection, create a report, pdf preview from the client but web preview breaks with generic page not found error.
    Any suggestions would be most appreciated.

    Hi,
    You can use panel while creating reports and put all the graphs on it .
    Panels color can be changed.
    Thanks
    Yashwant

  • Current Year and current month?simple question

    How can i get four Digit current Year and two digit current month. So if is march it should get me as 03 and the Year as 2002. Please do help me, is a simple question isn't it ?. Thanks for your earliest response.
    Thank you.

    i have a directory structre of the format
    REPTS2000209/E200209-98000001
    in which 2002 is current YEAR
    09 is current month
    and 9800001 is the code i would submit(list box) from a form
    so what i need is a program that can generate the above path and open that particular PDF file
    so basically E200209-98000001.pdf is the PDF file.
    i am submitting it from JSP page. PLEASE HELP ME how can i program.

  • Wrting back in IR and web analysis

    how do you write back in web analysis and Interactive reporting to the database

    You can use Web Analysis to write back to Essbase as long as the user has access and the intersections you are writing to are editable (not a calc, etc).
    To do this you can access the 'Edit Data' feature from the right click menu or you could put a 'Services' button on the report/dashboard so the user doesn't have to go to the right click menu.
    There are two types of Edit Data service buttons. One is a normal Edit Data button which will edit whichever data object (i.e. grid, chart, etc) is "in focus" or has been selected. The 'Assign Edit Data' button allows you to pick which data source the Edit Data will be assigned to ahead of time when setting up the button.
    You will have to test these in the Workspace, though. I don't think the Edit Data buttons were supported in the Workspace; however, I hear that in 9.3.1 they are now.

  • Trend Calculation in Web Analysis

    I am creating a sales and margin trend analysis in web analysis and am having problems making the trend calc dynamic. I select period and use a sub variable to select (CMCY) and then show subset to show the previous 2 months to give a 3 months trend view. I can use the trend calc to develop a revenue trend based on the revenue measure but I have to use advanced and select the actual months ex Revenue:Oct, Revenue:Nov, Rev:Dec. The calc works correctly this way, but next month it will not. How can you grab current month, then CM-1, CM-2 into the trend calc directly so you don't have to reformat the report each month? Thanks for the help.

    I have never done this before but may work just like following.
    Following is from HR user guide:
    Count
    Count is a mathematical function that returns the number of values in a group of numeric values,
    rows, columns, or cells. Count excludes #missing and #error when obtaining the count. The
    function syntax is:
    Examples:
    The following example returns the count of three rows, 1, 6, and 8:
    Count(row[1], row[6], row[8])
    The following example returns the count of 3 columns:
    Count( column[E], column[G], column[I] )
    The following example calculates the count of two columns located on different grids:
    Count( grid1.column[E], grid2.column[E] )
    The following example calculates the count of the cell located at row 4, column D:
    Count(cell[D,4])
    The following example calculates the count of aggregate row 3 in grid 5:
    Count(grid5.row[3])
    CountA is a mathematical function that returns the number of values in a group of numeric
    values, rows, columns, or cells. CountA includes #missing and #error cells when obtaining the
    count only for rows or columns that are not suppressed.
    Example
    In the following example, if a grid has 4 rows with the values 10, 20, 30, and, #error. The following
    formula in the 5th row returns the count of four rows:
    CountA([1:4])
    The following example returns the count of four rows:
    CountA(row[1], row[6], row[8] row[where data yields #error])

  • Web Analysis Report performance

    Hi All,
    We are performing a drill to bottom level action by double click the account dimension in Web Analysis and SmartView. It will returns 9000+ rows records. In WA, it takes 160 seconds but SmartView only takes 20 seconds. We tried to increase the Java Heap Size from the WA Application Server and Java Plug-In Client but doesn't help much. Any idea why their is a big difference in performance? From the application log file in Essbase, we can see WA and SmartView are talking to Essbase in two different syntax.
    Thanks,
    Manoj

    Hi, I agree with Gerd - there's not much tuning you can do in Web Analysis (as compared to FR).
    In looking at the query see if you can:
    - move single hierarchy members into the POV
    - have children and parent in the same row
    - arrange dimensions in inverse outline order (faster for essbase retrieves)
    - remove excessive formatting/suppression (or conditional formatting/suppression)
    - push report calculations back to the data source
    We have also found that using lots of dynamically calculated members also slows down reports, so try and limit the number of these.
    Maybe build your report up from the basic report to see which dimensions are causing the issue. Or alternatively start with your report and remove columns ;-)
    With regard to wishing to show only 2 items, you could add advanced conditional suppression to suppress rows with values.

Maybe you are looking for

  • Field Symbols in BADI

    Hi Experts, we had a change parameter in BADI Method which is TYPE ANY. Now i want to change one valune in this parameter. Actually this contains a row of data of some structure. I need to change a particular field of that structure. how to do this..

  • Security Problem

    Hi, I did security setup but it is not working, can you please help Step 1: Created security object (rsecadmin) in that for profit ctr i selected hier node, for infoprovider i selected cube (transactional cube) Step 2: Created role (pfcg) Step 3: In

  • JSObject call() method problem

    Hi, I created an applet and I call a javascript function from the applet using call() method of jsobject. JSObject jsoWindow=Jmol.jsoWindow;           String[] args = {"Fred"};           jsoWindow.call("f", args); and i wrote an alert in the js funct

  • 6GB Zen Micro Photo same price as 30GB iPod pho

    I do like Creative, but I do not understand why Creative has been suggesting that their new Zen Micro Photo will be priced at US$350. That is a full hundred dollars more than the current 6GB Player, and the same price as the iPod Photo with more than

  • Administrator password disabled

    went to open windows using administrator password and  was denied access.  computer said user profile service failed the logon.  have to sign in as guest and when I start to shut down,  get a message that other users are on computer and their data wi