EPMSAVEDATA Function with local member

Hello Experts,
I have an Input template where in I have account, Version and time in row/column axis. In accounts I have hierarchial members selected. Besides account I have a local member (Property of Account) to get the base Level account where I want to get the amount posted to. At the end of column I have EPM save function where in I have selected Dummy Account instead of account.
Senario:
                                                                                                    Period
                                                                                                    Version
ACCOUNT           Dummy Account
Material Ac         6200000(Property of hierarchial account)
When I save, it shows me 2 record saved. 1 against Account and other against Dummy Account.
Regards,

Hello Vadim
In Column D I have Account which is a Dimension and members are Hierarchial members.
In Column D I have put property of Accounts as GL's to which I want the planned figure to be saved.
In Column BF onwards I have save function written but if i save data F77 it Returns saying 'There is no data to save'
When I save in K Column it gets saved.
In Sheet Options my 'Use as Input Form' is ticket.
In Edit Report-->Options, I have unticked 'Use as Input Form'
  Is my understanding correct about your response above....
Just 1 further question:
  I have 2 Dimension COst Center and Partner Cost Center which have same members. So there is issue of ambigious members coming up. How can I get over it in EPMSAVEData with out using Pre Fixes.
Regards

Similar Messages

  • Issue with Local Member

    Hi BPC Experts,
    We have migrated our environment from BPC 7.5 to BPC 10. We have also migrated our reports from EVDRE to EPM.
    Now we have few reports where local members are used.
    The report is buil up like this -
    Entity in columns and account in rows.
    We have created blocks in the report to show the grouping which is general while creating balance sheet or P&L report.
    Local members are created to show the total at the bottom under each group. For ex.,
    Cash account is a node we have in report.
    Structure in account dimension -
    Cash
         A_100
              A_123
              A_124
         B_100
              B_123
              B_124
         C_100
              C_123
              C_124
    In report, we have -
    CASH
    Current Assets
    Investments
    Fixed Assets
    Total Assets - =round(sum(all four above),-3)
    Now the total asset is local member here.
    When we drill down on CASH, it generates additional members in the report (as shown above). The local member does not go down on drill down.
    When we drill down on any parent node, we expect that local member should also get drilled down and show the correct value. However, this is not happening.
    Could you please share some light on how to make local members dynamic with drill down on parent node?
    We are on SP14 patch with .Net4.
    Best Regards,
    Ashwin.

    Hi Vadim,
    We managed to get the local member in our report, however, when we drill down on the last member, the local member stays at its current position and does not follow the drill down sequence.
    The members in the row axis of the report are hardcoded and column axis is dynamic. We also have few blank lines in the report.
    Let me explain you that with screenshots.
    We have 3 dimensions in rows and 1 dimension in column.
    This is how the report looks like with ABC being a local member.
    This is how our local member is set up.
    When we drill down on member A_110, the local member does get drill down, but the CASH and R_All members get attached to this local member. This is how report looks like after drill down.
    We need to have atleast 5-6 local members in the report.
    How do we overcome this problem?
    We tried inserting blank member, however, the results are the same after drill down.
    Please help.
    Best Regards,
    Ashwin.

  • SRW.SET_PDF_ACTION function with local path

    Hello,
    I need to lunch a new window browser from PDF generated by Report to start a
    Web Form.
    The documentation says i can put a local command in the SRW.SET_PDF_ACTION.
    my command is : C:\Program Files\Internet Explorer\IEXPLORE.EXE
    But when i generate the report from Report Server i get the following message :
    Unable to find file://c:\\machine.7777\reports\\Program
    Any idea ?

    Hello,
    Just add userid= in the URL , the reports Servlet will use the cookie to retrieve the
    userid info provided for the execution of the first Reports
    Regards

  • Extending a function with logic stored in a table?

    Let's say I have a function with local variables and I have a select statement in it. This statement populates (using into) these variables, one of which contains a condition which has the name of some local variables in it. I would like for this to be evaluated. Is this possible?
    for example, if I have variables named local_value1, local_value2 and local_condition and local_condition is loaded from a table column in which the expression is: local_value1 < local_value2
    I'd then need to do a: if local_condition then blah....
    I've been looking at ways to use execute immediate to do this, but it doesn't look like I can do that, as it wont do substitution of local variables, only bound variables.
    I've done this with various scripting languages in the past, but I've not seen anything on the forums on how to do this with pl/sql.
    Any suggestions?

    wether this is really meaningful or not ... here is a way:
    michaels>  CREATE TABLE demo_logic
    ( demo_logic_id NUMBER,
    demo_logic_statement VARCHAR2(4000),
    CONSTRAINT demo_logic_pk PRIMARY KEY (demo_logic_id) ENABLE
    Table created.
    michaels>  -- The data:
    michaels>  INSERT INTO demo_logic
         VALUES (1, 'local_value1 < local_value2')
    1 row created.
    michaels>  INSERT INTO demo_logic
         VALUES (2, '(local_value1 = local_value2) or (local_value1 < 7)')
    1 row created.
    michaels>  -- Then the function:
    michaels>  CREATE OR REPLACE FUNCTION func_demo (condition_id IN NUMBER)
       RETURN NUMBER
    IS
       local_value1            NUMBER                                 := 5;
       local_value2            NUMBER                                 := 2;
       local_value_to_return   NUMBER                                 := 0;
       local_condition         demo_logic.demo_logic_statement%TYPE;
    BEGIN
       SELECT demo_logic_statement
         INTO local_condition
         FROM demo_logic
        WHERE demo_logic_id = condition_id;
    --next we would evaluate 'local_condition' and if true we would then continue and do more work
    --and assign something to local_value_to_return.
       EXECUTE IMMEDIATE 'DECLARE
                            local_value1 number := :1;
                            local_value2 number := :2;
                          BEGIN
                            IF '
                         || local_condition
                         || ' THEN
                              :out := 1;
                            ELSE
                              :out := 0;
                            END IF;
                          END;
                   USING local_value1, local_value2, OUT local_value_to_return;
       RETURN local_value_to_return;
    END func_demo;
    Function created.
    michaels>  SELECT func_demo ('1') res
      FROM DUAL
           RES
             0
    1 row selected.
    michaels>  SELECT func_demo ('2') res
      FROM DUAL
           RES
             1

  • How to insert a local member in a column between two different nested row dimensions

    Hi Experts,
    We have a report which has two dimensions in rows with nesting. The dimensions are PROGRAMS and ACCOUNT.
    I have attached the layout of the report.
    We need to have a column for local member in between Col A and Col B, wherein we have to pull the long description of the program.
    We have long description of programs maintained in a property of PROGRAM dimension
    So if we can insert a column between Col A and Col B, we can have a local member in it with formula "EPMMemberProperty" refering to Col A
    Currently we are are not able to insert a local member in between Col A and Col B in EPM 10 SP 14 version because its not a data range
    I remember we used to do it in BPC 7.5 using expansion ranges to insert a blank column. So I believe similiar thing can be done in EPM 10
    I have tried the option of VBA macro to insert a column before Col A and populate the long description and then hide Col A. It works. But I dont want to complicate it with Macro, and want to use EPM functionality to achieve the same.
    Please advise if this is possible with BPC 10 to have a column for local member in between Col A and Col B.
    Thanks a lot in advance.
    Regards,
    Shiva

    Hi Sathish,
    Thanks a lot for replying. Since I had to insert the local member in between two dimensions, I couldnt use the position option in the local members. Because positions were staring from the data range.
    How ever I have tried the suggestion given by Varaprasad and Bishwajith above and it worked.
    Thanks,
    Shiva

  • Dynamic Subtotal that includes Local Member in sum

    Hi,
    I have a dynamic report that i have separated into sections using blank local members. Now within one of these groups is a local member row that is an EPMRETRIEVEDATA function that is pulling some other data. Finally, I have a repeating subtotal local member that totals the values for each group of cost centers.
    My issue is that the SUBTOTAL local member won't include the EPMRETRIEVEDATA local member in the sum.
    It doesn't matter if I use sum of EPMSELECTEDMEMBERS or EPMALLMEMBERS. Of course, I can code in the excel reference but then the subtotal isn't dynamic and the reference will be incorrect if the report expands.
    FYI, in the attached picture, the highlighted row is the local member with EPMRETRIEVEDATA and the row below in bold is the SUBTOTAL.
    Any help with this is much appreciated!
    Edited to add more recent picture. Thanks!

    Another tricky option is:
    Subtotal member formula:
    =SUM(EPMSELECTEDMEMBERS(SOMEDIM))+INDIRECT(ADDRESS(ROW(EPMSELECTEDMEMBERS(SOMEDIM))+ROWS(EPMSELECTEDMEMBERS(SOMEDIM)),COLUMN(EPMSELECTEDMEMBERS(SOMEDIM))))
    During local member processing EPMSELECTEDMEMBERS(SOMEDIM) will be replaced with the range of normal members and INDIREC(ADDRESS(... will compose the reference to cell just under this range.
    B.R. Vadim

  • Avoid local member from shared row axis report

    Hi,
    I have developed reports, and shared onereport with default report with row axis,
    when i merge the two report the local member applicable to the another report which will i don't required the formula.
    but one report don't need sum function at the end of the reach column. Row axis is dynamic.
    ex:
    total.2012
    total.2013
    total.2014
    account_1
    34
    account_2
    144
    total
    178
    not need the sum
    not need the sum
    Regards.
    surya

    You can use the EPMFormattingSheet sheet to clear the intersection of the local member Total and Time.Year <> 2012
    You must use the Multiple Selection functionality, follow this steps:
    1) In section Dimension Member/Property Formatting, section Column click the button Add Member/property
    2)  Select tab Property Selection, select dimension: TIME, property: YEAR, operator: <> and value: 2012. Then click the button "Add to Multiple Selection"
    3) Select tab Specific Selection, select Local Member option and enter the name of the local member, in this example is LocalMember000.Then click the button "Add to Multiple Selection"
    4) Select tab Multiple Selection Overview to validate the previous selections.
    5) Click OK
    6) Check the option Apply
    7) Change the conten of the cell with the formula =""
    8) In columns Use change the value "All" to value "Content"
    Hope this helps.

  • BPC MS EPM SP 17 Patch 2 Local member returns #DIV/0! error

    All,
    I am working with EPM MS for BPC and All of my local formula works.
    But some times when there is no value in the forecast or budget, the rows come back with #DIV/0! error.
    The problem is #DIV/0! in the report.
    What I have Done
    The formula I am using is
    =EPMTUPLE([TIME].[H1].[2014.Q1];[CATEGORY].[H1].[BUDGET])/EPMTUPLE([TIME].[H1].[2014.Q1];[CATEGORY].[H1].[ACTUAL])/100
    It Should be
    I tried using IF and ISERROR formula like below and it dose not work.
    =IF(ISERROR(EPMTUPLE([TIME].[H1].[2014.Q1];[CATEGORY].[H1].[BUDGET])/EPMTUPLE([TIME].[H1].[2014.Q1];[CATEGORY].[H1].[ACTUAL])/100),"",EPMTUPLE([TIME].[H1].[2014.Q1];[CATEGORY].[H1].[BUDGET])/EPMTUPLE([TIME].[H1].[2014.Q1];[CATEGORY].[H1].[ACTUAL])/100)
    Anyone came across this problem and how did you solved it? I do not want to use local excel formulas as it is not an option to what I am trying to do.
    Thanks your for your help.
    Su

    Arnold,
    Thank you for your response, The EPM and Excel function does not seem to work together.
    The basic Excel function would work however that is not an option in my case, I have to use EPM function as EXCEL function local member static with location formula.
    If there is a way to make excel function dynamic please advise.
    I tried every which way including your suggestion, It is odd that EPM function gives EXCEL errors or has no options to turn them off.
    I was hoping there is a way to use EPM and not return any errors.
    Su

  • AppV 5 slow to refresh with roaming profile (no redirects) but fast with local profile

    Hi,
    I have an issue I can't get thought out. I have an AppV5 SP3 full infra, with SMB share and local caching of packages enabled. Everything works from a functional level. However I have an issue where users with a roaming profile get a very slow AppV refresh
    during login.
    I created a few testaccounts, a few with local profile and a few with roaming profiles. For these testusers there are NO folder redirects. The only difference between them is local profile or roaming profile.
    When I login with a local-profile user initially, the AppV client rather slowly refreshes the applications and shortcuts. It generates quite some CPU load on the RDS host, but as soon as the shortcuts are placed everything is fine. When I log that user off,
    and log in again, the shortcuts are there immediately and I can immediately start the applications (Office 2010 for example). Blazing fast. Also when logging in, the refresh-UI is there for about half a second, it really flashes and it's done.
    Then with a testuser with roaming profile, the initial refresh is about the same. But when I logoff that user and login again, it's all very slow. The shortcuts are there but blank initially, it takes about 5-10 seconds to get the correct icon. It takes
    much longer before the refresh actually starts (sometimes up to 30 seconds after login), and it takes 5-10 seconds to do the refresh, with 100% cpu load on the thread AppVclient.exe is running on. Also right after loging in when the shortcuts are blank they
    don't work until they get the proper icon. WHen everything is refreshed it works all fine though. It's just painfully slow at start.
    I don't understand this. I can reproduce this every single time. Without folder redirects I don't see the difference between roaming and local profile from AppV perspective, as the roaming profile is of course copied to the server and in that sense the server
    just works with a local copy anyway.
    Anyone encountered this, and how to troubleshoot, or better fix this?

    So is the fact that there is a 5-10 second delay during refresh actually an issue? What I mean by that is - are any users comparing the local profiles with roaming profiles experience, or complaining that the delay is there?
    Roaming profiles and Folder redirection are of course very simple to configure; however for the best user experience I recommend managing profiles with a real profile management solution.
    If you have MDOP, then you'll also have access to UE-V. You've mentioned your environment is RDS, which sadly doesn't get UE-V, even though you have App-V.
    Here are some resources on UE-V + App-V and what's required when managing App-V with roaming users:
    How To Use Microsoft User Experience Virtualization With App-V Applications
    Application Publishing and Client Interaction: Roaming registry and data
    Here's also some resources on App-V performance worth looking at:
    Performance Guidance for Application Virtualization 5.0
    App-V Performance Best Practices: New Project VRC White Paper
    Please remember to click "Mark as Answer" or "Vote as Helpful" on the post that answers your question (or click "Unmark as Answer" if a marked post does not actually
    answer your question). This can be beneficial to other community members reading the thread.
    This forum post is my own opinion and does not necessarily reflect the opinion or view of my employer, Microsoft, its employees, or other MVPs.
    Twitter:
    @stealthpuppy | Blog:
    stealthpuppy.com |
    The Definitive Guide to Delivering Microsoft Office with App-V

  • Pipelined function with lagre amount of data

    We would like to use pipelined functions as source of the select statements instead of tables. Thus we can easily switch from our tables to the structures with data from external module due to the need for integration with other systems.
    We know these functions are used in situations such as data warehousing to apply multiple transformations to data but what will be the performance in real time access.
    Does anyone have any experience using pipelined function with large amounts of data in the interface systems?

    It looks like you have already determined that the datatable object will be the best way to do this. When you are creating the object, you must enter the absolute path to your spreadsheet file. Then, you have to create some type of connection (i.e. a pushbutton or timer) that will send a true to the import data member of the datatable object. After these two things have been done, you will be able to access the data using the A3 - K133 data members.
    Regards,
    Michael Shasteen
    Applications Engineering
    National Instruments
    www.ni.com/ask
    1-866-ASK-MY-NI

  • A function with a list of data

    I need to get a list of names from a function so that i can avoid creating seperate functions for each names...
    could anyone give a syntax for it?
    I dont want to have a procedure but a function will be good
    thanks

    I am using crystal reports to show names of a bunch of people. insted of each name comes form different function inside the oracle package, I would like to have a single function with an array of names so that I can return it easily
    eg; board member 1 (from function 1)
    board member 2 (from function 2)
    board member 3 (from function 3)
    I should get something like board member n(from a single function that has n number of members) , so that its easy for managing the list later and reduce the code
    This sounds so silly, but i am new to both crystal and pl/sql....
    please help

  • Using Multiple Functions with in members selection of Hyperion Financial St

    Hello everyone, I am trying to retrieve all the level 0 entity members from a specific Level 3 entity member. Can I use multiple Functions with in Report studio to do this?? Or is creating an alt hierarcy my only option?
    Thanks

    You can try doing System Defined member list Lev 0 AND Descendants of Lv 3 member
    JTS

  • Buffer table not up-to-date error while working with local SRM PO

    Hi all,
    We are working in SRM 7.0  with extended classic scenario.
    I faced an issue while working with local SRM PO. Iam getting a dump while doing changes in SRM PO.
    Dump says that "Buffer table not up-to-date". Please find the detail dump error below :
    http://cscgsapndc34.nwk.amer.csc.com:8114/sap/bc/webdynpro/sapsrm/wda_l_fpm_oif/
    UNCAUGHT_EXCEPTION
    Buffer table not up-to-date
    Function: BBP_PD_ABORT of program SAPLBBP_PDH
    Form: ABORT of program SAPLBBP_PDACC
    Form: ACCOUNT_INTERNAL_SAVE of program SAPLBBP_PDACC
    Function: BBP_ACCOUNT_INTERNAL_SAVE of program SAPLBBP_PDACC
    Form: PROCDOC_INTERNAL_SAVE of program SAPLBBP_PD
    Form: STATUS_SET_AND_INTERNAL_SAVE of program SAPLBBP_PD
    Form: PROCDOC_UPDATE of program SAPLBBP_PD
    Function: BBP_PROCDOC_UPDATE of program SAPLBBP_PD
    Method: /SAPSRM/IF_PDO_UPDATE_BUFFER~SUBMIT of program /SAPSRM/CL_PDO_UPDATE_BUFF_PO=CP
    Method: /SAPSRM/IF_PDO_BASE~SUBMIT_UPDATE of program /SAPSRM/CL_PDO_BASE===========CP
    http://cscgsapndc34.nwk.amer.csc.com:8114/sap/bc/webdynpro/sapsrm/wda_l_fpm_oif/
    If anyone of you already came across this type of dump error can you please let me know what might be the possible reasons for the same .  Request your kind help in this regard.
    Thanks in advance.
    Regards,
    Kalyani

    There could be many issues..
    or some data issue.
    can you recreate the same issue you can fix it.
    it could only one incident so you should thoroghly check what piece of data is wrong.
    what actions are you doing in the purchase order.
    Note 1580496 - Purchase order Buffer table not upto date dump in change ver
    Symptom
    1.Create a change version on any Purchase order.
    2. Edit quantity of any item
    3. Dont press 'Enter key'
    4. Clickk on Order button.
    Application gves dump 'Buffer table not upto date'
    but it is very difficult to say what is the issue. request your technical resource to look your dump.
    if you recreate the issue half of the problem resolved.

  • Can't use voice/video functionality with external domain connected users through federation

    Hello All,
    Hope you keeping well..!!
    We are communicating with external customers lync server through federation option setup on our corporate lync server.  We have received the federation setting from the customer with SIP address which has been setup on our corporate lync servers after
    that we were able to browse the customer contact through corporate lync account.
    We were also able to chat with external customer but however voice/video functionality are not working through same session.  Whenever we try to dial out external customer lync account it ended with error message "call ended due to network issue".
    We have checked the setting from corporate lync servers and network point of view but doesn't find any issue which cause the disconnection to voice/video over lync.  Could you pl help or guide with the way to resolve the issue.
    Thanks, MK

    Thanks for your reply.<o:p></o:p>
    Audio/Video works fine within corporate when dial any lync contact.  We only have issue while trying to use the same functionality with any other
    external lync contact configured over federation option.<o:p></o:p>
    We already checked the security rules and all required ports are open, as confirmed by local resolver group.<o:p></o:p>
    We have checked with external parties and according to them their systems are hosted by Microsoft as part of office 365 suite and they already have
    federation option for 17 different customers which works fine.  Which means issue must be your local end.<o:p></o:p>
    Is there any tool available to identify the issue from client end?<o:p></o:p>
    Also I have a question here....In my corporate environment...client is sitting in India and lync servers are hosted in UK and users connect to it
    over MPLS route.  In Client lync configuration we have  internal/external servers configured .....so when i tried to make a voice call with external lync users then I see from netstat -a command that traffic hitting to multiple public IP addresses
    directly from my machine..<o:p></o:p>
    Does it mean that client required internet connectivity with specific open media ports to connect with external parties for video/voice? or in ideal
    case all request should handle by corporate internal server which should took UK internet path to connect with external lync contact?
    Thanks, MK

  • Consolidation with  local Account

    Hi
    I have a question about the consolidation with local accounts, we have subsidiaries in Latinoamerica in countries like chile, peru, colombia, and our users in this countries want to prepare financial statements but with local account and then send to corporative en Mexico.
    I heard that in version 6.0 SEM BCS there is a part called "consolidation functions for local Accounts"
    Can anybody help me with this???
    I need because we are planning buy the version 6.0 SEM BCS and I think will be very helpful for me.

    If you want to do more detailed analysis of local financial of these countires then keep the data in ODS. . Whatever the financial report you need for these countires take it by report from ODS.
    But from BCS cubes you can take another consolidated report by group account. Any report you run from BCS cube can address all consolidated functions such as Interunit elimination, current translation , etc.
    Web BCS monitor is like enabling the UCMON on web. All BCS functions can be seen in web.
    The word DYNPRO stands for dynamic processing and it is basic SAP term.

Maybe you are looking for

  • Re : select-options in abap-objects program

    Dear friends,                   I want to give select-options in abap-objects program. How to give that.                              Thanking You with regards, Mani

  • Web service in Mac OS X server - Tiger

    How to enable web service? From the server admin panel, it indicates web service is not running and I can't start it as it is grayed out. Please advise

  • Formating a Dell server for installing oracle10g

    hi all, I want to install oracle10g Rel2 in my dell SERVER . but before installation i want to format my server because i just want Opering System and Oracle database at this server nothing else. but my network administrator told me formating a serve

  • Maintenance view of two tables

    I need to update two tables Header and Item with the hepl of maintenance view.There structure is as follows : Header - GRPKEY (Pr. Key)               Printchk Items :- GRPKEY ( Foreign key - check table Header-GRPKEY)             fieldname ( Key)    

  • RE: SEARCH Task 4 & 5 in the Toolbox Tutorial 11.5.10

    Hi, I'm following the Toolbox Tutorial 11.5.10 but I'm using my own workspace and project, thus different data. I get the following error: Message was edited by: user552030