Re: SAP BPC 7.0 - Copy an EvDRE function

Hello,
I have a scenario to share with you all. I am designing a comparison report; year to year, month to month. I created a EvBET function. It is good to get this function copy to all range of cells. Is there an option to copy EvBET function in BPC 7.0?
Please share your views?
Thanks in advance

For this type of 3-column comparison, you want to disable the column expansion.
Then manually adjust your colKeyRange (inserting columns, or modifying the EVRNG formula to include 3 columns).
If you just want this report to be static in time, and always show those 3 specific months, then just type in the member IDs.
Much more likely, you want it dynamic, so decide which time period should come from the user's current view. Let's say you want "this month, last month, and this month last year" In that case, for your example 2008.MAR is "this month." So in one column, set a formula = the cell in your pagekeyrange (or anywhere else you want to build it) containing the EVCVW formula for your time dimension.
Then in the second column, use EVTIM to retrieve the member ID from one month prior.
And in the third column, EVTIM for the member ID one year prior.
Consider carefully how the report should work, if the user selects a quarter or year in the current view. It's possible to configure EVTIM so it always refers back 1 period (or 12 periods) at the same level as the current view. But you'll get errors if you build the report to go back 12 periods, and the user selects a year, if your time dimension doesn't go all the way back to 1996. Most likely, you'll want to show last year, regardless of the time level the user selects.

