Move data bpc cube to bw cube

HI friends,
i want to move data from bpc application(cube) to bw cube. could anyone explain methods.
Is transfer of data between bpc applicaions  via badi, can it be used for above purpose?
There is export data mgr package, which transfers data from bpc appli to file service and then from file service to cube, how can achieve this?
thanks.

HI Friends,
i'm using export transaction data mgr package(/cpmb/export_to_file) to upload data from bpc cube to flat file(file service). I succesfully uploaded data to file service(ujfs). when i used
1. Download document optioni: system storing in zip file format and when open it, it doesn't have data. why text(.txt) file is empty?
2. Download document DM optioin: sytem downloading in CSV file format and data is available in it.
Next how can i upload CSV file from file service to bw cube in automated fashion? Any suggestion pls.
I tried one more data mgr package (/cpmb/export_to_appl)which can move data from bpc cube to application server. When i executed this package, system asked necessary parameters. Next how can check file in application server? what is transaction code in bw?
how can i automate moving data from file on applicaitoin server to bw cube in automated fashion?
In above both packages, when executed DM package: system asking "pls select measerus and given four options periodic/ytd/qtd/signed data and system allowing only to select one four options. Why are these 4? i selected singeddata.
we are on bpc75nw sp04. thanks.
Thanks.
Naresh

