Issue in BI Objects collection into Transport Request

Hi Experts
I am experincing a Issue in collecting Infocube and related objects into a transport requests using transport connection.
My Scenario is as explained below
1.Migrated 3.x Dataflow into BI 7.0 Dataflow
2.Dataflow consists Infocube -->DSO (two separate DSO) --> Infosource (only 1) --> Datasource (from 2 different Source systems)
I have manually captured all my objects into a transport requests. i.e while activation.
The issue is when I try to use transport connection on this infocube with "Dataflow before" & Automatic collection options.
I am getting the below mentioned error.
Object '4C3C4WGBCRK9UWKNDGGYNKDNA' (ROUT) of type 'Routine' is not available in version 'A'
Message no. RSO252
Diagnosis
You wanted to generate an object with the name '4C3C4WGBCRK9UWKNDGGYNKDNA' (in transport request ROUT) of type 'Routine' (TLOGO). This is, however, not available in the BW Repository database. It does not exist in the requested version A. If the version is 'D' then it is possible that an error arose during the delivery or installation. If the version is 'A' then the Object was either not created or not activated.
System Response
The object was not taken into account in the next stage of processing.
I am sure that all my objects are collected into transport requests & I checked the object entry of all the dataflow objects..
Appreciate your valuable inputs on this.
Thank you in advance
PKC