Similar Messages

  • SAP QM Result recording - Copy inspection results functionality

    Dear all,
    I have two queries.
    1) The Raw materials used in various plants are same. I want to copy the inspection results to the inspection lot if the batch is already accepted in other plant. The material, batch and vendor is common point. Some of the characteristics are caluculated characteristics. How to map this requirement.
    2) I want to test the standard functionality for copy results but in my system, the settings for copy inspection results is not appearing in quality inspections in SPRO. I want to confirm whether I am missing some other setting.
    Regards,
    Manohar

    Hello Jessica,
    you could try the following bapis:
    BAPI_INSPCHAR_GETRESULT
    BAPI_INSPCHAR_SETRESULT
    Although the desired functionality was actually implemented in higher releases.
    Hope this helps you.
    Regards,
    Isabelle

  • SAP BPC 7.0NW (project in Ramp-Up)

    Hi,
    We are doing 2 Ramp-Ups currently on the BPC for Netweaver version, and I have a question relating to script logic.
    Knowing the Microsoft version very well, we are quite experienced with using logic for budgeting or forecasting purposes. I have read that ABAP/BADI's are the alternative for SQL Logic or could be. In fact, I am looking for the alternative statements of the SQL logic, but then Netweaver-compatible.
    - Is there information available on how to write BPC-logic based on ABAP/BADI's?
    - Will all of the SQL logic available in the Microsoft version become fully available in the NW version (now very limited availability)?
    Thx
    Bjorn Van Damme

    Hi Bjorn,
    The alternative to SQL based script logic in SAP BPC NetWeaver would be MDX based functions. There are 2 methods that you can utilize.
    1. MDX based functions
    2. ABAP based functions/ BADI's
    SQL Logic in NetWeaver environment doesn't work. You may try utlizing microsoft based MDX in NetWeaver environment. Well, it is up to you if you are able to utilize BADI's too prefereable method in terms of NewWeaver environment. You may have to get the information from SAP regarding what standard functions are available in writing script logic using ABAP/BADI's.
    Regards,
    Sreekanth.

  • Refresh/Copy of SAP BPC/HANA Environment

    Hi experts,
    We are running SAP BPC on HANA with BW as our EDW. We would like to refresh our Regression environment with Production. However, i understand that with HANA technology the refresh may not be as simple as just a copy exercise.
    Could you please advise on what are the steps or procedures that we need to take note of when undertaking such an exercise?
    Thank you.
    Kind regards,
    TL

    Hi TL,
    What kind of refresh you are talking about: is it BPC Backup & Restore or system backup and restore?
    If it's BPC tool then you shouldn't see any difference from similar procedure on another DB.
    If it's HANA backup and restore then it's a completely different thing depending if your HANA box is co-habituated or not.
    Please clarify.
    Regards,
    Gersh

  • SAP BPC and Hyperion SmartView

    Hello, Forum u2013
    Encountering an issue when trying to use SAP BPC and Hyperion SmartView at the same time and just curious if anyone else is 1) using both programs at the same time and 2) if so, have you encountered any problems?
    Here is the scenario:
    I have a SAP template file (EvDRE) that is used in conjunction with Hyperion SmartView.  The way it works is that the template would extract the numbers out of Hyperion and then send the base numbers to the SAP system.
    In order to do this, however, I have to create the connection to the Hyperion database first, which I do using VBA code.
    When I execute this code within a blank workbook, I am able to successfully create the connection to Hyperion with no problems.
    When I execute the same code within my SAP template, I receive a MS Excel error (u201CExcel has encountered an error and must close programu2026u201D).  This has been a consistent result that Iu2019ve received.
    Please note that I am not logged into either SAP or Hyperion when I receive this error (this happens outside both systems).  I'm worried that as soon as I log into both programs, the whole thing will crash...
    So, just curious if anyone out there is encountering the same issue when trying to use both programs.
    Please let me know.
    Carlo

    My suggestion is to attempt to break it into 2 seperate work flows for testing, using 2 seperate templates.  One to pull, then copy the data to the second sheet for submission.  I would assume that you would have to be connected to initiat eeither the extraction of sending of data using your added code, so seperating the 2 steps may prove useful.
    Hope this helps.

  • VBA problem with SAP BPC report

    Hello
    I have an EVDRE() SAP BPC report where one of the member id selection is derived using a VBA script. The problem I'm having is when I click on expand and refresh icon, the member id changes to #Value and the expansion and refresh fails as #Value is not a member id.
    I would really appreciate any help on understanding why on expansion my VBA selected member id is replaced with #Value and how I can fix this if that is possible.
    Many thanks
    Hina

    Thank you for your help with this problem which is now resolved.
    Just to clarify we are on SAP BPC version 5.1
    How it was resolved....
    We had to use BEFORE_EXPAND as advised and also fix the calculation reference and finally also use AFTER_REFRESH.
    We used VBA code to remember the dropdown lists option
    and
    copy the calculated member id into the pagekey dimension cell.
    The AFTER_REFRESH restored the dropdown list option selected.
    Not sure if the code is helpful but this is what we used....
    Dim intRegionChoice As Integer
    Dim intSegmentChoice As Integer
    Dim intCountryChoice As Integer
    Function BEFORE_EXPAND(Argument As String)
    'Range(MCC_NodeToUse).Formula = Range(MCC_NodeToUse)
    'Sheets("MCC").Select
    'Sheets("MCC").Calculate
    intRegionChoice = Range("AnswerRegion").Value
    intSegmentChoice = Range("AnswerSegment").Value
    intCountryChoice = Range("AnswerCountry").Value
    Range("PickUpUserSelection").Value = Range("MCC_NodeToUse").Value
    End Function
    Function AFTER_REFRESH(Argument As String)
    'MsgBox "After something"
    Range("AnswerRegion").Value = intRegionChoice
    Range("AnswerSegment").Value = intSegmentChoice
    Range("AnswerCountry").Value = intCountryChoice
    End Function
    Thank you for all your help.
    Hina

  • Reports from SAP BPC NW 7.5

    Hi All,
    Our Landscape:
    SAP ECC EhP1
    SAP BW 7.10
    SAP BOBJ XI 3.1 (WebI/Crystal/Xcelsius)
    SAP BPC NW 7.5
    We are new to BPC. We would like to know where do we need to develope the reports on BPC data. Can some one help me on this. If some one have any best practices or options that where we can develope the reports, pls let me know
    Like we can do reporting directly on BPC with only couple of reports from BW/BOBJ or all reports from BW/BOBJ.
    Here we are planning to use BW as warehouse solution and BOBJ tools for reporitng on BW data.
    Thanks,
    Bala

    Hi Bala,
    BPC is a planning & a reporting tool. It can also be used for Consolidation. As mentioned in the previous reply, the data in BW has to be made available in BPC Application (cube) to be able to report it out.
    You might need to create transformation files and conversions files between your BW cubes and the BPC cubes to realise the data transfer to BPC application (cube). Note, BPC cubes are automatically generated when you create an application from the BPC front end.
    Please refer to some good introductory blogs available on SDN to get to know the BPC terminology and BW terms. Then BPC has an reporting tool in itself. You can create reporting using EVDRE for example which displays the data landed in BPC cubes. This typically will have actual data (loaded from BW), plan data (planned through Input Schedules or flat file data loads).
    Hope this give some brief idea.
    Thanks

  • Issue in the Reporting feature of SAP BPC NW 7.0

    Hi everyone,
    I am facing an issue with respect to the Reporting feature in SAP BPC NW 7.0 version. I am supposed to generate a P&L report using the EVDRE function.
    Issue-
    In the report that I have generated, the system is retrieving only a subset of the broad-level P&L heads. e.g. while BPC is retrieving the EBITDA, EBIT and PAT figures, it is not retrieving the Depreciation, Interest and Tax figures in the report. All the members that are not getting displayed are members with ACCTYPE= 'EXP', while the ones getting displayed are members with ACCTYPE= 'INC'.
    Even though the 'EXP' figures are not getting displayed, the amounts are getting deducted correctly. (i.e. even though Interest amount is not getting displayed in the report, the PBT figure being displayed is correctly calculated as PBT= EBIT-Interest).
    Also, I am able to see the amount in Interest payments, if I drill to the base-member elements (G/Ls in my case)
    Would really appreciate if someone could shed some light on what might be the probable issue.
    Thanks in advance,
    Sameer Rane

    Hi Nilanjan/All,
    Thanks a lot for your reply. I suppose, I was not very clear about my problem. The issue is with regards to the value for the Account-dimension members with ACCTYPE = 'EXP' and not with the members per se.
    Setting the MemberSet Filter addresses the issue of getting particular Dimension members in the report. In my case, I am already seeing all the necessary members in my report (I have explicitly created a list of all the members I want to see in my report in the MemberSet parameter). However, I am not able to see any values for these members for any of the time periods (even though the values exist).
    Also, I don't get any values for some of the INC items as well (e.g. OperationsIncome) inspite of the fact that the base member G/Ls under this account hold values.
    Would appreciate any help towards resolving this issue.
    Thanks in advance,
    Sameer

  • SAP BPC 7.5 SP3 and Citrix Entering Data through BPC Client and Citrix

    Hello BPC experts,
    my client is using SAP BPC 7.5 SP3 in combination with Citrix. We are having problems now, while entering data through the BPC Client (installed on BPC Server) and the BPC Client (running on Citrix).
    When we enter data through the BPC Client (Server) and expand the sheet, we can only see the data that we entered through the BPC client (Server). When entering data through the BPC Client (Citrix), we can see only the data we enter through the BPC Client (Citrix).
    The database, however, saves both entries correctly. For test purposes we created a test report which shows both entries correctly in the BPC Client on the server and on Citrix.
    Does anyone have an idea what can be wrong with our system? We tried to create an EvDRE log File for this BPC version as well, but failed. Maybe one of you already did that and can help me with this.
    Thanks in advance!

    You can greatly improve your chance of receiving a helpful answer to your question if you state the version (MS or NW) of BPC which you are using.
    Also notice the sticky [note|Please do not post BPC, SSM or FI/CO questions here!; at the top of this forum whereby we announced new dedicated forums for BPC which are the proper place to post your questions regarding BPC in the future to be able to reach the right audience for your question.
    Thanks and best regards,
    [Jeffrey Holdeman|http://wiki.sdn.sap.com/wiki/display/profile/Jeffrey+Holdeman]
    SAP Labs, LLC
    BusinessObjects Division
    Americas Applications Regional Implementation Group (RIG)

  • Cannot maintain dimension members in SAP BPC

    Hello, Masters in BPC
    I have just create mention and want to input data, I used maintain dimension members CUSTOMER in SAP BPC but It seem not effect although I press Process dimension already and I open excel and paste data also saved them already. When I open other dimension and reopen CUSTOMER but nothing is shown.
    Please give me a advice to resolve the problem.
    Thanks you so much.
    Best Regards
    Chinh

    Dear Raju,
    Yes, I did it some times but nothing is happen,
    I maintain dimension members, I did it as below:
    - Choose maintain dimension members
    - copy data from excel file and paste into the dimension
    - click process dimension
    Show a dialog
    - Uncheck Take system offine
    This task is successful.
    but I go to dimension ACCOUNT in order to insert data,
    I came back maintain dimension members : CUSTOMER but I see no data is displayed.
    It is the same for ACCOUNT when I want to see data on that dimension
    when I try one more time , I click save to server, The Error message show that : Dump Error
    I reinstall BPC client and its patch but nothing to change
    How can I do???
    Thanks

  • How to Load External Data to SAP BPC using SAP BO Data Services

    Hi,
    We want to load data from an external MS SQL Server DB to SAP Business Planning and Consolidation (BPC 7.5 Netweaver version) using SAP BO Data Services 4.0 as ETL. What is the best way to load data to SAP BPC using Data Services?
    Thanks

    Hello Devi,
    There are three ways you can load Master Data in BPC
    1) Copy and paste.
    Download master data in flat file .Copy the  master data and paste in members of dimension after that process the dimension.
    2) Using SISS Pakage - load Flat File into BPC-Cube
    3) Using SQL Command.
    Thanks.
    With regards,
    Anand Kumar

  • How to load master data in sap bpc 7.0

    Hi ,
      how to load master data in sap bpc 7.0?plz give me the steps also?
    Thank u

    Hello Devi,
    There are three ways you can load Master Data in BPC
    1) Copy and paste.
    Download master data in flat file .Copy the  master data and paste in members of dimension after that process the dimension.
    2) Using SISS Pakage - load Flat File into BPC-Cube
    3) Using SQL Command.
    Thanks.
    With regards,
    Anand Kumar

  • ABAP  dump during workstatus chaning in SAP BPC 7.5

    Hi, Experts
    We are working with SAP BPC 7.5 Ramp-up version. We faced a problem - during changing workstatus the system generates ABAP Dump.
    We checked ST22 with ABAP Dumps. It contains the following:
    What happened?
        Error in the ABAP Application Program
        The current ABAP program "CL_UJW_WORK_STATUS_DAO========CP" had to be
         terminated because it has
        come across a statement that unfortunately cannot be executed.
    ABAP errors are created in the following code:
    FIELD-SYMBOLS:
            <fs_line> TYPE ANY.
      CREATE DATA lr_line TYPE (i_tabname).
      ASSIGN lr_line->* to <fs_line>.
      l_where = 'APPSET = i_appset'. "#EC NOTEXT
      LOOP AT it_dim_mem INTO ls_dim_mem.
        CONCATENATE
          l_where ' AND ' ls_dim_mem-dimension ' = ''' ls_dim_mem-member ''''
          INTO l_where RESPECTING BLANKS.
      ENDLOOP.
      *SELECT SINGLE * INTO CORRESPONDING FIELDS OF es_lock_info FROM (i_tabname) WHERE (l_where).*
    *  fill lock information
      CLEAR ls_ujw_statcode.
      CALL METHOD me->read_status_code(
                   EXPORTING i_appset = i_appset
                             i_status = es_lock_info-status
                             i_spras  = 'E'
                   IMPORTING es_ujw_statcode =  ls_ujw_statcode ).
    ABAP dump says that in "SELECT SINGLE * INTO CORRESPONDING FIELDS OF es_lock_info FROM (i_tabname) WHERE (l_where).*"  exist a dynamically specified column name which is unknown.
    Does somebody have the same problems?
    Regards,
    Pavel

    Hi Pavel,
    This is obviously a bug and it looks like from the code block you copied into the forum that there is an issue with the actual select statements dynamic where clause. I haven't specifically seen this bug but I recommend you do an SAP Note search on the following component EPM-BPC-NW-WS (for work status) in your search criteria put the class name that you found in the dump. This should help you find whether or not a correction has been created (i.e. an SAP note) that solves your issue.
    Cheers, Scott

  • How to Run Allocation in Outlooksoft Everest 4.2 or SAP BPC 5.1

    Hello,
    Currently we use OS Everest 4.2 and we are in the Process of installing SAP BPC 5.1. We haven't used OS or BPC for allocation. I am trying to find a document that helps us guide through the process of creating a Allocation rules / formulas.
    We found a Allocation Manual in Old Outlooksoft Support site and tried using it but it doesn't work or may be I am doing something wrong.
    This is a Sample Allocation formula that we were just trying to see if it works.
    *RUNALLOCATION
    *FACTOR=USING/100
    *DIM ACCOUNTS  WHAT=AMOUNT; WHERE=<<<; USING = COUNT
    *DIM ENTITY  WHAT=EAST; WHERE=EAST;USING<>EAST
    *ENDALLOCATION
    *COMMIT
    It gives us  an error shown below when validating the Logic: shown below
    Update Excel file to Server
    Getting formulas
    Creating LGF file
    Validating logic
    *ValidateFormula: Invalid instruction: RUNALLOCATION
    Error occured
    If you have any documents that will show the step by step instructions on how ALLOCATION works and how to implement, please send it. I didn't find any thing in the helpfile. Its very difficult to figure out without any documentation.
    I would appreciate any help.. Thanks a lot !!!

    First of all, I am feeling for you. It is very hard situation that thousand of users has own local "MyDocument" folder in local PC.
    Folder structure between 5.1 and 4.2 is almost identical. Only difference is name of folder in My Documents. It was "Everest" in 4.2 but "OutlookSoft" in 5.1.
    And there is couple more differences but it is going to recover automatically. Something like dimension cache, appinfo archive.
    So, I like to suggest rename current "Everest" to "OutlookSoft" in My Documents. And do some test. I think biggest issue of here is report functionality between two versions.
    At least, simple rename procedure is much easier than copy all reports to correct path.
    I'm praying for your luck.

  • Data Manager Package Error in SAP BPC 10

    Hi All,
    I am getting below error message while running the Data manager package /CPMB/LOAD_INFOPROVIDER in SAP BPC 10. Screenshot is attached for your reference. Please help in solving this issue.
    Thanks & Regards,
    Ramesh.

    Hi Vadim,
    Please find the Advanced DM Script of Copy Package.
    PROMPT(RADIOBUTTON,%TARGETMODE%,"Handling of records",0,{"Copy records with match key","Copy by replacing data in same data region of Entity, Category, Time and Audit ID"},{"0","2"})
    PROMPT(RADIOBUTTON,%CHECKLCK%,"Select whether to check work status settings when importing data.",1,{"Yes, check for work status settings before importing","No, do not check work status settings"},{"1","0"})
    PROMPT(COPYMOVEINPUT,%SELECTION%,%TOSELECTION%,"Select the members to COPY and where to",%DIMS%,0)
    INFO(%TEMPNO1%,%INCREASENO%)
    INFO(%ACTNO%,%INCREASENO%)
    TASK(/CPMB/CM_CONVERT,OUTPUTNO,%TEMPNO1%)
    TASK(/CPMB/CM_CONVERT,ACT_FILE_NO,%ACTNO%)
    TASK(/CPMB/CM_CONVERT,SAPPSET,%APPSET%)
    TASK(/CPMB/CM_CONVERT,SAPP,%APP%)
    TASK(/CPMB/CM_CONVERT,SELECTION,%SELECTION%)
    TASK(/CPMB/CM_CONVERT,TOSELECTION,%TOSELECTION%)
    TASK(/CPMB/CM_CONVERT,KEYDATE,%SELECTION_KEYDATE%)
    TASK(/CPMB/CLEAR_SOURCE_CUBE,CHECKLCK,%CHECKLCK%)
    TASK(/CPMB/CLEAR_SOURCE_CUBE,SELECTION,%TOSELECTION%)
    TASK(/CPMB/CLEAR_SOURCE_CUBE,KEYDATE,%SELECTION_KEYDATE%)
    TASK(/CPMB/CLEAR_SOURCE_CUBE,DUMPLOADMODE,3)
    TASK(/CPMB/APPEND_LOAD,PREPROCESSMODE,0)
    TASK(/CPMB/APPEND_LOAD,TARGETMODE,%TARGETMODE%)
    TASK(/CPMB/APPEND_LOAD,INPUTNO,%TEMPNO1%)
    TASK(/CPMB/APPEND_LOAD,ACT_FILE_NO,%ACTNO%)
    TASK(/CPMB/APPEND_LOAD,RUNLOGIC,%RUNLOGIC%)
    TASK(/CPMB/APPEND_LOAD,CHECKLCK,%CHECKLCK%)
    TASK(/CPMB/APPEND_LOAD,KEYDATE,%SELECTION_KEYDATE%)
    Thanks & Regards,
    Ramesh.

Maybe you are looking for

  • How to print with "no color management" in CS6

    I have downloaded the "no color management option" to print off a patch for an ICC profile - http://helpx.adobe.com/photoshop/kb/no-color-management-option-missing.html However, I keep getting an error message when trying to print from it - saying "e

  • How to get the MD5 value of a string

    Ok, I'm haveing a bit of a problem with a login for a website I'm building. So I set users up in a mysql datebase with a user name and password. the password is put into an MD5 hash table so Password = 8569854hth75t56ht8ygt89 or some crazy string. "I

  • What is the b2b setup for identifying TP names from file name in Inbound tx

    Hi, I am using B2B 11g version and documents of type ANSI-X12. I am working for Inbound Transaction and using Generic File protocol in Listening channel. File format is : %FROM_PARTY%_%TO_PARTY%_%DOCTYPE_NAME%_%DOCTYPE_REVISION%.dat How can i make B2

  • Connector sync scom agent (microsoft.systemcenter.agent)

    we are trying to sync the microsoft.systemcenter.agent class from scom to scsm with a SCSM connector. we need this to track on which server there's a SCOM agent. but it doesn't seem to work here. i enabled the Microsoft.SystemCenter.Library as the MP

  • Uninstalling Hyperion FR Studio 9.3.1

    One of our user is facing issue unistalling the FR Studio client from his machine. The uninstall window hangs for hours. Below are the environment details. Any ideas on the alternate ways to uninstall the studio or to remove it? Does deleting the Har