Similar Messages

  • Badi: move data from bpc cube to bw cube

    Hi friends,
    I would like to move data from bpc application(i.e bpc cube) to bw cube.  Bpc cube having infoobjects starting with /cpmb/* and bw cube having infoobjects starting with y* .
    I want to write badi code to move data from bpc cube to bw cube? is it possible to move data via badi in our case?
    I know through APD its possible to move.  Any suggestions pls. we are on bpc 75 nw sp04
    Thanks,
    naresh

    Hi Naresh!!!
    I am doing the same stuff...... and got the data read inside the BAdI and converted the comma seperated into a properly structured table... but i dont know how to send this field symbol structure to a normal table. can you help me!!!!??? can you give me your contact details.... please
    Regards,
    Surya Tamada.

  • Inventory Cube - Historical Movement Data

    Hi experts
    In the Inventory Cube 0IC_C03 there seem to some problem with the Historical Movement Data. Now I want to execcute the Query by ignoring the Historical Data.  My question is
    1. How can I ignore the historical movent and execute a query on Inventory Cube.
    2. Can i get the correct Closing balance.
    Thanks in advance.
    Dinesh Sharma

    Hi,
    For 0IC_C03, you can't execute the reports without proper Historical data. If you run reports without proper dataloads, you can't get good results.  Because all keyfigures are Non-Cumulative Keyfigures, so you must habe proper data in 0IC_C03. It is not like a 0SD_C03 Cube, here you can restrict Month or day then run the reports, but in case of 0IC_C03, you must have perfect data.
    See the following URLs.
    Treatment of historical full loads with Inventory cube
    Setting up material movement/inventory with limit locking time
    Thanks
    Reddy

  • ABAP Function Module Example to move data from one Cube into Another

    Hi experts,
    Can any please help out in this ..?
    A Simple ABAP Function Module Example to move data from one Cube into Another Cube
    (How do i send the data from one client to another client using Function moduel).
    Thanks
    -Upen.
    Moderator message: too vague, help not possible, please describe problems in all technical detail when posting again, BI related? ("cube"), also search for information before asking.
    Edited by: Thomas Zloch on Oct 29, 2010 1:19 PM

    This is the start routine to duplicate records in two currencies.
    DATA: datew   TYPE /bi0/oidateto,
          datew2  TYPE rsgeneral-chavl,
          fweek   TYPE rsgeneral-chavl,
          prodhier TYPE /bi0/oiprod_hier,
          market  TYPE /bic/oima_seg,
          segment TYPE /bic/oizsegment.
    DATA: BEGIN OF S_DATA_PACK OCCURS 0.
            INCLUDE STRUCTURE /BIC/CS8ZSDREV.
    DATA: END OF S_DATA_PACK.
    S_DATA_PACK[] = DATA_PACKAGE[].
      REFRESH DATA_PACKAGE.
      LOOP AT S_DATA_PACK.
        move-corresponding s_data_pack to DATA_PACKAGE.
        if DATA_PACKAGE-loc_currcy = 'EUR'.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalgrc.
          DATA_PACKAGE-CURRENCY = 'USD'.
          APPEND DATA_PACKAGE.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalloc.
          DATA_PACKAGE-CURRENCY = 'EUR'.
          APPEND DATA_PACKAGE.
        else.
          DATA_PACKAGE-netval_inv = DATA_PACKAGE-/bic/zsdvalgrc.
          DATA_PACKAGE-CURRENCY = 'USD'.
          APPEND DATA_PACKAGE.
        endif.
      ENDLOOP.
    This is to load Quantity field
    RESULT = COMM_STRUCTURE-BILL_QTY.
    This is to load Value field
    RESULT = COMM_STRUCTURE-NETVAL_INV.
    UNIT = COMM_STRUCTURE-currency.

  • Import Transaction Data from BW Cube to BPC Cube

    Hi,
    Is there any document that explain how i can import/copy transactional data from bw cube to bpc cube like this below pic. http://img841.imageshack.us/img841/6998/prof.jpg
    Thanks in advance.

    Hi Again,
    With these documents I can import transactional data with a single keyfigure but if there are more than one keyfigure, importing and assigning keyfigures to dimensions might get confusing.
    For example i have two keyfigures "zbgstsad" and "zbgstsf" in bw cube and I have two account member in "S_ACCT": "S_F", "S_A". I did a conversion file with "zbgstsad(ext)->s_a(int)" and "zbgstsf(ext)->s_f(int)" rows. But i am not sure what i have to put instead of "?".
    *OPTIONS
    FORMAT = DELIMITED
    HEADER = YES
    DELIMITER = ,
    AMOUNTDECIMALPOINT = .
    SKIP = 0
    SKIPIF =
    VALIDATERECORDS=YES
    CREDITPOSITIVE=YES
    MAXREJECTCOUNT=
    ROUNDAMOUNT=
    CONVERTAMOUNTWDIM=S_ACCT
    *MAPPING
    RPTCURRENCY=0CURRENCY
    S_ENTITY=ZBGENTITY
    S_ACCT= ?
    S_TIME=0CALMONTH
    S_CATEGORY=*NEWCOL(ACTUAL)
    S_OB=0UNIT
    S_URUNLER=ZBGURNLR
    AMOUNT= ?
    *CONVERSION
    S_ACCT=[COMPANY]B_ACCT.XLS!CONVERSION
    TIME=[COMPANY]B_TIME.XLS!CONVERSION
    What do you recommend?
    Thanks in advance.
    Burak
    Edited by: boguner on Aug 9, 2010 2:34 PM
    Edited by: boguner on Aug 9, 2010 2:40 PM

  • Transaction data from BI TO BPC : cube error

    HI Guru's,
    We are trying to load transaction data from BI to BPC ,now my requirement is does  it possible to bring transaction data from BI Mulitprovider or SIMPLE Mulitprovider.
    While we are loading the data from Multiprovider we are finding the following Error:
    Error occurs when loading transaction data from other cube
    Application: Ext_Rev_COS Package status: ERROR
    Following is the Mapping :
    *MAPPING
    Category=*NEWCOL(ACTUAL)
    Contract_Curr=ZSD_I06___F60
    Customer=ZSD_I06___F10
    Customer_Type=*NEWCOL(None)
    Destination_T0=ZSD_I06___F14
    Entity=ZSD_I06___F22
    LeaseType=ZSD_I06___F133
    Origin_From=ZSD_I06___F13
    Product=ZSD_I06___F210
    P_ACCT=*NEWCOL(P10020)
    RptCurrency=ZSD_I06___F61
    SKU=ZSD_I06___F11
    Time=ZSD_I06___F59
    SignedData=ZSD_I06___F68
    *CONVERSION
    Time=TIME_FISPER_CON.XLS
    CUSTOMER=CUST_CON.XLS
    Appreciated for your valuable Answers and Time.............
    Thanks in advance..............

    Hi,
    Please refer to these SAP Notes:
    1562812 - Failed to load data if there are lots of rejected data -BPC 7.5 NW
    1689203 - Error occurs when loading transaction da
    I believe that the first one will do the trick.
    Hope these help.
    Regards,
    Vin

  • How to reduce the run time of ABAP code (BADI) when it is reading huge data from BPC Cube and thus writing  back huge data to the cube.

    Hi All ,
    In Case of reading huge amount of record from BPC Cube  from BADI code , performing calculations and writing back huge amount of data into the cube , It takes lot of time . If there is any suggestion to read the data  from Cube  or writing data into the cube using some Parallel Processing  methods , Then Please suggest .
    Regards,
    SHUBHAM

    Hi Gersh ,
    If we have a specific server say 10.10.10.10 (abc.co.in) on which we are working, Then under RZ12 we make the following entry  as :
    LOGON GROUP          INSTANCE
    parallel_generators        abc.co.in_10         ( Lets assume : The instance number is 10 )
    Now in SM59 under ABAP Connections , I am giving the following technical settings:
    TARGET HOST          abc.co.in
    IP address                  10.10.10.10
    Instance number          10
    Now if we have a scenario of load balancing servers with following server details (with all servers on different instance numbers ) :
    10.10.10.11   
    10.10.10.13
    10.1010.10
    10.10.10.15
    In this case how can we make the RZ12 settings and SM59 settings such that we don't have to hardcode any IP Address.
    If the request is redirected to 10.10.10.11 and not to 10.10.10.10 , in that case how will the settings be.
    I have raised this question on the below thread :
    How to configure RZ12  and SM59 ABAP connection settings when we have work with Load Balancing servers rather than a specific server .
    Regards,
    SHUBHAM

  • Copy Master Data from BW cube to BPC cube

    Hi,
    I need to copy a master data from BW cube to BPC cube.
    Can I do this from BW? That is, Can I copy master data from the view of the cube of BPC in BW?
    I do this from BW and then I see the master data in my BPC cube from the BW view, but when I open my cube in the BPC environment, I don't see nothing of the master data.
    What's the problem?
    Regards,
    Miguel.

    Hi Miguel -
    I think you are asking if you can copy transactional data from a BW cube into a BPC cube (cubes do not contain master data).
    If this is what you want to do, yes the BPC IMPORT package is a delivered data manager package that allows you to select a BW cube, transformation file, and additional options (such as work status checking and default logic execution).  The use of the Data Manager [process is the "best practice" since you will need to transform the BW data model into the BPC data  model and the tools delivered in the IMPORT data manager package are ideally suited for the job.  You can automate this process by following the guide at:
    [https://wiki.sdn.sap.com/wiki/display/BPX/Enterprise%20Performance%20Management%20%28EPM%29%20How-to%20Guides|https://wiki.sdn.sap.com/wiki/display/BPX/Enterprise%20Performance%20Management%20%28EPM%29%20How-to%20Guides]  The specific document is:  "How to Export BPC Transaction Data Using a Custom Process Chain"
    If you are actually asking for the process for loading master data into BPC dimensions, please read the following "How To" guide that describes the current best practices:
    [https://wiki.sdn.sap.com/wiki/display/BPX/Enterprise%20Performance%20Management%20%28EPM%29%20How-to%20Guides|https://wiki.sdn.sap.com/wiki/display/BPX/Enterprise%20Performance%20Management%20%28EPM%29%20How-to%20Guides]  The specific document is: "How to Automate Master Data Loads in BPC NW"
    Regards,   
    Sheldon

  • Automate data load from BPC cube to BW cube

    Hi Gurus,
    I've got all my budgeting & forecasting data in BPC cube. Now I need to load it to a BW cube and combine with Actuals in another BW cube through Multiprovider and build reports on the multiprovider.
    My question is:
    What is the best way to automate the loading process of BPC cube data to BW cube ??
    I should also be able to load the property values of BPC dimensions to the BW info objects.
    The methods I followed are:
    1. Run "Export" data package and load BPC data to a CSV file and run BW DTP/infopackage to process the CSV file into BW cube. Problem with this is - I canot automate these two steps, and even if I did, I cannot export property values to a flat file.
    2. Build transformations directly from BPC cube to an Infosource and from Infosource to BW cube. Problem with this is - in the transformations I cannot use the rule: "Read Master Data". I may have to write a routine, but my ABAP is not good enuf.
    Please help with an alternative solution
    Thanks,
    Venkat

    Thanks for the reply. I know I will have more options if I'm BPC 7.5 NW. But I'm on BPC 7.0 NW.
    I managed to pull the attribute values of BPC dimensions using routines. But still it's risky because the tech names of BPC objects may change if one modifies the dimensions or run optimization.
    It's a shame SAP haven't provided a robust solution to load BPC cube data to BW cube data.
    I don't want to load BW cube data to BPC cube and depend on EVDRE reports for my 'Plan vs Actual' reports. I (and end users) always want to lean towards BEx reports.

  • Data manager option to Append  or Add NW Infocube values to BPC CUBE.

    HI ,
    Merge and Replace optios are just to replace old values with new values. but my requirement is to add new values to old values. Data is available in BW infocube and we need to add values to BPC cube . please suggest is there any option i can use in data manager.
    thanks,
    Bala.

    Hi,
    Currently, the append option is not available while loading the BW data to BPC.
    The option I see is to extract the BW data to a flat file and then upload this file in the append mode.
    Hope this helps.
    Edited by: nilanjan chatterjee on Aug 10, 2011 11:06 AM

  • Transformation file errors(bpc cube to bpc cube)

    Hi friends,
    I'm trying to load bpc cube data to other bpc cube.  Created transformation file with following options & mapping sections.
    Simply i've to move from cube A to cube B(A, B are internally created transaction cube when creating BPC applications)
    Cube A having around 12 dims and cube B having 7 dims. In mapping i mentioned only 7 dims because target is having 7 dims.
    I think it not required to mention about other dimension in A.
    *OPTIONS
    FORMAT = DELIMITED
    HEADER = NO
    DELIMITER = ,
    AMOUNTDECIMALPOINT = .
    SKIP = 0
    SKIPIF =
    VALIDATERECORDS=YES
    CREDITPOSITIVE=YES
    MAXREJECTCOUNT=
    ROUNDAMOUNT=
    SELECTION=Time,2009.JUL;Category,10
    *MAPPING (Target dim  = source dim)
    ACCOUNT=ACCOUNT
    Category=Category
    Entity=Entity
    InputCurrency=InputCurrency
    LOB=LOB
    Time=Time
    CIRCLE=CIRCLE
    *CONVERSION
    When i tried to validate and process transformation, system telling "Errors occured while loading data from other cube".
    Do i add any other things/options?
    thanks,

    Hi Naresh,
    If you have more Dimensions in the source cube than in the target, INFOPROVIDER load is not a good idea. My understanding is that is such case you'll have to find a way to skip dimensions that are not loaded.
    Therefore *DESTINATION_APP or BADI DEST_APP are your best options. Basically, if you need any transformation/calculations than use *DESTINATION_APP; if it's just straight aggregation BADI will do it.
    How many records do you have to load? How much time do you expect that load will take? If it takes more than 20 minutes take a look at my blog "Improve performance of your BPC scripts" http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/21214. [original link is broken] [original link is broken] [original link is broken]
    Hope it helps.
    Gersh

  • Number of records in BPC Cube

    Dear Friends,
    I am working in EPM10 NW/BW 7.31.
    I just want to know  how can I find number of records in BPC cube from the back end (i.e using T-Code RSA1)
    As I am not a BW expert, any simple suggestion will be appreciated.
    Thanks,
    Rahul

    Hi Rahul,
    The way I do it is right click on the cube, then display data.
    goto the bottom section of the menu where you see the following:
    tick output number of hits
    also change the max no, of hits to a high number
    then run
    in the output screen you sum up the first column, it will give you the total number of records in the cube
    Andy

  • Open Hub For BPC Cubes

    Hi Gurus,
    I have an issue about the open hubs for BPC cubes. I have a need to take my transactional data from my BPC cube to a table.So  I want to create an open hub on my BPC planning cube.
    But when i create the open hub on BPC cube, it doesn't read the package. So, data cannot be read. But the open hubs work on my BW cubes.
    Is there anything i should do different for BPC cubes ? How can i make the open hub work?
    Thanks in advance..
    Fatih

    Hi Fatih,
    Glad you got this working, but a word of warning: As far as I am aware, customer SAP BW development linked to objects in the BPC namespace is not supported. It may very well work, but BPC may also delete and recreate BW objects at any time and without warning, which can leave you in a situation in your production environment that is very difficult to recover from without manual modification of the production BW environment.
    The recommended way to export data from BPC NW into a flat table is to use the BPC data manager Export package. You may want to try this option and see if you can meet your requirements this way.
    Ethan

  • Cannot perform write (ILLEGAL_INPUT) - BPC Cube

    Hello Friends,
    I getting the below error in log file while uploading the transnational data from BI to BI BPC Cube.
    DM Package: Import_Transaction_Data_BW_Delta
    /CPMB/MODIFY completed in 0 seconds
    /CPMB/SOURCE_DELTA_IP completed in 107 seconds
    /CPMB/CLEAR completed in 0 seconds
    [Selection]
    INFOPROV_INIT_NAME = Actuals_GL
    RUNLOGIC = No
    CHECKLCK = No
    [Message]
    Task name SOURCE DELTA INFOPROVIDER:
    Cannot perform write (ILLEGAL_INPUT)
    model: . Package status: ERROR
    The same package is running in other model and its working fine.
    Can anyone please help me to give the correct reason why it gives the error.
    Regards,
    Rajesh. K

    Hi Rajesh,
    I think in the backend you may change the structure of the cube.
    Go to backend I mean BW and use RSA1 tcode
    Next choose your cube and right click on it, later choose real time load behavior, check their is in planning mode or data loading mode, if it is in data loading mode please change in to planning mode and run the package .
    Regards,
    Saida Reddy G

  • SSRS with BPC Cube?

    Is it possible to create SSRS reports against a BPC cube?  If so, can someone direct me to a source that can tell me how to pull in dimension properties?  Would this be part of the MDX command or something else?

    Hi Christine,
    not sure I've understand what you ask. If you want to update automatically a dimension then yes there are several examples,
    in Webfolders\ApShell\Planning\DataManager\PackageFiles\Examples\Admin_MakeDim.dtsx you have an example
    Automating Master Data (Dimension) Load in BPC MS 10
    http://scn.sap.com/thread/1629510
    http://scn.sap.com/thread/3217593
    Regards
         Roberto

Maybe you are looking for