Aggregates Transport

Hello forum.
I have created a aggregate for a Infocube in BI-7.0 environment.
I have a transport request for this aggregate,but when I import it to my integration It does not reflect in integration system.
Currently the transport request contains only the aggregate, Do I need to add the Infocube also to the request ?
Please suggest...
Thanks and Regards

HI...
You need to transport the Cube as well when u create an aggregate in it...
Import it with the overwrite mode..
Thanks
Hope this helps

Similar Messages

  • Can we transport Aggregates

    Hello all
    Can we transport Aggregates? if so what measures should v need to take?
    regards

    Hi,
    We can tranport them with data flow after option on the cube or direcly taking them in the Transport connector tool .
    The problems I faced :
    Initial filling of Aggregate
    With rgds,
    Anil Kumar Sharma .P
    Message was edited by:
            Anil Kumar Sharma

  • How to transport aggregate to QA

    Hi,
    I created a aggregate  on inventory cube. Now i want to transport this aggregate to QA. In tranport coonection,
    along with aggregate , infocube, anfo area,and info objects also get trasportd...which already tranported to QA and finally it is not tranported to QA.
    Can any body help me out.
    karunakar reddy

    Hello Reddy,
    There is a "Transport" icon available in the Infocube->Right Click->Maintain Aggregate screen. Click on the icon and then try. It should help.
    regards,
    TR PRADEEP

  • How to transport aggregates

    Hi All,
    Can we transport aggregates ??
    With activation and fill or with out activation.
    Thanks,
    Giri

    Hi,
    Can we transport aggregates ?? : Yes we can transport through Transport  conn  in BW  Work bench.
    With activation and fill or with out activation : With activation and fill.
    Before moving aggregates first need to move relevant Info cube.
    Thanks.

  • Hi,how can i transport objects from one server to other like (Dev To Qty)

    Hi Sir/madam,
       Can u explain how can i transport objects from one server to other like (Development To Quality To Production).
    Regards,
    Vishali.

    Hi Vishali,
    Step 1: Collect all Transports(with Packages) in Transports Tab(RSA1)- CTO
    Step 2: Release the subrequests first and then the main request by pressing Truck button
    Step 3: STMS or Customized transactions
    Object Collection In Transports:
    The respective Transports should have the following objects:
    1. Base Objects -
    a. Info Area
    b. Info object catalogs
    c. Info Objects
    2. Info Providers u2013
    a. Info Cubes
    b. Multi Providers
    c. Info Sets
    d. Data Store Objects
    e. Info Cube Aggregates
    3. Transfer Rules u2013
    a. Application Components
    b. Communication Structure
    c. Data Source replica
    d. Info Packages
    e. Transfer Rules
    f. Transformations
    g. Info Source Transaction data
    h. Transfer Structure
    i. Data sources (Active version)
    j. Routines & BW Formulas used in the Transfer routines
    k. Extract Structures
    l. (Note) If the transfer structures and related objects are being transferred without preceding
    Base Objects transport (e.g. while fixing an error) it is safer to transport the related Info
    Objects as well.
    4. Update Rules u2013
    a. Update rules
    b. Routines and formulas used in Update rules
    c. DTPs
    5. Process Chains u2013
    a. Process Chains
    b. Process Chain Starter
    c. Process Variants
    d. Event u2013 Administration Chains
    6. Report Objects u2013
    a. Reports
    b. Report Objects
    c. Web Templates
    Regards,
    Suman

  • How to select data from an aggregate in a customer exit for a query?

    Hi,
    I have written a virtual key figure customer exit for a query. Earlier the selection was from the cube, where there was severe performance issue. So I have created an aggregate, activated and have loaded the data.
    Now when I select that data I find that the Key table is different in development and production. How do I resolve this.
    My code is attached below. The table in developemnt is KEY_100027 and in production is KEY_100004. This code is activated and running in BW development server.
    SELECT
        F~KEY_1000041 AS K____035
         F~KEY_1000271 AS K____035
         F~QUANT_B AS K____051
         F~VALUE_LC AS K____052
    INTO (xdoc_date, xval1, xqty1)
    UP TO 1 ROWS
    FROM
    FROM
    */BIC/E100004 AS F JOIN
    /BIC/E100027 AS F JOIN
    /BIC/DZMM_CGRNU AS DU
    ON FKEY_ZMM_CGRNU = DUDIMID
    JOIN /BI0/SUNIT AS S1
    ON  DUSID_0BASE_UOM = S1SID
    JOIN /BI0/SCURRENCY AS S2
    ON DUSID_0LOC_CURRCY = S2SID
    JOIN /BI0/SMATERIAL AS S3
    *ON FKEY_1000042 = S3SID
    ON FKEY_1000272 = S3SID
    JOIN /BI0/SMOVETYPE AS S4
    *ON FKEY_1000043 = S4SID
    ON FKEY_1000273 = S4SID
    JOIN /BI0/SPLANT AS S5
    *ON FKEY_1000044 = S5SID
    ON FKEY_1000274 = S5SID
    JOIN /BIC/D100004P AS DP
    *ON FKEY_100004P = DPDIMID
    ON FKEY_100027P = DPDIMID
    WHERE
    WHERE
    ( ( ( ( F~KEY_1000041 BETWEEN 20051230 AND 20060630  ) ) AND  ( (
    ( ( ( ( F~KEY_1000271 BETWEEN 20051230 AND 20060630  ) ) AND  ( (
             S3~MATERIAL = <l_0material> ) ) AND  ( (
                s2~movetype BETWEEN '101' AND '102' OR
             s4~movetype BETWEEN '921' AND '922' OR
             s4~movetype BETWEEN '105' AND '106' OR
             s4~movetype BETWEEN '701' AND '701' OR
             s4~movetype BETWEEN '632' AND '632' ) ) AND  ( (
             S5~PLANT = <l_0plant> ) ) AND  ( (
             DP~SID_0RECORDTP = 0  ) ) ) )
    GROUP BY
        ORDER BY F~KEY_1000271 DESCENDING.
          IF sy-subrc NE 0.
            EXIT.
          ENDIF.
        ENDSELECT.
    How do I transport the code and make it work?
    Whats the reason that the two key fields are different.
    I had transported the aggregate from development to production. Activated it and filled the data.
    What is the way out? Please help.
    Regards,
    Annie.

    Hi Sonu,
    The main task is to move the contents of the one internal table to another with some condition.
    First sort and delete the duplicate entries from the First Internal table like below : 
    sort it_tab by material ascending date_modified descending.
    delete adjacent duplicates from it_tab.
    Then move that Internal table contents to another internal table.
    Define another internal table with the same structure as you have first internal table and then
    Second Step :
    it_itab1 = it_itab.
    If you are using seperate Header line and Body then you can do like below :
           it_itab1[] = it_itab[].
    This will fix the issue.
    Please let me know if you need any further explonation.
    Regards,
    Kittu
    Edited by: Kittu on Apr 24, 2009 12:21 PM

  • Error "Object 'DM' (APCO) of type 'Application' is not available in version 'A'" while transporting process chain to production system.

    Hi Gurus,
    Whenever I try to transport a process chain ZFI_0FIGL_C10 from dev. to qua. & prod. the error “Object 'DM' (APCO) of type 'Application' is not available in version 'A'” is displayed in the end of creating transport package.
    The process chain was created to load data to 0figl_c10 and it works all right on all systems (dev. qua. prod.).
    The process chain contains processes for:
    - starting the process chain
    - executing infopackage (for loading data to 0figl_o10),
    - ACR (activate data in 0figl_o10)
    - delete index 0figl_c10
    - DTP loading data from 0figl_o14 to 0figl_c10    
    - executing infopackage 80FIGL_O10
    - creating index in 0figl_c10
    - building DB statistics
    - rolling up aggregates in 0figl_c10
    - deleting of requests from the changelog 0figl_o10
    - deleting of requests from PSA (0fi_gl_10)
    How to find what cause that error.
    Regards,
    Leszek

    Hi,
    A SAP consultant told me to ignore that error. 
    Indeed, after creating transport with some new process chains (again I was informed about that error "APCO ...") and transporting it to production everything works all right.
    The problem is described in sap note: 883745.
    Regards, Leszek  

  • Problem in transporting cubes

    Hi All,
    We have transported few cubes along with transformations,DTPs.
    All went fine to quality except one property.
    In the infoprovider properties(Environment->infoprovider properties->Rollup)Do not coolapse aggregates is selected in Development but when it is transported to quality it is unchecked.This happened before also.Please let us know why it is happening?(All others including formulae,routines are being transportd correctly).Should we change any settings to avoid this problem?
    Thanks,
    Manohar

    Hi,
    These are the new cubes.So overwriting issue will come into picture,I guess.
    Any how import of requests into BQA is automated.So I don't have exact information.
    Thanks,
    Manohar

  • Aggregates on Technical Content

    Hi Guru's,
    I have installed the Technical Content Cube ( 0BWTC_C05) ,which is for ware house performance monitoring, Now I have to create a process chain to load data into this Infocube. As we are not using the Multiprovider,we cant have the standard queries on this cube. I have created a Query to get the data necessary . I want to create an aggregate for this infocube . How to manage this in the process chain ,and My doubt is if we create the aggr in Dev system, will this be carried to QA system and prd ?? I will be really Glad if any of you can send me the PC Chain used to load this Infocube, as I am not sure what process to include .
    Thanks,
    Krish

    Hi Krish,
    You can transport the aggregates created in Dev to QA and Prod boxes. Also most of the projects do allow the creation of aggregates in Prod/QA also so you can create the aggregates there.
    The load steps for 0BWTC_C05 would be like this:
    1. Load all the attribute/text associated with the cube 0BWTC_C05.
    2. Aplly Hier/Attr Change.
    3. Load the data for 0BWTC_C05.
    Bye
    Dinesh

  • Query performance and Transport

    Guys, (Those of you that already work in the field maybe able to better answer this question.) 
    Let's say if an end-user comes and complaints about a certain query performance.  The developer ends up creating aggregates on the cube.  Would he be doing all this process on dev box then transport to QA and on to Production environment or directly on production environment and won't need to transport anything?  Any kind of documentation will be helpful for this.
    Thanks,
    RG

    Aggregates are created directly in production.
    We create aggregate based on query statistics...which is based on data read by query and various times.
    Since this is based of data in prod we develop directly in prod...i mean dev wont have any data so you dont have any basis to create aggregate. even if you use statistics data from prod to create aggregate in dev...you cannot again check performance improvement coz of aggregate in dev as it wont have data as prod has

  • Transport sequence from dev to production

    Dear Folks,
    I am done with development & i would like to transport all the developed objects to production.
    Could anyone provide the sequence along with necessary steps.
    How to assign new requests to all the objects developed including queries.
    Basically these are the list of objects:
    Info objects,info area, info object catalogs,dtps, transformations, multi provider, info package, replicated data sources,queries etc.
    I would like to assign once again new requests to all the objects developed and transport them.
    Awaiting kind response.
    Thanks,
    Kitu

    Hi,
    Please follow the sequence:----
    The respective Transports should have the following objects:
    1. Base Objects -
    a. Info Area
    b. Info object catalogs
    c. Info Objects
    2. Info Providers u2013
    a. Info Cubes
    b. Multi Providers
    c. Info Sets
    d. Data Store Objects
    e. Info Cube Aggregates
    3. Transfer Rules u2013
    a. Application Components
    b. Communication Structure
    c. Data Source replica
    d. Info Packages
    e. Transfer Rules
    f. Transformations
    g. Info Source Transaction data
    h. Transfer Structure
    i. Data sources (Active version)
    j. Routines & BW Formulas used in the Transfer routines
    k. Extract Structures
    l. (Note) If the transfer structures and related objects are being transferred without preceding
    Base Objects transport (e.g. while fixing an error) it is safer to transport the related Info
    Objects as well.
    4. Update Rules u2013
    a. Update rules
    b. Routines and formulas used in Update rules
    c. DTPs
    5. Process Chains u2013
    a. Process Chains
    b. Process Chain Starter
    c. Process Variants
    d. Event u2013 Administration Chains
    6. Report Objects u2013
    a. Reports
    b. Report Objects
    c. Web Templates
    Hope this helps......
    Assign if helps...
    Regards,
    SUman

  • Re: Info set and query transport under same request number

    Hi,
      I would like to know the details about info set and query transport from development to quality using SAP Query:  Trnasport tool.my quesion is,
    Can i create all info sets and related queries under same request number or will it be created in diffrent request numbers?Please respond any body to my question.
    Regards,
    Suresh Kumar.

    No it is possible as per SAP.
    Please read follwoing help-
    http://help.sap.com/saphelp_nw70/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    It is talking abou the Special Features of InfoCubes in InfoSets.
    For queries based on an InfoSet with an InfoCube, the system decides at runtime whether aggregates can be used for the InfoCube. This is the case if all the required InfoObjects of the InfoCube exist in an aggregate. The following InfoObjects are required:
    The key figures of the InfoCube selected in the query
    The characteristics of the InfoCube selected in the query
    The characteristics required for a join with other InfoProviders in the InfoSet.
    Furthermore, as a prerequisite for using aggregates, all the data required by an InfoCube must be readable using logical access. For an InfoCube within an InfoSet with InfoCubes, it is no longer possible to read part of the data from one aggregate and part of the data from another aggregate or the InfoCube itself.

  • Error in Transport... Info provider does not exist

    Hello,
    I'm getting an error 12 and my transport is getting cancelled due to the following message:
    Infocube/Infoprovider 100481 does not exist
    Error R7 791 when handling objects with type R3TR CUBE.
    I tried looking for a solution. I came across this OSS note:1019764
    But the solution listed is for 7.0 and i'm on 3.5.
    has anyone encountered such an error and if so, what did you do to rectify this problem?
    thanks
    Sam

    Dear Sam,
    Your Error suggests that it failed in transporting the Infocube Aggregates, first make sure all your changes are in place , and if you have added some Infoobejcts in the infocube , then before creating the aggregates you have to reload the data as you might have done in the development while activating the aggregates, so if at all you have added / changed the infocube design dont forget to delete data and refill before you want your aggregates to fill in ...if atall you have not done anything of this sort, then the suggestion would be to transport the changes in a serialized way by breaking the changes..
    Hope it Helps..
    Thanks,
    Krish

  • Need info about transportation

    Hi frnds,
    Need information how we can transport the DW object to production.
    Development & testing is fine with designed flow.
    now we need to build production . is there any method to build Production from development.
    Thanks
    Ravi

    hi,
    There are two ways. One transport all the developed objects from dev system to production. This is the generally the practice followed to get the objects in production.Just for some additional info the respective Transports should have the following objects:
    1. Base Objects -
    a. Info Area
    b. Info Objects
    c.Info object catalogue
    2. Info Providers u2013
    a. Info Cubes
    b. Multi Providers
    c. Info Sets
    d. Data Store Objects
    e. Info Cube Aggregates
    3. Transfer Rules u2013
    a. Application Components
    b. Communication Structure
    c. Data Source replica
    d. Info Packages
    e. Transfer Rules
    f. Info Source Transaction data
    g. Transfer Structure
    h. Data sources (Active version)
    i. Routines & BW Formulas used in the Transfer routines
    j. Extract Structures
    k. (Note) If the transfer structures and related objects are being transferred without preceding Base Objects transport (e.g. while fixing an error) it is safer to transport the related Info Objects as well.
    4. Update Rules u2013
    a. Update rules
    b. Routines and formulas used in Update rules
    5. Process Chains u2013
    a. Process Chains
    b. Process Chain Starter
    c. Process Variants
    d. Event u2013 Administration Chains
    6. Report Objects u2013
    a. Reports
    b. Report Objects
    c. Web Templates
    The second way is to build a copy of the dev system and treat it as production. In this method you will not be required to send transports.
    Hope this helps.
    thanks,
    rahul

  • When transporting multiproviders and cubes transport failed.

    HI Experts,
    When transporting cubes and multiproviders in a request the transport failed with return code 8.
    The described below as:
    Start of the after-import method RS_CUBE_AFTER_IMPORT for obje
    Error/warning in dict. activator, detailed log    > Detail   
    /BIC/L101078 (specify a primary key)                         
    Table /BIC/L101078 could not be activated                    
    Return code..............: 8                                 
    DDIC Object TABL /BIC/L101078 has not been activated         
    Error when activating InfoCube 101078                        
    Error/warning in dict. activator, detailed log    > Detail   
    /BIC/L101077 (specify a primary key)                         
    Table /BIC/L101077 could not be activated                    
    Return code..............: 8                                 
    DDIC Object TABL /BIC/L101077 has not been activated         
    Error when activating InfoCube 101077                        
    Error/warning in dict. activator, detailed log    > Detail   
    /BIC/L101078 (specify a primary key)                         
    Table /BIC/L101078 could not be activated                    
    Return code..............: 8                                 
    DDIC Object TABL /BIC/L101078 has not been activated         
    Error when activating InfoCube 101078                        
    Error/warning in dict. activator, detailed log    > Detail   
    /BIC/L101077 (specify a primary key)                         
    Table /BIC/L101077 could not be activated                    
    Return code..............: 8                                 
    DDIC Object TABL /BIC/L101077 has not been activated         
    Error when activating InfoCube 101077                        
    Error/warning in dict. activator, detailed log    > Detail   
    /BIC/L101078 (specify a primary key)                         
    Table /BIC/L101078 could not be activated                    
    Please let us know if anyone has come across similar kind of issue.
    Regards,
    Monalisa Mohanty

    Issue seems to be with the aggregates maintained in the cube.
    Is your aggregates were properly maintained in your Dev system when you have collected it in your transport?
    Check the same and also use overwrite option when you are trying to import the transport in the target systems.
    If the aggregates are properly maintained then check the import once again and see if that works fine with the overwrite mode. If not then you need to collect your objects again in a new transport.
    Hope this helps.
    Murali

Maybe you are looking for

  • Windows 8 on Macbook Air went blank screen at login page

    Installed Windows 8 on my MBA. It was working perfectly fine until today, whereby the login page went blank/blank screen on me and it seems as though it went to sleeping mode. Mac OS working fine and managed to get into safe mode on windows. Any help

  • Item description not filling in Sales and Purchase module screen

    Hi i am here with a problem, while selecting the item code in the Grid of Purchase and Sales module related screens like Sales order, Purchase order etc, the item description is not getting field, though i tried to select the item from the item Descr

  • An Internal error occured

    when i'm trying to attach a pdf to mail from the acrobat reader i get the message above. i'm using acrobat reader 9.3.4 and outlook 2007. this is a terminal server

  • CRS installation

    My Cluster Ready Services 10.1 (CRS) installation ran into some problem. Following are the pre-installation and installation steps which i followed. 1. The system setup involved 2 identical nodes with Windows 2000 Advanced Server SP4 OS. 2. 2 static

  • What are management issues when Principal and DR mirroring environments use different drive letters. 2008R2 Enterprise Edition.

    I have to build a DR environment. The drive letters on principal are different than I HAVE to use on new DR server. Is 2008R2 mirroring able to handle that difference in drive letters. And what are the complexities for managing this setup and failing