Data remodeling

Hi Expert,
I have a sales cube for dimension table consists of 0material and EAN no. I have 600k activate material no in the system. Knowing that the design of 0material should flag 'Line Item Dimension' for 0material. I would like to carry out the remodeling of existing cube. May I know is there a way to copy the existing cube with its data to temporary cube follow by re-copy it from temporary cube to the new model. Or, can anyone please share with me the right approach to carry out the remodeling?
Thanks,
Kang Ring

Hi,
Remodelling is a tool which given by sap to do any modification in existing cube with data.  When you are doing the same in back group system will be creating a shadow table and copying your records over there then reload also accordingly.  When you do the same all necessary activities will be taken care by system eg. creating new sids , dids ect. 
http://wiki.sdn.sap.com/wiki/display/profile/2007/06/28/RemodelingToolinBI7.0
Note :
         Can't create new Dimension Tables using Remodeling.
         Can't create Characteristics in Other Dimension Tables (Characteristics used in the Line Item Dimensions can't be used for Remodeling).
          Will work for partially Compressed or Compressed Cubes.
          Can't delete the Rules unless you delete the request.
          Building a User Exit for Key figure Remodeling needs to be taken care.
Regards
BVR

Similar Messages

  • Pull variable from outside of OBIEE?

    Hi,
    say I have a .NET, Java or Javascript form which I embed in OBIEE simply by having the web form in a OBIEE portal as embedded content.
    Is it possible to get a report to 'see' the variables in the form??
    thanks for your time,
    Robert.

    Hi Joe,
    my 'requirement' is more that I have on a single OBIEE page;
    1. Non OBIEE web form which is dual purpose; -
    a. To act as parameters to restrict and remodel data in results of 2 below.
    b. On press of a button <Store Result> the web form stores the data and effects a mass data change based on paramters and modelling values
    2. A simple OBIEE report which has its data restricted cf 1a above and its data remodelled cf 1b above
    Ideally I would like to do it all in OBIEE but (I am in 10g - please tell me if you think 11g changes the picture significantly); -
    1. Prompts are okay, but not flexible enough for what I am trying to achieve
    2. Postback is okay, but I would like pre-database validation - I can do it via a trigger, but there is no way to propogate back error messages and I would rather prevent errors with the web form, than need to prevent them
    Hence my reason for considering this hybrid solution, BUT - please suggest if you think there is a vastly superior way to do this??
    thanks for your input,
    Robert.

  • How to Load data in remodeled info provider(Info cube) ?

    I have added one key figure  in existing cube by using remodeling process.
    I changed the transformation rule and reloaded the data but the new key figure is still showing value as 0.
    Can anyone please explain complete step by step process of loading data in remodeled info cube.
    I am new to SAP BW. please help me to sort out this issue.
    thanx

    Hi,
    After adding the key figure, use one of the following options to populate data.
    1. Constant: To populate constant data for new key figure.
    2. User Exit: To populate data from different source.
    For replacing the key figure, use the following option to populate data.
    Customer Exit: To populate data for the replaced key figure.
    There is a very nice Blog on this.
    /people/mallikarjuna.reddy7/blog/2007/02/06/remodeling-in-nw-bi-2004s
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/008f9fef-22e4-2a10-d994-a17c55ca06f0
    Hope this helps.
    -Vikram

  • Remodelling, substitution of a non-compounded master data with a compunded?

    Hi,
    i have to do a subtitution from a non-compounded master data to a compounded master data in a filled infocube. I have any problem because the code abap
    ASSIGN c_r_newfield->* TO <l_newfield>.
      ASSIGN i_r_old->* TO <l_s_old>.
    not have fill <l_newfield> because c_r_newfield is blank.
    Why this?
    the code in my user-exit is below:
    METHOD IF_RSCNV_EXIT~EXIT.
      FIELD-SYMBOLS: <l_s_old> TYPE ANY,
                     <l_fillfield> TYPE ANY,
                     <l_newfield> TYPE ANY.
      DATA:          l_chavl TYPE rschavl,
                     l_ZFIPLANT_chavl TYPE rschavl,
                     l_attr TYPE string.
    Assign the references to field symbols
      ASSIGN c_r_newfield->* TO <l_newfield>.
      ASSIGN i_r_old->* TO <l_s_old>.
    To use the individual fields of the old table
    structure (e.g. SID_ZFPLANT), assign these fields
    to field symbols using the field name.
      ASSIGN COMPONENT 'SID_ZFPLANT' OF STRUCTURE <l_s_old> TO <l_fillfield>.
    Implement the logic you want to use for determing
    the value to be filled into the new field.
    E.g. Here, I have the SID of ZFPLANT available in
    <l_fillfield>. I then do the following -
    1) Get the ZFPLANT value corresponding to that SID.
    2) Extract the month from this value
    3) Get the SID for this month value
    4) Assign this value to the changing parameter
       through a field symbol
    (Note: Steps 3 and 4 are done in one step in the
    code)
      CALL FUNCTION 'RRSI_SID_VAL_SINGLE_CONVERT'
        EXPORTING
          i_iobjnm               = 'ZFPLANT'
        I_S_COB_PRO            =
          i_sid                  = <l_fillfield>
       IMPORTING
         e_chavl                = l_chavl
        E_S_NODESID            =
       EXCEPTIONS
         no_value_for_sid       = 1
         x_message              = 2
         OTHERS                 = 3
      IF sy-subrc <> 0.
        l_attr = text-001.
        RAISE EXCEPTION TYPE cx_rscnv_exception
          EXPORTING
            attr1  = 'CL_RSCNV_USER_EXIT_SAMPLE'
            attr2  = 'EXIT-1'
            attr3  = l_attr
           ATTR4  = sy-subrc
      ENDIF.
      l_ZFIPLANT_chavl = l_chavl.
      CALL FUNCTION 'RRSI_VAL_SID_SINGLE_CONVERT'
        EXPORTING
          i_iobjnm                  = 'ZFIPLANT'
          i_chavl                   = l_ZFIPLANT_chavl
        I_S_COB_PRO               =
        I_CHECKFL                 = RS_C_FALSE
        I_WRITEFL                 = RRSI_C_WRITEFL-NO
        I_MASTERDATA_CREATE       = RS_C_TRUE
        I_RNSID                   =
        I_NEW_VALUES              = RS_C_FALSE
       IMPORTING
         e_sid                     = <l_newfield>
       EXCEPTIONS
         no_sid                    = 1
         chavl_not_allowed         = 2
         chavl_not_figure          = 3
         chavl_not_plausible       = 4
         x_message                 = 5
         interval_not_found        = 6
         foreign_lock              = 7
         inherited_error           = 8
         OTHERS                    = 9
      IF sy-subrc <> 0.
        l_attr = text-002.
        RAISE EXCEPTION TYPE cx_rscnv_exception
          EXPORTING
            attr1  = 'CL_RSCNV_USER_EXIT_SAMPLE'
            attr2  = 'EXIT-2'
            attr3  = l_attr
           ATTR4  = sy-subrc
      ENDIF.
    ENDMETHOD.

    Hi,
    i have to do a subtitution from a non-compounded master data to a compounded master data in a filled infocube. I have any problem because the code abap
    ASSIGN c_r_newfield->* TO <l_newfield>.
      ASSIGN i_r_old->* TO <l_s_old>.
    not have fill <l_newfield> because c_r_newfield is blank.
    Why this?
    the code in my user-exit is below:
    METHOD IF_RSCNV_EXIT~EXIT.
      FIELD-SYMBOLS: <l_s_old> TYPE ANY,
                     <l_fillfield> TYPE ANY,
                     <l_newfield> TYPE ANY.
      DATA:          l_chavl TYPE rschavl,
                     l_ZFIPLANT_chavl TYPE rschavl,
                     l_attr TYPE string.
    Assign the references to field symbols
      ASSIGN c_r_newfield->* TO <l_newfield>.
      ASSIGN i_r_old->* TO <l_s_old>.
    To use the individual fields of the old table
    structure (e.g. SID_ZFPLANT), assign these fields
    to field symbols using the field name.
      ASSIGN COMPONENT 'SID_ZFPLANT' OF STRUCTURE <l_s_old> TO <l_fillfield>.
    Implement the logic you want to use for determing
    the value to be filled into the new field.
    E.g. Here, I have the SID of ZFPLANT available in
    <l_fillfield>. I then do the following -
    1) Get the ZFPLANT value corresponding to that SID.
    2) Extract the month from this value
    3) Get the SID for this month value
    4) Assign this value to the changing parameter
       through a field symbol
    (Note: Steps 3 and 4 are done in one step in the
    code)
      CALL FUNCTION 'RRSI_SID_VAL_SINGLE_CONVERT'
        EXPORTING
          i_iobjnm               = 'ZFPLANT'
        I_S_COB_PRO            =
          i_sid                  = <l_fillfield>
       IMPORTING
         e_chavl                = l_chavl
        E_S_NODESID            =
       EXCEPTIONS
         no_value_for_sid       = 1
         x_message              = 2
         OTHERS                 = 3
      IF sy-subrc <> 0.
        l_attr = text-001.
        RAISE EXCEPTION TYPE cx_rscnv_exception
          EXPORTING
            attr1  = 'CL_RSCNV_USER_EXIT_SAMPLE'
            attr2  = 'EXIT-1'
            attr3  = l_attr
           ATTR4  = sy-subrc
      ENDIF.
      l_ZFIPLANT_chavl = l_chavl.
      CALL FUNCTION 'RRSI_VAL_SID_SINGLE_CONVERT'
        EXPORTING
          i_iobjnm                  = 'ZFIPLANT'
          i_chavl                   = l_ZFIPLANT_chavl
        I_S_COB_PRO               =
        I_CHECKFL                 = RS_C_FALSE
        I_WRITEFL                 = RRSI_C_WRITEFL-NO
        I_MASTERDATA_CREATE       = RS_C_TRUE
        I_RNSID                   =
        I_NEW_VALUES              = RS_C_FALSE
       IMPORTING
         e_sid                     = <l_newfield>
       EXCEPTIONS
         no_sid                    = 1
         chavl_not_allowed         = 2
         chavl_not_figure          = 3
         chavl_not_plausible       = 4
         x_message                 = 5
         interval_not_found        = 6
         foreign_lock              = 7
         inherited_error           = 8
         OTHERS                    = 9
      IF sy-subrc <> 0.
        l_attr = text-002.
        RAISE EXCEPTION TYPE cx_rscnv_exception
          EXPORTING
            attr1  = 'CL_RSCNV_USER_EXIT_SAMPLE'
            attr2  = 'EXIT-2'
            attr3  = l_attr
           ATTR4  = sy-subrc
      ENDIF.
    ENDMETHOD.

  • Need your help in Remodeling concept

    Hi Gurus need your help in time estimations
    I have a cube with data and now I need to add 10 new info objects to the cube which are including Date fields (BUDAT, BLDAT) these 10 fields will be populated to the cube from a Z table in ECC as we donu2019t have these fields in the cube we have to go for remodeling of the cube
    My client requires how much time it will take to complete this
    Now I want to know how much time it would take to do this (if any customer exits and user exits are required) and addition if new fields will have any effect on the current queries
    Please advice in this
    Thank you

    The time taken will depends on a lots of factor like server speed, available memory, background jobs etc. Apart from this, the time will also depends on how much the cube is filled i.e. the no. of records in the cube. Its very abstract to tell you the exact time taken for this. But, please make sure that you have the backup of the cube which you are going to re-model. T0 say, I think 3-4 hours should be ok for the remodelling.
    Thanks.
    Shambhu

  • Adding new infoobject to cube with data

    Hi experts
    Our cube contains data and is fully compressed (E-table), there is are no requests in F-table.
    We need to add 2 key figures and 2 characteristics.
    The characteristics get a new dimension table.
    We don't use the remodel technique. We add these new infoobjects.
    There is no need for a reload of historical data for these new objects.
    We only need data starting from the first load date after the changes occured.
    Are there any errors in this approach?
    Thanks

    Thomas,
    When you are adding a new dimension to your cube - you are adding a primary key to your E and F Fact tables - therefore when your transport goes it - it will reorganize your cube tables.
    For this - assuming that you are collecting the changes in the normal way and not changing any settings ....
    1. Check the UNDO table space in target system , the UNDO table space should have enought free space available that will be greater than the size of your E and F Fact table sizes - because , the way the transport moves is that a copy of the table is taken in the undo table space in the database and then the tables are adjusted - if your undo table space is insufficient - the transport will fail after some time
    2. If this is a big cube - then the transport will take time to go in - if BASIS imports transport requests in sequence - then this transport will hold the queue and might delay others whi have smaller transports.... make sure that your transport goes in last if there are others waiting for you to complete
    3. Also inform BASIS that the transport is going to take time - sometimes long running transports can get the BASIS team excited :-)
    These are not technical but some bases that can be covered in advance...
    Hope this helps.,...

  • Extracting data directly from a datasource to a flat file

    My requirements are to extract data from a SAP standard profit center accounting data extractor 0EC_PCA_1 directly to a flat file. Can this be done in a standard way or is custom ABAP development required ?
    I have tried the RSA3 based extractor, but as the result is displayed in packets, I would have to export the content of each extracted packet to separate flat file which is not very feasible.
    Br,
    HR

    Hi,
    1st option: create a dummy ods as well as a dummy infosource and dummy update rules. Assign the datasource to the dummy infosource. In the start routine of the transfer rules take each datapackage and download it to a file. Delete the datapackage. So you need almost no coding and you can also use a possible delta mechanism.
    2nd option: create your own abap and call the extraction module. Take care about the way it works like init mode, building packages... Possibly you need to find a way to remodel the delta capability.
    kind regards
    Siggi

  • How to add a new field in the cube and load data

    Hi,
    The requirement is
    We have  ZLOGISTICS cube , the data souce of this filed has REFDCONR-reference dcument number filed . We have to create a new field in cube load data and get this new filed into the report also.
    Please any one can help me with the step by step process of how to do?
    How to get the data into BW and into the report.

    Hi,
    So you need that this new field have data in old records?
    1.- If you are in BI 7.0 and the logic or data for that New field are in the same Dimension, you can use a Remodeling to fill it. I mean if you want if you want to load from a Master Data from other InfoObject in the same Dim.
    2.- If condition "1" is not yours.
    First add the new field, then create a Backup Cube (both cubes with the new field) and make a full update with all information in the original Cube. The new field willl be empty in both cubes.
    Create an UR from BackUp_Cube to Original_Cube with all direct mapping and create a logic in the Start Routine of the UR (modiying the data_package) you can look for the data in the DSO that you often use to load.
    To do that both cubes have to be Datasources ( right click on Cube-> aditional function-> and I think is "Extract Datasource")
    Hope it helps. Regards, Federico

  • Short Dump in BI 7.0,While Remodelling the Infocube

    Hi Experts
    I got the below short dump in BI 7.0 while remodelling infocube to add a new time char (0CALMONTH2)
    Please update me what is wrong
    Runtime Errors         GETWA_NOT_ASSIGNED
    Date and Time         
    Short text
    Field symbol has not yet been assigned.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "CL_RSCNV_ADD_CHAR=============CP" had to be
    terminated because it has
    come across a statement that unfortunately cannot be executed.
    Error analysis
    You attempted to access an unassigned field symbol
    (data segment 32776).
    This error may occur if
    - You address a typed field symbol before it has been set with
    ASSIGN
    - You address a field symbol that pointed to the line of an
    internal table that was deleted
    - You address a field symbol that was previously reset using
    UNASSIGN or that pointed to a local field that no
    longer exists
    - You address a global function interface, although the
    respective function module is not active - that is, is
    not in the list of active calls. The list of active calls
    can be taken from this short dump.
    How to correct the error
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "GETWA_NOT_ASSIGNED" " "
    "CL_RSCNV_ADD_CHAR=============CP" or "CL_RSCNV_ADD_CHAR=============CM002"
    "IF_RSCNV_OPERATION~CONVERT"
    If you cannot solve the problem yourself and want to send an error
    notification to SAP, include the following information:
    1. The description of the current problem (short dump)
    To save the description, choose "System->List->Save->Local File
    (Unconverted)".
    2. Corresponding system log
    Display the system log by calling transaction SM21.
    Restrict the time interval to 10 minutes before and five minutes
    after the short dump. Then choose "System->List->Save->Local File
    (Unconverted)".
    3. If the problem occurs in a problem of your own or a modified SAP
    program: The source code of the program
    In the editor, choose "Utilities->More
    Utilities->Upload/Download->Download".
    4. Details about the conditions under which the error occurred or which
    actions and input led to the error.
    Information on where terminated
    Termination occurred in the ABAP program "CL_RSCNV_ADD_CHAR=============CP" -
    in "IF_RSCNV_OPERATION~CONVERT".
    The main program was "RADGENREP ".
    In the source code you have the termination point in line 23
    of the (Include) program "CL_RSCNV_ADD_CHAR=============CM002".
    The program "CL_RSCNV_ADD_CHAR=============CP" was started as a background job.
    Job Name....... "ZC13_32/ZCM_INSERT"
    Job Initiator.. "GHANTAK"
    Job Number..... 10521300
    Source Code Extract
    Line
    SourceCde
    1
    METHOD if_rscnv_operation~convert.
    2
    *CALL METHOD SUPER->IF_RSCNV_OPERATION~CONVERT
    3
    EXPORTING
    4
       I_R_OLD =
    5
    CHANGING
    6
       C_R_NEW =
    7
    8
    FIELD-SYMBOLS: <l_s_oldtable> TYPE ANY.
    9
    FIELD-SYMBOLS: <l_s_newtable> TYPE ANY.
    10
    FIELD-SYMBOLS: <l_fillfield> TYPE ANY.
    11
    FIELD-SYMBOLS: <l_addfield> TYPE ANY.
    12
    DATA: l_r_fillfield TYPE REF TO data.
    13
    DATA: l_r_addfield TYPE REF TO data.
    14
    15
    TRY.
    16
    ASSIGN i_r_old->* TO <l_s_oldtable>.
    17
    ASSIGN c_r_new->* TO <l_s_newtable>.
    18
    19
    ASSIGN COMPONENT p_fillfieldnm OF STRUCTURE <l_s_oldtable> TO <l_fillfield>.
    20
    ASSIGN COMPONENT p_addfieldnm OF STRUCTURE <l_s_newtable> TO <l_addfield>.
    21
    22
    GET REFERENCE OF <l_fillfield> INTO l_r_fillfield.
    >>>>>
    GET REFERENCE OF <l_addfield> INTO l_r_addfield.
    24
    25
    IF NOT p_constval IS INITIAL.
    26
    fill constant
    27
    CALL METHOD cl_rscnv_operation=>fill_const
    28
    EXPORTING
    29
    i_newiobj    = p_add_char
    30
    i_constval   = p_constval
    31
    i_fieldtype  = o_fieldtype
    32
    CHANGING
    33
    c_r_newfield = l_r_addfield.
    34
    35
    36
    ELSEIF NOT p_attriobj IS INITIAL AND NOT p_ofiobjnm IS INITIAL.
    37
    fill using attribute of characteristic
    38
    ASSIGN i_r_old->* TO <l_s_oldtable>.
    39
    ASSIGN COMPONENT p_fillfieldnm OF STRUCTURE <l_s_oldtable> TO <l_fillfield>.
    40
    GET REFERENCE OF <l_fillfield> INTO l_r_fillfield.
    41
    CALL METHOD read_attr
    42
    EXPORTING

    Hi,
    i mean to say, just come out the transaction & try again..............
    or else u can check the short dump in ST22...........
    Regards,
    SD

  • Use of Remodeling tool in BI 7.0

    Hi,
    Can any one list the uses of the Remodeling tool in BI 7.0.
    Because the question is :
    when we can remove or delete or replace the required InfoObject  in an Infoprovider( in particular a cube) we take the backup of the data in another cube, do the required changes in the old cube and then create the Data transfer pipeline { Export DS, update rules/Transformations( including the required transformation for the new InfoObject ), etc..} form the backup cube. we will do the same with the Remodeling tool also(make changes by taking the backup), then why we need a separate tool to perform the same task.
    please list all uses.
    Best Regards,
    Sreeni.

    Hi,
    Regarding remodeling Steps
    Remodeling is one of the good feature in BI.
    This helps in remodeling your Infoprovider, even when its filled with data.
    where as in BW 3.5 you need to remove data before remodeling.
    /people/mallikarjuna.reddy7/blog/2007/02/06/remodeling-in-nw-bi-2004s
    http://help.sap.com/saphelp_nw70/helpdata/en/d0/46144236bcda2ce10000000a1550b0/frameset.htm
    /thread/782986 [original link is broken]
    info cube
    Remodeling Tool in BI 7.0
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/2007/06/28/remodelingToolinBI7.0
    Library-Remodeling InfoProviders
    http://help.sap.com/saphelp_nw04s/helpdata/en/58/85e5414f070640e10000000a1550b0/frameset.htm
    Remodeling concept in BI 7.0
    Hope this helps.
    Thanks,
    JituK

  • Replacement of FORECAST DELIVERY DATE with DATE OF FIRST RECEIPT

    Please help me in my scenario below and post your valuable comments-
    My Scenario is like -
    For example, In REPORT, For the item 10 of the order 4700035361 our FIRST RECEIPT DATE is in march (14/03/2011) and FORECAST DELIVERY DATE is in december (30/12/2011). This purchase order item was completely received.
    Requirement is like---
    Associated cube is ZCUIMP01.
    (1) The evolution will consist of replace the FORECAST DELIVERY DATE with FIRST RECEIPT DATE of the item.
    (2) The period (Fiscper and Fiscyear) will also be modified.
    (3) Hence the calculation of the YTD will take into account the order and its receipt date.
    (4) The adjustment of the history will be necessary for the year 2011.
    Can anyone suggest, from where i should start my analysis (Should it be Infocube level??).
    What will be the approach to fulfill all the above mentioned requirement (Should we think about Remodeling concept for creating new data model, if yes then how to do?).
    Please reply asap, it will be great help for me.
    My advance thanks to you.
    Thanks & Regards
    Rupali Singh

    Hi Rupali,
    As I understand there is a business change that you need to justify in our report. Unfortunately your explanation of the design has a considerable gap to visualize. In any case, if you need help on to how to approach such a change -
    1. Understand the business change, its purpose and its imapct on your current design and the report.
    2. Understanding the purpose is very important since you will then be able to find workarounds, redesign as per the change required.
    3. Start from the query and check if your replacement of characterisitics with new characteristics can be obtained using functions like Replacement path, attributes, customer exits, etc. Changing a query/creating a new report on the existing model is the most feasible option.
    4. If not, try exploring option to keep the design untouched, and creating a new InfoObject/DSO like structure to capture the date modifications, etc which then can be used on a MultiProvider.
    Hope the above helps!
    Regards,
    Kunal Gandhi

  • Addition of new field in existing cube which has data?

    I Have service provider field in ods and which is populating data on daily basis.
    Now I need to populate that field into cube and then reportingu2026u2026..
    For this do I need to delete the data from the cube and add that new field and need to load the last 6 month data? Or else with out doing deletion of data can I add a field in cube?
    Regards

    Remodeling is a new concept introduced in BI 2004s to manage changes to the structure effectively in an infoprovider, where the data is loaded and running. As of now we can make changes to the Infocube only. The same would be extended to the DSO and InfoObject in the future releases.
    Before you proceed to experience the remodeling process, letu2019s bear in mind few of the golden rules given by SAP.
    --> As a precaution, make a back-up of your data before you start remodeling.
    Before you start remodeling, make sure:
    --> You have stopped any process chains that run periodically and affect the corresponding InfoProvider.
    --> Do not restart these process chains until remodeling is finished. There is enough available table space on the database.
    --> After remodeling, check which BI objects that are connected to the InfoProvider (transformation rules, Multiproviders, queries and so on) have been deactivated. You have to reactivate these objects manually.
    You can go for remodelling. If you still have doubt, try the same in your Sandbox and repeat the process in Production as you are saying you have time of 1week.

  • Data load issue in BI7.0 Enviornment

    Hi,
    We went to BI7.0 technical upgrade from BW 3.x recently and we are upgarde the system BI 7.0. We have new requirement for that i need to create a copy cube from Base(A) cube and  load the data from base(A) cube to new (B)cube .
    I need to enhance the Base(A) cube with few key figures and need historical data that why i am not using Remodeling method.These key figures are attributes of masterdata
    For loading data from Base cube (A) to New Cube(B)
    Need to follow the below steps:
    1>Export data source
    2>create update rules
    3>create info pack
    or
    Do i need to create
    1>transformation
    2>DTP
    The Base (A) cube is loading from two ODS and i am going to write update routine between ODS and cube (A) to get populate new key figure in the cube using update routine,so that i will pick the data from the master data and these new key figures as attributes of master data.
    Please some one can advise me on it.

    Thnaks alot khaja for quick response.
    I will store key figures in cube A and it require historical data.
    These key figure are attribute of Material master.Will populate these key figures in cube from masterdata using update routine.If i go for Remodeling then i would not get historical data.
    If i get the key figure from master data then it would load historical data righ?
    I want to move the Cube A to Cube B and load the data from A to B cube
    Once the enhancement is done i will bring back data from Cube B to cube A.
    Please advise me :
    Once the data is loaded into cube B and delete the whole data in cube A
    Instead of bring back B data to cube A ,I would like schedule data from ODS to cube A
    Which is in the flow.
    Do i need to create Transformation and DTP or Update rules and Infopackage?
    Please advis me in this scenario

  • Problem about remodelling

    HI,
    Actually i have to add one time characteristics like Fiscal year in info-cubes. One due to data reloading problem , i used remodelling technique.
    In remodelling , i mapped time characteristics to fiscal year and schedule this. Then it was added to info-cube. Due to this, below update rules became in-activate. For activating update rules, we wirte code to fill time characteristics, so that in future ,there is no need of remodelling.
    After completing all thing, we found that my time characteristics is taking value of fiscal year sometime, and sometime it does not take.
    Below info-cube , there are lot of update rule/transformation ,in this data comes in delta and full mode both.
    SO please tell me , what is exact problem, even i could not understand this?
    Thanks
    Devesh Varshney

    Hi,
    >there are lot of update rule/transformation
    I think, you haven't maintain all transformation correctly.
    Or, you have activate the new transformation after the remodelling - after the first load. => check the timestamps.
    Sven

  • How to change availability date of a batch when doing GR for order in MIGO

    Hi all,
    We are not able to find any exit or BADI to change availability date of batch when doing goods receipt for a order.
    Exits and BADIs are available for other dates but not for availabiliy date.
    One Exit that is available for available date but is not triggered while doing GR for an order.
    Please let me know how to achieve this.
    Thanks and Regards,
    Taranam

    Hi,
    You can use the remodelling here with the option " Replace Characteristics" with Customer exit. It will allow you to write an exit and change the value. Find more here:
    http://www.scribd.com/doc/7882193/Remodeling-in-BI-70-Using-Customer-Exit
    Thanks...
    Shambhu

Maybe you are looking for

  • No .mov option in Export movie. Help, please!!

    Hi there, I am using flash professional, the newest version on Windows 8. I downloaded it a few days ago, and when I try to export the file as a movie there is no .mov option. I have QuickTime downloaded, I've tried saying it as SWF and converting it

  • Recording an Interview with iMovie 08

    Hi. I'm taking my little iMovie hobby a little more serious these days. I want to make something a little more than "ooh, look!", something more like "wow, Scott. That's pretty good!". SO I'm aiming for a coupla HV20s. I love the capture of them. I w

  • EIM/WIM multiple classifications problem - alarm node

    Hello, I need some piece of advice with alarm workflow. I would like to select multiple classifications with one alarm node, but boolean "OR" statement is not working properly. For example: I have category A and category B. I would like to specify Fi

  • Canvas Garbled

    My canvas is garbled just like in this image I found online: http://img403.imageshack.us/img403/4780/picture2hu2.png . This is both on my MBP and PowerMac... any thoughts? TIA

  • Unable to save form

    Several weeks ago I created a form with version 8.2.1. Everything worked fine. Went back into the form yesterday and could not save or view the form as a pdf. Log reported an error with version compatibility. As a test I tried to create a new form, s