Relative function in FR reports

I want to use a function in FR reports equal to the @Relative function in Essbase NOT the Relative Function found in FR (as it seems to only work on SAP / SSAS database.
Basically I want the user to select POV x and take all the Lvl 0 members under that member.
For Example if they are using this on Cost Centers dimension. They pick "Summary Node" x and it will generate all the level 0 members under that summary node only. I don't want all level 0 for the entire dimension. I also don't want all the summary points under that member (ie "IDESC" won't work).
Must be a stupid thing I'm missing cause this should be an obvious one.
I'm using 11.1.1.3 Essbase and FR
Edited by: user11991787 on 28-Apr-2010 12:57 PM

I don't think what your trying to do is available "out of the box", we have used a workaround to do what you want:
- include idescendants for the member but apply suppression on the member names that ended in rollup.
(we were lucky in that the parent members were standardized to contain rollup as the description name).
Cheers, Iain

Similar Messages

  • @RELATIVE() equivalent function in Financial Reporting Studio?

    All,
    Is there an FR equivalent function to the @RELATIVE() function in Essbase?
    Specifically, I'm trying to select Level 0 descendants of a particular member.
    e.g. @RELATIVE(MEMBER,0) would be the equivalent function in Essbase.
    I've tried to use the RelativeMember function, but that does not appear to do the same thing.
    I also tried to union two selections, but that just returns an MDX error.
    e.g. assume I want to return child 2 and 3
    Dimension
    Parent A
    Child 1
    Parent B
    Child 2
    Child 3
    Lev0,Dimension NOT Descendant Parent A (this is not the actual syntax, but an explanation of what I tried). This returns an MDX error to do with "NOT".
    Any help is appreciated...

    That was extremely helpful. I was able to get it working with the following syntax
    Descendants of <Member> AND System-defined member list Lev0,<Dimension>
    Thanks again for your help.

  • Anyone written functional specs for reports?

    Please explain how to write functional specs for reports in sales? How is it done? I need to be able to speak clearly in the interview so help is greatly appreciated.
    Thank you.

    Hi Haken,
    Basically functional spec contains the functionality to be implemented.
    http://www.saptechies.com/what-are-functional-specifications/
    Suppose you need to write a spec for Treausry report.
    Then you will write the following things( this is only for your understanding)
    Treasury Report u2013 Receipts & Payments.
    1.Business Requirement Study:
    The Treasury Department of the Corporate Finance Division needs various information for reporting and planning. The proposed requirement would provide information in the form of movements in a number of selected GL Codes involving Customer and Vendor Reconciliation Accounts and Inter-Bank transactions.
    1.1
    Enhancement Title:Treasury Report u2013 Receipts & Payments
    Enhancement Type: Report
    Enhancement Number: 1245m
    SAP Application Module:FI
    Priority (H, M, L):     M     Related Documents:
    1.2
    End User Name(s): XYZ
    Business Process Advisor:     YZX
    Functional Designer: Vivek Baddula
    1.3 Risk Assessment
    This section will address the risk of pursuing the system development. Any unknowns such as new technology and critical dependencies should be discussed in this section.
    1.4  Alternatives
    If there are more than one alternative to handle the business requirement, this section should list such alternatives and the issues that may arise from implementing them. Nevertheless, the optimum alternative discussed in the design overview will be used
    1.5Estimated Budget in Man-Hours
    STAGE     MAN-HOURS
    Design     0.00
    Build     0.00
    Test/Release     0.00
    TOTAL     0.00
    2.Selection screen fields.
    BUKRS           Company Code       parameter         Mandatory
    GJAHR            Fiscal Year            select options   Mandatory
    BELNR            Document Number select options
    SHKZG            Debit/Credit ind       parameter
    DMBTR            Amt.in loc.cur.        parameter
    3.Retrieval Logic:
    Put the selection parameters in table u2018BSEGu2019 and retrieve the following details.
    BUKRS                             Company Code
    GJAHR                             Fiscal Year
    BELNR                             Document Number
    SHKZG                             Debit/Credit ind
    DMBTR                             Amt.in loc.cur.
    WRBTR                            Amount
    PSWSL                             General ledger currency
    HKONT                             G/L Account
    3.1.     Total DMBTR of all BELNR by group and by SHKZG as H and show under the Debit Column of respective groups (Customer/Vendor/Inter-Bank).
    3.2.     Total DMBTR of all BELNR by group and by SHKZG as S and show under the Credit Column of respective groups (Customer/Vendor/Inter-Bank).
    3.4.     Similarly consider only those documents which have a PSWSL ne INR and show them under different group and SHKZG.
    4..     Output Display::
    Here we mention the format of the output and the fields need to be displayed.
    This is just a sample prototype ...
    Hope this will help you...
    Regards,
    Viveks

  • Drag & Relate between two BW reports

    Hello together,
    I want to implement the Drag&Relate functionality between two BW Reports via EP 6.0. I have configured the connection between Portal and BW with the report RSPOR_SETUP. The SingleSignOn and the import of business object is working well. After that, I took 2 BW testreports which were prepared for D&R. When I now drag the customernumber of report1 to the target report2, I get the error message "No relation found between the source and target business objects". The business object in both reports is 0CUSTOMER, so what relations should be set?
    Where is the mistake, could anybody help me?
    Thanks and regards.
    Gerd Nedderhoff

    Hi Gerd,
    You have to link the two iviews. First double click the first iview. Then right click the second iview and make it as the target iview. Then in the navigation panel you see the other iview in the Drag and relate section.
    Regards
    Arun

  • ORA-06502 while running a function in a report

    Hi guys,
    I am having a problem executing this function in my report to get the beg balance for my statment.
    any idea as why -- the error I am getting is ORA-06502
    Thanks
    =========================================================
    function CF_OPNE_BALFormula return Number is
    v_bal number;
    v_date date;
    v_prv_period number;
    BEGIN
    v_date := to_char(:P_date_from,'RRRRMM');
    if substr(v_date,5,2) = '01' then
    v_prv_period := to_number(substr(v_date,1,4)-1 ||'13');
    else
    v_prv_period := to_number(add_months(last_day(v_date),-1));
    end if;
    v_bal := csh_acc_pkg.csh_get_acc_bal(:p_own_id,:P_GLA_acc_num,to_char(v_prv_period,'RRRRMM'),'F','ACC');
    return(v_bal);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN RETURN(0);
    END;
    =========================================================

    this might help:
    you have declared v_date as a date, yet you put a string into it. I believe you want it to be a string, since you use SUBSTR to determine the action required.
    So change the declaration to
    v_date varchar2( 6 )
    Furthermore the line
    v_prv_period := to_number(substr(v_date,1,4)-1 ||'13');
    has some problems, I believe.
    substr( v_date, 1, 4 )
    returns a string. You cannot calculate numbers with strings, so re-write the line:
    v_prv_period := to_number(to_number(substr(v_date,1,4)-1 ) ||'13');
    finally:
    to_char(v_prv_period,'RRRRMM')
    isn't right either, I think
    RRRRMM is a date format, whereas v_prv_period is a number.
    Oracle implicitly converts number values to strings when you assign them to a character variable, so this could be a way to call your procedure:
    v_bal := csh_acc_pkg.csh_get_acc_bal(
    :p_own_id
    , :P_GLA_acc_num
    , v_prv_period
    , 'F'
    , 'ACC' );
    Good Luck!

  • IP - Is it possible to call exit planning function from ABAP Report..

    Hi All,
    Greetings.
    Is it possible to call exit planning function from ABAP Report (t-code SE38) ? Or I mean is not limited only to be called from ABAP Report, perhaps from BSP / Web-Dynpro / Function Module.
    If somebody here has been doing it before, I'm keen to ask to kindly share it. Particularly how to call and transfer data to that exit function.
    Or if somebody has done in BPS, appreciate if it can be shared too .
    Thanks a lot and have a good day,
    Best regards,
    Daniel N.

    Hi.
    You can achive this as suggested by Mattias in your previous post.
    Lets say you have next data structure:
    CostCenter | Amount | PercentForDistibution |
    Create input ready query in this format. Restrict cost center by variable type range.
    Create WAD with analysis item.
    When you run web page you enter range of cost centers (lets say you will enter 101004 to 101010).
    I assume you have data only for 101004 in your cube (lets say 1000).
    You will see only one record in your webpage.
    CostCenter | Amount | PercentForDistibution |
    101004       | 1000     | NOTHING
    When you create WAD in analysis item properties set "NUMBER_OF_NEW_LINES" to lets say 1 (so in WAD you will see always one blank line for entering new data).
    Just add 6 new records:
    CostCenter | Amount   | PercentForDistibution |
    101005       | NOTHING| 10
    101006       | NOTHING| 30
    101007       | NOTHING| 20
    101008       | NOTHING| 25
    101009       | NOTHING| 5
    101010       | NOTHING| 10
    Then run planning FOX function like this:
    FOREACH Z_COST_CENTER.
    IF {Amount, Z_COST_CENTER} <> 0
    Z_AMNT_TO_DISTRIBUTE = {Amount, Z_COST_CENTER}.
    ENDIF.
    ENDFOR.
    FOREACH Z_COST_CENTER.
    IF {PercentForDistibution Z_COST_CENTER} <> 0.
    {Amount, Z_COST_CENTER} = Z_AMNT_TO_DISTRIBUTE * {PercentForDistibution Z_COST_CENTER}.
    ENDIF.
    ENDFOR.
    It is not perfect FOX, but as an idead, it should work.
    Regards.

  • How to use oracle functions in Crystal Reports XI using Oracle Server

    Hi all,
    Is it possible  to use oracle functions in Crystal Reports XI using Oracle Server as Data Source.
    If i try to use a procedure,i am getting error with message "Invalid Arguement Provided".
    Functions are not visible objects like tables,views and stored procedures.
    The  jdbs driver i m using is oracle.jdbc.driver.OracleDriver.

    I think it is not possible to add functions in crystal directly for any database. You need to use those functions in a stored procedure and add that storedprocedure as a datasource.
    [https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes%7B6163636573733d36393736354636443646363436353344333933393338323636393736354637333631373036453646373436353733354636453735364436323635373233443330333033303331333233353335333833323333%7D.do]
    regards,
    Raghavendra

  • How to Get SUMCT SUMGT functionality in WEBI reports.

    Hello All,
    How to get the SUMCT SUMGT functionality in WebI reports using variables/formulates, as these fictions cant be used in Bex if we are developing a BO report on top of that.
    We are developing BO WebI reports on top of BeX query. nd we are on BO 4.0
    I tried to search in SDN but didnt got any relevant link.
    Thanks  & Regards
    Neeraj.

    Hello,
    Srry for disturbance.
    Got the soln for the same. Can be achieved easily using report context.
    For more details refer below link.. :
    http://www.dagira.com/2010/01/04/calculation-context-part-i-overview/
    Neeraj.

  • Function Security Menu Report in Oracle 11i -- URGENT NEED!

    Is there a way that I can run the Function Security Menu report in Oracle 11.5.10 for all responsibilities at the same time? We currently have 175 active responsibilities in the system.
    We also have to provide this info to auditors on a quarterly basis, and it would be great if I didn't have to run this report for each active responsibility. Is there any SQL Script avaliable for this?
    Any help would be very much appreciated?
    Thanks!
    FZ
    Edited by: 993391 on Mar 12, 2013 10:28 AM

    993391 wrote:
    Is there a way that I can run the Function Security Menu report in Oracle 11.5.10 for all responsibilities at the same time? We currently have 175 active responsibilities in the system.
    We also have to provide this info to auditors on a quarterly basis, and it would be great if I didn't have to run this report for each active responsibility. Did anyone wrote any custom queries to pull this information out for all responsibilities or any help would be very much appreciated? Have you checked the code in (Checking Functions Associated with a User Menu or a Responsibility [ID 948512.1])?
    Thanks,
    Hussein

  • Functions in xl reporter

    What are the functions of the following -
    1. ixParam("vCompany")
    2.ixParam("vItem")
    3.ixDimGet("ITM", "ItemName")
    4."   " & ixDimGet("ITM", "ItemCode")
    I found these functions in sample report of xl reporter i.e Item price list.I tried creating new report by directly pasting these functions,but the report was blank.What are the initial setting of the report before setting these functions ?Where do I specify these initial setting ?

    Hi Dilip
    The ixParam's are parameters created in your report. The ixDimGet are dimension attributes which will retrieve the data Item Code and Item Name.
    When you create a parameter and you execute the report, it will display a window in which you must select the parameter(s) for the report. In other words in your example you would have to select the Company and also an Item from the list.
    Did you get manage to get the e-Iearnings I referred you to? You should really try and go through them. It's the best way to learn and will save you a lot of frustration.
    Daan

  • Any ProperCase function in SSRS report

    There used to be a ProperCase function in Crystal Reports, is there anything similiar in the new SSRS report?

    Yes, you can get proper case/Camel case/tilde case by using 
    =StrConv(Fields!Name.Value,3)
    Above will convert all the words to Proper case, But in some case if you want like this
    New York (NY)
    use this:
    =StrConv(Left(Fields!Name.Value, InStr(Fields!Title.Name, "(") - 1),
    3)
      & Right(Fields!Name.Value, InStr(StrReverse(Fields!Name.Value), "("))

  • Count( ) function in BIP Report

    Hello,
    Can someone please help me with my count( ) function in BIP reports? I have this code in my RTF template below that only count 1 per ssImageType
    <?xdofx:if (ssStatus='Closed') and (ssGroup='EDS OPS') then count((/ssAction=/ssImageType))?><?end-if?>
    The undesired result is coming up below:
    Image Type A = 1
    Image Type A = 1
    Image Type A = 1
    Image Type B = 1
    Where we wanted it to come up as
    Image Type A = 3
    Image Type B = 1
    Image Type C = 0
    Any help would be greatly appreciated.
    Thank you

    What is the item that you want to count? I don't understand what you are trying to do here: count((/ssAction=/ssImageType))?
    If status is closed and ssGroup = EDS OPS, and ssAction = ssImageType, then you want to count the number of records?
    If you want to, send me the rtf and xml file to [email protected] and I can take a look. Send me the exact specification..
    Thanks,
    Bipuser

  • Keep getting error when trying to use =related function in PowerPivot

    Greetings,
    I have created a relationship between two tables based on a common field in PowerPivot, and whenever I use the =related() function to try and bring data from a field in one table to a field in another table, I keep getting and error message that says:
    The column 'XXXX[xxxx]' either doesn't exist or doesn't have a relationship to any table available in the current context.
    Any ideas? I've made this work before in a different dataset so I'm not sure what I'm missing. I have a feeling it might be really basic, but I'm spinning my wheels here.
    Thanks very much!
    MFW

    Hi MFW,
    This sounds like the table where you are trying to use the RELATED function from is on the
    one side of the one-to-many relationship (i.e. the relationship arrow is pointed towards it). If in reality there is only a
    one-to-one relationship between the data and you only need to bring the data from one table to the over, you can simply reverse the direction of the relationship and the RELATED function will work as expected. If this is not the case then you'll
    need to use RELATEDTABLE instead of RELATED and some kind of aggregation or computation that ensures that a single value is returned  for the column you are trying to get data from. There is also another function called CALCULATE which can be used for
    this scenario.
    Imagine that we have two simple tables: Table1 and Table2...
    Table1
    Column1
    Column2
    1
    A
    2
    B
    Table2
    Column1
    Column2
    1
    AA
    2
    BB
    ...and create a relationship where Table1 is on the many side and Table2 is on the one side i.e. Table1 -> Table2
    We could use a number of methods to pull the the values from Column2 in Table1 into a new Calculated Column in Table2.
    If the column we are trying to pull contains text values then we could use a combination of the CALCULATE and LASTNONBLANK function:
    =CALCULATE(LASTNONBLANK(Table1[Column2], TRUE()))
    If the Table1[Column2] contained only numeric or date values then we could use a combination of the RELATEDTABLE and MAXX functions:
    =
    MAXX(
    RELATEDTABLE(Table1),
    Table1[Column2]
    An alternative to the DAX directly above is to use the CALCULATE and MAX functions:
    CALCULATE(MAX(Table1[Column2]))
    You can learn more about the functions I have referred to below:
    CALCULATE
    LASTNONBLANK
    RELATEDTABLE
    MAXX
    Regards,
    Michael Amadi
    Please use the 'Mark as answer' link to mark a post that answers your question. If you find a reply helpful, please remember to vote it as helpful :)
    Website: http://www.nimblelearn.com, Twitter:
    @nimblelearn

  • How to implement the Oracle Group by function in Crystal reports?

    Hi all,
    In SQL, for example we have a group function like:
    select  district,state, country, continent, sum(no.of people) from world.
    Now, How to implement this group function in crystal reports? Please advise.
    Thanks in advance..
    Regards,
    sriram

    Hi Vinay,
    Thanks for the prompt reply.
    In one of our report, we are supposed to perform group by for 14 columns to get sum of 3 columns and there by displaying 17 columns in the report.
    When we tried in crystal reports to implement this oracle group by functionality:
    1. We created 14 groups from the Insert->Group option.
    2. By performing this, we got 14 group sections vertically(one inside the other).
    3. Then we created the sum(15th column),sum(16th column), sum(17th column)  by Insert->Summary option.
    4. We suppresed all the group sections except for the last group.
    5. Then, dragged all the groups to the last group section along with the summary fields.
    This is how, we tried to acheive the oracle group by function in Crystal reports.
    Please advise, whether our approach is right. If not, please suggest the appropriate approach with a bit detailed explanation.
    Thanks,
    Sriram.

  • The Problem is about Standard Back Button Function in the Report Program.

    The Problem is about Standard Back Button Function in the Report Program.
    In the Report,First call screen Then Using "write" output some information,That is ok. but In the GUI When I press back button that is standard button,it exit screen to program.
    My question is how can i do When i press back button,the screen can be back forward first screen instand of exit screen to program. Thanks .

    Hi,
    You can define your own PF-STATUS and in that assign the function code for BACK button anything except 'BACK'.
    The code would somewhat look like this:
    SET PF-STATUS 'TEST'.
    write : itab-col1,
               itab-col2.
    in the PF-STATUS 'TEST', assign the function code to BACK button as 'BCK'.
    Now in your program you can use the event AT USER-COMMAND.
    In this you can handle the functionality of BACK button.
    Hope this helps.
    Regards,
    Himanshu

Maybe you are looking for

  • Program error when opening layer properties

    Hi! I have a really difficult problem in Photoshop. Whenever I try to open the layer properties I get the error message "Could not complete your request because of a program error." I tried to fix it but I really don't know what to do. I am working o

  • How can I get "Read Out Loud" to read a calander properly for the blind?

    I create a monthly newsletter for a place that has a traditional calendar along with it.  One of the people this newsletter goes to is blind and uses a screen reader to read it out loud.  I also discovered Adobe Reader can also do this.  Unfortunatel

  • How to create separate articles out of one InDesign document?

    I have a pre-created InDesign 5 document that is about 50 pages. There are different articles within these pages, and there are different sections created for the page numbers. When I add to the folio, it appears to be adding the entire document as o

  • Oracle Terminal. Adding new Function. Forms6i

    Hi all, in Oracle Terminal I would like to map the key F2 with the trigger KEY-F2. The question is, what should I enter as 'action' in the key binding definition window? Thanx.

  • ActiveSync and Personal Contact Groups for Mobile (incl Windows Phone)

    Hello, As more MDM's (including BES10, Airwatch, native Windows Phone etc - besides Good For Enterprise) are moving towards EAS for enterprise e-mail sync, and I myself have 2 devices which have forced me to use EAS, I noticed that the various person