In that case, pls ignore my prevoius post...
The issue is when I try to use transport connection on this infocube with "Dataflow before" & Automatic collection options.
With this option, system should have collected the related routines. Did u expand routine node, and check (ON) the check box for that routine ???
(Once all objects got collected,  now from the right most window, expand each node (application, infoarea, routines etc) and put checkbox 'ON' (checked) to ONLY the objects (routine 4C3C4WGBCRK9UWKNDGGYNKDNA' ) u want to transport. Once u r done with that, click on Transport (truck Icon) and enter package name, if system prompts.)

Similar Messages

  • CMOD Project need to move from local Object into Transport request

    Hi Friends,
                 I created a Project(CMOD) under Local Object I need to move the Project from Local object into Transport request.
    I can't able to find any option.
    Please guide me ASAP.
    Advanced Thanks.

    On the first screen of your project, choose following menu path:
    "goto => object directory entry"
    press on the change icon
    you can now assign a different package.

  • Change object from one transport request to another

    Hi,
    I have a requirement wherein i need to change the object from one transport request to another. The thing is that i have saved
    one in one transport request and when i am trying to transport it , it is not allowing me to transport as this transport request
    contains some inactive object. I have also tried to delete that object from this transport request and put in another one
    but when i tried to do that i was only allowing me to create sub task within the same request .
    Kindly suggest me
    Thanks
    Parag

    Hi,
    you can either just delete the object from the object item list of the first transport request (just click away all warnings and hints). Then put it into a new request, lock it and transport it. You might ned to overtake the responsibility for the first request but with the appropriate authorization this should be no issue.
    Other solution is using a transport of copies. This will tell you the object is locked in another request when you release it but still allow to transport it.
    In all solutions you have to be sure that transporting the object without all other stuff in the request is possible as the objects are independent from each other. Otherwise you will not be able to import the request in the destination system.
    Rgds.
    Roman

  • Log for Addition/Deletion of object in a Transport Request

    Dear Friends,
    Recently I had a issue where I tried deleting an object from a transport request and I got the message that object is deleted successfully.
    But when the transport was imported then it failed with Sy-subrc 8 because of the same object in transport.  The reason for the same could be :
    1.) Either the object was not deleted from the transport request.
    2.) Or Some one else added the same object again in the request.
    I want to read the log of this transport in such a way that I see when a object has been added/deleted from a transport request along with SAP User ID of the person doing it.
    Is this possible ? If so kindly share the steps with me.
    Thanks a Lot for your kind help!!! This is very important for me....
    Regards,
    Lalit

    Hello Lalit
    I hope nothing of that sort is available as the transport requests will again have tasks under them.
    The changes done to  the task will have to be tracked in that case but SAP doesn't have that task change logging as far as I know.
    All E0* tables relates to transports and objects under these transports none of them have logs on this nor even any transactions which allow user to edit the transport object.
    You get an action log which provides who created it and who releaed them.
    But if you configure CharM on Solution manager I hope you can track each changes.
    Regards
    Vivek

  • Writing objects to a transport request

    Hi all,
    I generate structures and table types in an ABAP Program and I want to record these objects to a transport request. I use the function modules 'TR_OBJECTS_CHECK' and 'TR_OBJECTS_INSERT'  to write the objects to a transport request, but in this case, for each object the dialog for entering the package name and transport request is shown. I want that all objects are saved in the same package and transport requests. Is there another function module by which I can record all generated objects in a transport request after the request and package number is asked only once?
    Regards,
    Sükrü

    Hi Suekrue,
    I think 'TR_APPEND_TO_COMM' is the one. We did something similar. First choose/Create the Request, then append objects:
    *&      Form  TR_REQUEST_CHOICE
    FORM tr_request_choice  CHANGING pv_trkorr TYPE trkorr.
      TYPE-POOLS:
        trwbo. "complex types for transport request display
      DATA:
        ls_request                            TYPE trwbo_request_header.
      CALL FUNCTION 'TR_REQUEST_CHOICE'
        EXPORTING
    *   IV_SUPPRESS_DIALOG                    = ' '
    *   IV_REQUEST_TYPES                      =
    *   IV_CLI_DEP                            = ' '
    *   IV_REQUEST                            = ' '
    *   IT_E071                               =
    *   IT_E071K                              =
    *   IV_LOCK_OBJECTS                       = ' '
          iv_title                            = 'Auftrag auswählen, Aufgabe wird gefunden'
    *   IV_START_COLUMN                       = 3
    *   IV_START_ROW                          = 7
    *   IV_WITH_ERROR_LOG                     = 'X'
    *   IV_NO_OWNER_CHECK                     = ' '
        IMPORTING
          es_request                          = ls_request
        EXCEPTIONS
          invalid_request                     = 1
          invalid_request_type                = 2
          user_not_owner                      = 3
          no_objects_appended                 = 4
          enqueue_error                       = 5
          cancelled_by_user                   = 6
          recursive_call                      = 7
          OTHERS                              = 8
      IF sy-subrc                             = 0.
        SELECT trkorr
          INTO pv_trkorr UP TO 1 ROWS
          FROM e070
          WHERE trfunction = 'S'
            AND trstatus = 'D'
            AND as4user = sy-uname
            AND strkorr = ls_request-trkorr.
          EXIT.
        ENDSELECT."rkorr into pv_trkorr
      ENDIF.
    ENDFORM.                    " TR_REQUEST_CHOICE
    *&      Form  TR_APPEND_TO_COMM
    FORM tr_append_to_comm
      CHANGING ps_alv                         TYPE LINE OF ty_t_alv.
      DATA:
        ls_e071                               TYPE e071,
        lv.
      ls_e071-pgmid                           = 'LIMU'.
      ls_e071-object                          = 'FUNC'.
      ls_e071-obj_name                        = ps_alv-funcname.
      CALL FUNCTION 'TR_APPEND_TO_COMM'
        EXPORTING
          pi_korrnum                          = p_trkorr
          wi_e071                             = ls_e071
          wi_simulation                       = p_test
    *   WI_SUPPRESS_KEY_CHECK                 = ' '
    * TABLES
    *   WT_E071K                              =
        EXCEPTIONS
          no_authorization                    = 1
          no_systemname                       = 2
          no_systemtype                       = 3
          tr_check_keysyntax_error            = 4
          tr_check_obj_error                  = 5
          tr_enqueue_failed                   = 6
          tr_ill_korrnum                      = 7
          tr_key_without_header               = 8
          tr_lockmod_failed                   = 9
          tr_lock_enqueue_failed              = 10
          tr_modif_only_in_modif_order        = 11
          tr_not_owner                        = 12
          tr_no_append_of_corr_entry          = 13
          tr_no_append_of_c_member            = 14
          tr_no_shared_repairs                = 15
          tr_order_not_exist                  = 16
          tr_order_released                   = 17
          tr_order_update_error               = 18
          tr_repair_only_in_repair_order      = 19
          tr_wrong_order_type                 = 20
          wrong_client                        = 21
          OTHERS                              = 22
      IF sy-subrc                             <> 0.
        MESSAGE ID sy-msgid                   TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4
                INTO ps_alv-tr_message.
      ENDIF.
    ENDFORM.                    " TR_APPEND_TO_COMM
    Pleas adapt to your needs.
    Regards,
    Clemens

  • How to move objects from one transport request to another transport request

    Hi Experts,
        When I am changing the code I selected the wrong the transport request number. I want to move my objects into another transport request number in the same DEV and same client number. Could you please help to move these objects between the transport request numbers.
    Thanks,
    Chinna.

    Hi Chinna,
    If you need to change a transport request number, you can use TCODE SE80
    Click on Repository Browser tab
    Then Select the Object(s) you want to change the Transport Request number
    Right Click > Other Functions > Write Transport Entry
    After that you will need to specify other existing Transport Request number OR create a new transport request number (F8).
    Hope this is what you are looking for.
    Thanks
    Rohan

  • All the table objects in one transport request..?

    Hi Friends,
    I do have more than 10 tables and each table is having more than 30 fields.
    All these Tables, Data elements and Domains are created by me.... means name start with 'Z'.
    My task is i need to save all these objects in one transport request number.
    How can I do that...?
    All the eariler transports are released to higher system....
    As of my knowledge, going to each table & data element and domain... changing some text and then it will ask for new requestr and saving....
    Can i do that in a single step for table and its fields (DEs Domains).
    Thanks,
    Naveen.I

    Hello Naveen,
    In SE03 transaction ,execute the merge object list. ( if u are not authorized to SE03. Goto SE10 transaction and click the transport organizer tool in the tool bar (shift+F6))
    Input all the transport request  you want to merge and select the release check button ( as you says that your transport requests are already released ). and the execute and click the merger button in the top left corner. it will be asking new transport request. Create a new workbench request. finally  you will be getting the popup message. select any option as ur convenient ( either online or background). then all the development you have done in different transport request will merge into one TR.
    Hopes this will helps
    Regards
    Laxman

  • How to unlock objects in a transport request

    Hi, can you help me? I don't know how to unlock objects during a transport request. At the moment I have to unlock them one by one manually. I'm looking for a way to do it automatically.
    Thanks..

    Hi Bay,
    goto SE03,on the right side drill down Requests//task
    double click on unlock objects>give your transports request>execute
    Hope this helps
    Regards,
    Venkatesh

  • Hwo can I insert objects in a transport request automaticly

    Hi all,
    I coded a program which changes some objects descriptions, it's working fine. But the problem is that I can't transport these modifications to another system without putting the objects in a transport request.
    So, How can I code that?
    Can some one give me a detailed example
    Thank you in advance.
    Amine

    Hi Michael,
    Thank you for your answer, but can you give me more details about these FMs.
    A sample code will be perfect
    Regards,
    Amine

  • Delete all inactive objects in a Transport Request

    Hi,
    I want to delete all the inactive objects in a transport Request . How can i do this ? I have many inactive objects in a request so i want to delete them first and then transport it . How can i do this . Please help..

    Hi,
      go to transaction se10 click on display individually enter teh request and click display and then you would get the list of all objects in that request so you can check which one are inactive and delete.
    Or you can also go to se80 in the repository browser you can choose inactive objects so it would show all inactive objects for a user from there also you can delete objects.
    Regards,
    Himanshu

  • Changing smartform from local object to a transport request

    Hi ,
          Can any one please let me know how to change  smartform from local object to a transport request.
    Regards,
    Ashok kumar

    Hi,
    GOTO transaction SMARTFORMS.
    Enter the name of the smartform.
    Then GOTO -> OBJECT DIRECTORY ENTRY.
    There give ur package then it will ask for the request.
    Then create the request.
    Hope it helps u.
    Regards,
    KK

  • Unable to collect objects into transport request BI 7.0

    Hello all!
    I have a fresh installation of BI netweaver 2004s. When attempting create a  transport (in transport collection), I get the following error message:
    Changes cannot be made, display user only
    Object IOBJ xxxxxxxx couldn't be saved to order
    The message is repeated for about 50% of all the objects I'm trying to include in a transport...
    How can I fix this? Has anyone seen the problem before?
    Regards,
    F C

    I am not sure on which system(Dev,QA,PRD) you are trying to collect..looks like you dont have authorization ..but then if it is only infobjects and you have a transport request already created..you can try this
    goto se09..double click on your transport request you created.. go to change mode.. Go to Objects tab--> Add an entry like below:
    <b>R3TR</b> under project..
    <b>IOBJ</b> under Object type and
    <b><your infobject name></b> under object name..and save..
    Regards
    Manga

  • Collecting ABAP's into Transport Request

    Guru's
    I have about 100 ABAP Programs that start with ZC* these are all transported into Q system. But now due to technical reasons we are collecting Individual objects into different Transport requests to import into our Q & P systems respectively... Collecting  Infoareas,DSO's,Cubes, and etc.,. had been quite easy.
    Now the issue : Is their a possibility that I can collect all the ABAP's in one shot and these should include the dependencies (Tables;FuMo's) etc.,
    A tip in this regard would be highly appreciated.
    Regards
    BVPK

    Hi BVPK
    I think there isn`t such a easy way you want to go.
    But I`ve got a little work around to make it easier (I hope)
    Call TA: SE03 --> select "search for requests --> press F8
    Next screen, pres F8 again --> select/create a transport request  -> press (Ctrl+F11) "include objects"
    select "free choosen Objects" (sorry, it`s a german language system here)  and enter.
    --> now tyoe in the paket, your allready transported objects are assigned to --> F8
    Now you got a stuctured list with all your components. You can mark (F6) every single entry you need and include all the marked in your selected transport request.
    Hope this helps a little bit
    Greets
    TOM

  • Manual assignment of object into Transport request

    Hi Experts,
    Very recently I saw in my developement system that one object ( ABAP Report ) has been assigned directly to the Transport request number not into the task number . I have also checked that the object is not locked into TR which should be normally locked.
    My Question is that how it is possible and is their any advantage / disadvantage to follow this type of way ?
    Also if another user wants to change the same report , then will another new TR be generated or new task of same TR be generated ?
    Thanks in  adv. Waiting for youe kind response.
    Thanks.
    A Miter.

    Arit,
    Ideally the objects should get included in a TR when we change/create a object assigned to a package.But while manually adding an object to a TR one needs to be sure about the PROGRAM ID and OBJECT TYPE of that object and the rest of the subobjects related to it.If we manually add an object in a TR there is a chance that the related subobjects will not get transported.
    So.the best way is only to get the objects added to the TR automatically while creating the TR.But,sometimes it will be helpful if we know the mechanism of adding the objects in the TR manually.Sometimes
    Thanks,
    K.Kiran.

  • Include table entries into Transport Request manually @ SM31

    Hi All,
    I have an issues reg table maintenance at SM31.
    We have a Z Table and I can add entries at SM31 to that table. But:
    System has not asked Transport request while saving the data (after additions to the table)
    Option to include in Transport Request manually is not available @ menu -> Edit -> Transport -> Include in request. Include in Request is not highlighted to select here.
    Pls help me the process to add my table entries into a Transport Request.
    Thank you
    Chandu

    Hi,
    seems like your table is defined as Application table (master and transaction data).
    Check SE11 to be sure
    Database table: enter name > Display > Delivery & Maintenance
    Delivery Class > is this A?
    If so then there is no transport and it can be maintained in all systems.
    You could try if required to create manual transport via SE01.
    Programm ID: R3TR
    Object: TDAT 
    Objectname: your table name
    Regards
    Hein

Maybe you are looking for

  • Changes in ECC50 BAPI Structures

    Hi, I am working in upgrade project (46C to ECC50), I would like to know what are the BAPIs changed like structures added to BAPI or deleted some of the fields or added some of the fields in the structures. Please let me know if any SAP tool or good

  • How to create a persistent network manager profile with openvpn?

    After installing networkmanager and openvpn everything works fine except that the networkmanager profile is not persistent and nm creates and selects a new profile with every boot. I followed Persistent configuration on boot using systemd which creat

  • Dim member is moved to the bottom of the hierachy when alias is updated?

    Any idea why the a dim member is moved to the bottom of the hierachy when the alias is updated? I'm updating the alias names for some of the members via batch script. I notices after script ran the member moved to the bottom of the heirarchy. Any ide

  • Init ora file for 2000 server oracle

    i'm running 9.02 on windows 2000. How do i find out which init ora file the start services is picking up. I looked it up in the registry and it wasn't obvious. thanks

  • Acrobat 8.0 Standard Update issues

    I had to reinstall Acrobat Standard 8.0. I want to apply updates. I attempted to star witht he first one listed on the update page; was given an error that I do not have an Adobe product installed. I do and the serial number is listed un my account.