Additional objects in transport data/infosource

Hi,
I added some extra InfoObjects in my export data/infosource because i want them to be in the comm structure for my data mart. In this way all the objects are available in my datapackage a can i use it in my startroutine.
Normally when performing an export datasource the extra objects are overwritten with the (standard) infoprovider objects.
I'm lookin' for a note which sets the parameters to keep the extra InfoObjects in my export datasource when doing an export datasource.

Brian,
There is even a better solution. You can append the structure of your communication structure with your extra fields. Even if you change your sending info-cube the appended fields will be available in your start-routine. On our web-site I have an example. The hyperlink is:
http://www.orbis-europe.com/downloads/How_to_com.doc
Regards,
Peter Geurts
Message was edited by: Peter Geurts

Similar Messages

  • Problem while transporting Data Source

    I get error while transport datasource from DEV to PROD:
    DataSource <DS> does not exist in source system <PRD_SYSTEM> of version A
    Field <XXXX> will not be delivered from DataSource <DS> in source system <PRD_SYSTEM>
    What does it mean? Do I need to activate <DS> datasource in source system PRD_SYSTEM?

    Hi
    1. Transport the Datasource from D to P system in R/3.
    2. Replicate the corresponding R/3 Sorce system in BW Production system.
    3. Right click on the datasource overview and check whether ur data source is available or not.
    4. If available then transport all the required info objects first from BW Dev to Prod System.
    5. Then transport your Infosource and other objects.
    This way will be fine.
    This error normally will occur when the data source is not replicated and the required info objects are not transported to the Prod system from Dev system.
    Regards
    M.A
    Edited by: M.A on Jun 5, 2008 2:46 PM

  • Error while transporting Data sources from DEV to Qual

    System :  SCM 5.0 (SP 8),  BI 7.0  (SP 12)
    1) We are trying to transport Data source objects from Development server to Quality server.
    2) Data sources of Type R/3 and Web Service.
    3) We are able to transport the objects from Dev.
    4) Once we import the objects to Quality server, the objects are becoming into INACTIVE stage.
    Please help... Thanx in advance..
    Regards
    Manoj

    HI tanu,
    could you let me know how you have solved this issue.
    which object not active.
    i am having the same issue now.
    kris

  • Error while transporting data from DevBI to QualityBI

    Hi all,
    After transporting SD cubes,along with some warnings I received the foollowing error in BI quality system..
    Master Data Table /BI0/PMATERIAL contains data: Characteristic 0MATERIAL cannot be activated                                        |
      SID Table /BI0/SMATERIAL contains data: Characteristic 0MATERIAL cannot be activated                                                |
      Text Table /BI0/TMATERIAL contains data: Characteristic 0MATERIAL cannot be activated     
    I remember that sometimes transport error occurs if there is data inside master data object.Remove the data and transport the infoobject again.Is that right?
    Please help me out how to resolve the error.
    Thanks.

    Thanks for the reply.
    I dont have an intention  to delete the data from  infoobject.
    Somewhere I read that transport error results in some cases if there is data inside the infoobject.I am not sure if its correct or not.
    Master Data Table /BI0/PMATERIAL contains data: Characteristic 0MATERIAL cannot be activated                                        |
    SID Table /BI0/SMATERIAL contains data: Characteristic 0MATERIAL cannot be activated
         | Text Table /BI0/TMATERIAL contains data: Characteristic 0MATERIAL cannot be activated                                              
    Inorder to solve the error,what should i do?
    Please reply back.

  • Moving objects between transport

    Hi Experts,
    Initially I recorded my info objects, ods, info source, data source, info package etc in one transport. Since the order of my  transport is changed I want to delete the info object from that transport request and lock it in a newly created transport request. I am able to delete the object from the previous transport request. Can anyone explain me how can I record those objects in the newly created transport request?
    Appreciate your help. It's very urgent
    Thanks,
    RK

    Hi,
    To capture (Record) any of the object in transport request, follow the steps...
    1. Go to Transport Connections (RSA1)
    2. In "SAP Transport" tab, Click on "Object Types".
    3. In middle pen, you will get all the type of BW object.
    4. Select your desored objects and by Drag-Drop put them in right pen.
    5. Select the dragged objects and assign them to a particular package by clicking on "Package" tab.
    6. Then it will ask for a transport request, either create it or ous your own request.
    This way you can capture any object in transport request.
    Regards,
    Yogesh.

  • Collecting objects in transport request

    HI Experts,
                    My development is completed and now i have to collect the objects in transport request. my development is like
    1) infoobjects(new infoobjects and some are available in BIP already and some infoobjects have reference infoobjects, dependent object is in production)
    2)Infopackeage for Datasource
    3)DSO
    4) Infocube
    5)multiprovider
    6)queries and views
    7)web templates
    This is the first time I am collecting this many objects. So please give  sugessions how to collect these objects in a single transport request.
    Thanks and Regards,
    RAJ

    It is advisable to collect the objects in separate transport requests...the transport request should contain dependent objects
    1) collect all the InfoObjects
    2) collect all the cubes/DSO   (they need Infoobjects.. so they are dependent on 1)
    3) collect datasources/Infosources  (they need Infoobjects.. so they are dependent on 1)
    4) collect transformation  (they need 2 and 3)
    5) collect DTPs and InfoPackages   (they need 3, 4)
    6) collect the reports
    7) collect the web templates
    make sure these are transported in sequence... each on dependent on previous

  • Caching objects in the data cache as a result of an extent.

    Patrick -
    I wanted to post this since it's related to a question I posted about extents and the data cache on
    11/8.
    I discovered that the com.solarmetric.kodo.DefaultFetchBatchSize setting affects how many objects
    get put into the data cache as a result of running an extent (in 2.3.2). If I have:
    com.solarmetric.kodo.DefaultFetchBatchSize=20
    then as soon as I execute the second line below:
    Iterator anIterator = results.iterator();
    Object anObject = anIterator.next();
    I see 20 objects in my data cache. In a prior reply you indicated that you were going to check this
    behavior in 2.4 so I wanted to send you this additional information. This behavior isn't a problem
    for me.
    Les

    Les,
    This is expected behavior -- the DefaultBatchFetchSize instructs Kodo to
    retrieve objects from the scrollable ResultSet in groups of 20. So,
    getting the first item from the iterator will cause a page of 20 objects
    to be pulled from the result set.
    -Patrick
    Les Selecky wrote:
    Patrick -
    I wanted to post this since it's related to a question I posted about
    extents and the data cache on
    11/8.
    I discovered that the com.solarmetric.kodo.DefaultFetchBatchSize
    setting affects how many objects
    get put into the data cache as a result of running an extent (in
    2.3.2). If I have:
    com.solarmetric.kodo.DefaultFetchBatchSize=20
    then as soon as I execute the second line below:
    Iterator anIterator = results.iterator();
    Object anObject = anIterator.next();
    I see 20 objects in my data cache. In a prior reply you indicated that
    you were going to check this
    behavior in 2.4 so I wanted to send you this additional information.
    This behavior isn't a problem
    for me.
    Les
    Patrick Linskey [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • No object can select when collecting objects for transport

    Hi.Experts:
        When I use RSA1 and want to collect objects for transport,I found that no objects can be found for some object type,such as ISTD/TRFN etc, any body who know this situation?
    Best Regards
    Martin Xie

    Hi Martin,
    best way to collect objects into transport request is throught RSA1 -> Transport connection.
    in Transport connection, you have different options to collect objects into transport request.
    In data flow before...
    here you can see objects that are already have transport request, package...
    Regards
    Daya Sagar

  • How Basis guys transport data ?

    HI SD GURUS,
    Can u tell me How Basis guys transport data from development to Quality to Production Server?
    Thanks
    Rajarshi

    Transport Request is generated in following scenarios:
    1. Customizing Request - When doing or changing some customization.
    2. WorkBench Request - When configuration is cross-client. Eg Generating new Table, making changes in access sequence, Abap development, etc.
    Transport request is not generated for Master Data. For eg: Customer Master, Material Master, price master, etc.
    Benefit of Transport Request:
    SAP Landscape normally has 3- Tier system:
    Development Server - Where customization takes place. Transport request is generated at this level & then first transported to Quality server for testing whether it meets the requirement or not. Once the requirement is met in Quality server then Request is transported from Development Server to Production Server (Actual / Live System)
    Quality Server - Mainly useful for testing.
    Production Server Actual / Live server, where the real transactions are created & posted.
    Procedure to Release & Transport Request:
    1. In development server, go to T.Code: SE10 & select the check box Modifiable & enter
    2. In the next screen, you will see list of transport request created.
    Note: Transport request consist of main request along with sub request. These sub request hold the object to be transported.
    3. Expand the main request & you will be able to view the sub requests attached to main request.
    4. First release the sub requests.
    Note: To release the request, select the request ni & click on release request individually (Do not select release all request)
    5. Next release main request.
    6. Once the request is released sucessfully, imform the basis person to import the request to QA server.
    or
    If the authority is with you, through T.Code: STMS, select development server --> select request no & release to QA server. Here when it pops up client no, user id & password, maintain it of QA server & release the request to QA server.
    Regards,
    Rajesh Banka
    Reward points if helpful

  • Info-object Maintenance -- Master Data/Texts Tab options

    Hello Bi Gurus,
    In BI 7.o:
    Path:
    Info-object Maintenance -->Master Data/Texts Tab -->Master Data infoSource/Data Taget/Infoprovider/Master Data Read Access.
    Scenario 1:
    1. Master Data Access - Own Implementation
       Name of Master Data Access -
    CL_RSMD_RS_SPEC     class for accessing generic Bw special info objects
    CL_RSR_XLS_TABF4     Table Master Data Read Class
    CL_RSROA_LOCAL_MASTERDATA     Master Data for Virtual Characteristics
    CL_RSMD_RS_BW_SPEC     Base class for accessing Bw special info objects
    CL_RSMD_RS_SPEC_TXT     Class for Accessing Generic BW-Specific InfoObjects
    Under what scenairo we go for this option?
    Any body used this option?
    Scenario 2:
    1. Master Data Access - Direct Access
       Name of Master Data Access - CL_RSR_REMOTE_MASTERDATA
    Under what scenairo we go for this option?
    Any body used this option?

    Hi,
    With Master Data:
    If you set this indicator, the characteristic may have attributes. In this case the system generates a P table for this characteristic. This table contains the key of the characteristic and any attributes that might exist. It is used as a check table for the SID table. When you load transaction data, there is check whether there is a characteristic value in the P table if the referential integrity is used.
    With Maintain Master Data you can go from the main menu to the maintenance dialog for processing attributes.
    The master data table can have a time-dependent and a time-independent part.
    In attribute maintenance, determine whether an attribute is time-dependent or time independent.
    With Texts:
    Here, you determine whether the characteristic has texts.
    If you want to use texts with a characteristic, you have to select at least one text. The short text (20 characters) option is set by default but you can also choose medium-length texts (40 characters) or long texts (60 characters).
    Helpfull link:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/71/f470375fbf307ee10000009b38f8cf/frameset.htm
    Regards,
    Suman

  • Converting Info-Objects as a Data Targets.

    Hi All,
    I Converted some info objects as a Data targtes in my Dev box, I need to affect those changes in my QA box and Production box, So that i need to transport those changes, I saved the changes in one Trasport req in Dev,
    So if i  trasport the same req to QA box, is the only changes will affect or the complete info object will affect...
    note: i have master data stored in all my objects in all environments....
    I will assign points.

    Hi Bhanu,
    Thanks for your earlier reply,
    I saved my changes in a single TP req, in this req it shows all my info objects,
    Iam thinking when i transport the req it should affect the info-object which it has been used in Cubes and ODSs..
    So can you tell me in details plzz

  • When I pre ordered my iphone 6 i was told I was going to get an additional 1 gig of data per month for a year.  It even shows it on the receipt i received with the phone.  When will I see that reflected on my account.  I have had my new phone for a week a

    When I pre ordered my iphone 6 i was told I was going to get an additional 1 gig of data per month for a year.  It even shows it on the receipt i received with the phone.  When will I see that reflected on my account.  I have had my new phone for a week and used tons more data than usual and am hoping that will save me this month.

    concretedonkey, I'm glad you were able to take advantage of this offer when you ordered your new iPhone 6. I can certainly review your account to ensure this was added for you. Please reply to the direct message I have sent you.
    AndreaS_VZW
    Follow us on Twitter @VZWSupport

  • How can I transport data from one client to another client?

    How can I transport data from one client to another client? 
    Regards,
    Subho

    hmmm, CTS = cutomizing transport?
    If you have a customizing table, there are still two possibilities.
    1. customize in DEV system and transport
    2. customize right there where you need it.
    this depends on how the maintainance view is built. If it is a simple customizing table and you get not asked for a TR when customizing a new record or changing an existing one, you hit possibility 2.

  • How to add Objects to transport request through FM/BAPI?

    Hi All,
    I am creating a workbench request through program. I am able to create it by using BAPI  but i am unable to add objects to it through program.
    Can anybody tell me the funcion module/bapi to add object to transport request?
    i have the list of objects that are suppose to be added.
    No BDC please.
    Thanks ,
    Swarup

    Hi Swarup,
    Check FM TRINT_MODIFY_COMM. Also look at program TH_TKANL for the usage of FM.
    Thanks
    Lakshman

  • Issue transporting data sources in BI 7.0

    Hello guyz
    This question is regarding transporting data sources for BI 7.0.
    1. First we transport master data sources from ECC Dev to ECC QA.
    2. In BI 3.x version, we would need to first replicate these data sources form ECC QA to BI QA.
    3. Then we would release our BI transports, which had the transfer and update rules.
    4. Do we need to do the same thing in BI 7.0?
    5. My understanding is, we do step 1. But then we skip step 2 and just move the data source along with the transformations form BI Dev to BI QA.
    6. Please not that we are doing a new implementation, so we are also migrating each and every datasource to its 7.0 version.
    7. I just need the step by step method of transporting, (if needed replication and migrations steps) from DEV to QA in the new BI 7.0 world.
    Thanks.

    Hi.
    First you need to transport master data and then transactional data sources.
    After transporting go to the target system and than replicate it.
    hope it will help you ..
    Thanks,
    GK

Maybe you are looking for

  • Time Machine and Disk Permissions + Compatibility with Snow Leopard

    I have received warning from Disk Utility that I should repair permissions as several files show incorrect permissions and, more than that, my 750GB shows "769GB available". My questions are: 1. If I use Command+R and rebuild the disk from a Time Mac

  • Clearing customer downpayments with invoice and aging

    Hi Gurus, What is the correct process of clearing downpayment with customer invoice so that system will show correct aging for the remaining amount of invoice? Should we use partial or residue... Thanks

  • Play multiple MovieClips videos in sequence

    Hi, I've multiple videos stored as MovieClip objects and would like to merge them into a single MovieClip video object in order to play all of them in sequence (so that a user thinks it's a single longer video). Is it possible? Thanks a lot!

  • Nokia n8 loses selected theme after been turned of...

    hi, Ive got a Nokia n8 pr1.2 and if i choose a theme which is not the default one it will revert back to the standard one everytime i turn the phone off. All of the themes (except the default one) has a tea cup icon next to it. How can i fix this or

  • Idoc to file with file name as ABCD timestamp and count

    Hi, Greetings! I have an requirement like iDoc to File and the output file name should be ABCDYYMMDDXX (e.g ABCD14091701) in PI 7.1 where, Default = ABCD YY = year MM = month DD = date XX = sequence no. on the same day; e.g. first batch on same day =