How to transport R/3 datasources to another system (Urgent)

hai friends
I want to transport R/3 datasources i.e 2lis_03_bx, 2lis_03_bf, 2lis_03_um
these are transport to another system i.e QAS 300
please tell me the procedure
Urgent
Thanks
Ravindra

Hi Ravindra,
If the datsources are active then the steps are as follows:
1. Goto se03 -> Change Object Directory Entries -> Enter R3TR DSAA and the datasource name -> assignn a apckage and create the transport request.
2. Repeat the process for the next datasource and so on.
3. Now goto se09 and relase transport request.
4. Use STMS to transport the request.
Bye
Dinesh
(Assign points if useful)

Similar Messages

  • How to Transport a planning book to another system

    Hello,
    Can someone please let me know how to transport a planning book to another system?
    Thanks for your time.
    Sarath.

    Dear Sarath,
    Transporting Macro Books:
    You can add macro books to a transport request so that they are transported to the target system(s) when the request is released. When you transport a macro book, the system exports relevant notes directly to the target system. For this, you must specify the relevant RFC destination.
    To be able to use macro books in another system, you need to have already exported other objects such as the relevant planning object structures and planning areas to the target system. You do this in Customizing for Demand Planning or Supply Network Planning under Basic Settings -> Maintain Manual Transport Link for DP/SNP. You can also use this activity to transport macro books. If the planning area does not exist in the target system, you can transport the macro book, but you cannot open the macro book or use the macros.
    To transport a macro book, select the book and choose Tools -> Transport Macro Books. On the dialog box that appears, enter an existing transport request or create new one. The transport request determines the system to which the macro book is transported. Choose Enter.
    Regards,
    Naveen.

  • How to transport form one server to another server

    hai friends,
    when basis consultants transport the data from development server to testing server. they will test it and tested well
    Now  How to transport the same to producation server
    is it from development to Production or  Testing to Production server
    throw a few answers.
    kumari

    Lohar
    has given some good explanation adding to that
    use T-Code SE09 or SE10 for transport request
    but wht is meant by request
    wht ever u are doing in the development will saveing right
    will saveing it asks for create own request so in that u have to create ur own request and pass the same request to ur basis people

  • Transporting SBWP distribution list to another system

    Hi all,
    Have anyone knows how to transport a SBWP distribution list to another system? I mean transport it from development system to QA system.
    Thanks,
    Teddy

    I think the distribution list is not transportable. I will use another method to store the data so it will be transportable.

  • How to call a WD4A Application of another system

    Hi,
    I have the need to call a WebDynpro Application of another system via a URL call, thet the application should be opend in the CRM WebUI Window (statefull ) .
    Calling the application via a button event & transaction launcher works fine, but i need to call it from a BSP page. So my idea was to create an iframe, but this obviously opens a new window:
    <html>
      <head>
        <title>IFrames - Webdynpro Test</title>
      </head>
      <body>
        <iframe src=<%= lv_url_route %>"
          width="100%" height="500" scrolling="auto" frameborder="1" transparency>
              </iframe>
      </body>
    <html>
    Can anybody help?!?!
    Thanx & best regards,
    Oliver
    Edited by: Oliver Pregler on Jul 28, 2008 3:26 PM

    Hi Oliver,
    unfortunately I know nothing about BSP-Applications, but this is how I call my WD4A-Application using a FM from CRM:
    data: lr_empty_parent type ref to cl_gui_container,
          lr_viewer       type ref to cl_gui_html_viewer.
    data: lv_url(200)     type c.
    lv_url = 'http://www.xyz.com'.
      create object lr_viewer
        exporting
          parent             = lr_empty_parent
        exceptions
          cntl_error         = 1
          cntl_install_error = 2
          dp_install_error   = 3
          dp_error           = 4
          others             = 5.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                  with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      lr_viewer->detach_url_in_browser(
        exporting
          url              = lv_url
        exceptions
          cntl_error       = 1
          dp_error_general = 2
          others           = 3 ).
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                   with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
      cl_gui_cfw=>flush( ).
    If it helps you - fine. If not - forget it
    Best regards
    Jörg Racz

  • Transport org. unit & position to another system

    Hi,
    I modified some org. units and positions in development and system did not ask for a transport request. How can I move my objects into test system ??

    Jorge hi;
    With tcode RE_RHMOVE30 you can create a request and transport them.
    All you have to do is to choose the plan version, object types, objects. If you want all relations to be transported you can write A* in field evaluation path but if you want you can transport specific relations.
    Select transport objects box.
    In field task you can press f4 and then you can create a new request for the transport.  After this press F8.
    There will be a new screen. In this screen select the objects to be transported and then press F8.
    After that you will release the request and transport it to the other system via using se09 and stms.
    Regards;
    Okan
    Edited by: Okan Caliskan on Oct 4, 2011 1:58 PM

  • How to upload an XML file into another system

    Hi friends,
    I have a requirement where I need to upload an  XML file into one system
    which has been downloaded  using  another  system.
    I have tried using the method ' cl_gui_frontend_services=>gui_upload'
    to upload the file but it is going for dump.
    I have used the  method ' w_xml->import_from_file' also,
    but it is also going for dump ,because  both methods are using the same FM
    ' GUI_UPLOAD'.
    Can any one suggest on this.
    Regards,
    Bhargavi.D

    "Here is the  Explaination for uploading the XML   Format file to sap   " through ABAP Program ....
    1. Basically you simply have to convert the XML file into the proper IDoc format. There are many ways to achieve this. One solution would be to convert it externally to SAP, e.g. via VB Script or with an XSLT transformation. Or you use the built in SAP functions for importing an IDoc from an XML stream.
    2. Uploading a file is either done via GUI_UPLOAD or via the usual way of reading a file from the application server (Open dataset. Read dataset) But what do you mean by "send to external system"? Do you want to convert an IDoc into XML? Then you simply define an XML port with WE21 to send the IDoc out.
    Here is an example of code that loads an XML from file and posts it as an IDoc. Please keep in mind that the XML has to be in its canonical format as described in the interface repository: ifr.sap.com (choose the template of the desired IDoc from there as an example).
    data: data_tab type table of char1024.
    data: XML_STREAM type string.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = 'D:test.xml'
    *   FILETYPE                      = 'ASC'
    *   HAS_FIELD_SEPARATOR           = ' '
    *   HEADER_LENGTH                 = 0
    *   READ_BY_LINE                  = 'X'
    *   DAT_MODE                      = ' '
    *   CODEPAGE                      = ' '
    *   IGNORE_CERR                   = ABAP_TRUE
    *   REPLACEMENT                   = '#'
    *   CHECK_BOM                     = ' '
    * IMPORTING
    *   FILELENGTH                    =
    *   HEADER                        =
      TABLES
        DATA_TAB                      = DATA_TAB
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'CONVERT_TABLE_TO_STRING'
      EXPORTING
        I_TABLINE_LENGTH       = '1024'
      IMPORTING
        E_STRING               = XML_STREAM
      TABLES
        IT_TABLE               = DATA_TAB[].
    write: / xml_stream color col_total.
    data: CONTENT_LENGTH type string.
    data: CONTENT_TYPE type string.
    data: REMOTE_ADDR type string.
    CALL FUNCTION 'IDOC_INBOUND_XML_VIA_HTTP'
      EXPORTING
        XML_STREAM                      = XML_STREAM
        CONTENT_LENGTH                  = content_type
        CONTENT_TYPE                    = content_type
        REMOTE_ADDR                     = remote_addr
    EXCEPTIONS
       NO_IDOCS_SAVED                  = 1
       TAG_ERROR                       = 2
       NO_DATA_RECEIVED                = 3
       NO_IDOCS_RECEIVED               = 4
       SEGMENT_ERROR                   = 5
       IDOC_WAS_SEND_SECOND_TIME       = 6
       OTHERS                          = 7
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    write: / sy-subrc color COL_NEGATIVE.
    ENDIF.
    reward  points if it is usefull.......
    Girish

  • How to transport a standard datasource from sap to biw?

    hi friends,
    I have one standard Datasource which is extracting data from a function module.
    But if we see that Data source thr RSO2 then ,there a msg comes with 'Extraction from function module' with some name.
    and i saw that function module separately thr se37.
    but in RSO2 , i din find that function module name in this Datasource.
    so anybody pls tell me how this datasource works and what can i do if i want to transport this data source to BIW?
    pls help me out...

    Hi Manisha,
    You posted this under an ABAP forum, you should have posted it under a BI-forum.
    You don't transport from SAP to BI, you just replicate from within BI. (ask you BI consultant).
    regards, André

  • How to transport Application Component Hierarchy of source system

    Hi,
    Our BW pulls data from CRM.
    In CRM Development, all content/generic datasources are placed under specific nodes in Application Hierarchy which I can see in RSA6.
    But all these datasources exist under NODESNOTCONNECTED node in CRM-Quality !!! How can I transport application component hierarchy ??
    Any idea?
    Regards,
    Vikrant.

    If your application component hierarchy is assigned to local object then first you need to change the package.
    Go to TCode: SE03
    For Object Type Selection use: DSAA
    Object: APCO
    Now change object directory from $TMP to the one being used in your porject.
    Also check OSS notes:
    542454
    382471
    For changing the paackage:
    Go to TCode: SE03
    Select option Change Object Directory entries (Under Folder Object Directory)
    In the next screen you box Selection by Object you look for the 1st emptly line
    Or you can also click on create object directory button
    In the Object type box (Small box for 4 chars) type in DSAA or you can also do F4 and find it..
    Then in the box next to it you put in the Object Name
    In this case it should be APCO (if this does not work try apco_merged)
    Select it and hit execute...
    OR
    try se09 - choose workbench request - cursor position on request, menu - request/task->object list->include object->freely selected objects
    under 'selection by type and name' choose 'selected', mark the checkbox on last blank line, and give 'dsaa' and *
    in next screen, cursor on 'apco' and click icon 'in request' (include in request), do the same for 'apco_merged'.
    release the request and transport.

  • How to Transport G/L Accounts between two systems?

    Hi,
    I am trying to move the Chart Of Accounts along with Company dependent data from our Dev to QA system. I used transaction OBY9 to transport the chart of accounts however, it is only transporting chart of accounts related data and I had to re-create those accounts in Company Code.
    I also tried to use FS15 and FS16 between two systems however, no luck. Could you please provide any guidance based on your experience?
    Thanks,
    Durgesh.

    Hi John,
    For activating ALE for a particular message type there are following prerequisites:
    1. Set up the RFC Connection (ABAP) between two systems
    2. Configure model view in Sender system
    3. Distribute Model view  from sender system
    4. Generate partner profile from sender system (In sender system go to tcode WE20 go to partner type LS and maintain outbound parameter for message type GLMAST)
    5. In receiving system go to tcode WE20 go to partner type LS and maintain Inbound parameter --> Message type GLMAST and Process code GLMA.
    Save entries and the above should work for you.
    Generate IDOC for one GL Account and try to send company code date for one company code first. The message will appear which says "one idoc transferred".
    Regards
    Kapil

  • How to transport FM retraction configuration if source-system changes?

    Hi experts,
    I have configured FM retraction in ERP through SPRO connecting it to my Dev source system in my Dev ERP. What do I need to do to transport this configuration to my production ERP and make sure the BI source-system changes from Dev to Prod as well? Is there some kind of souce-system mapping as there is in the BI side for the extraction?
    For example, I have everything set-up for source-system BWD and I want it to change to BWP when I transport the configuration from ERP dev to ERP prod.
    Thanks
    Edited by: Pedro Fontes Pais on Dec 2, 2008 6:36 PM

    Hi Christian,
    Thanks for your reply, but I didn't get anywhere in OKE7 & OKE8 to include the credit records I made in KSAZ in a Transport.
    Can you elaborate it more.
    Thanks
    Amit Goyal

  • How to transport a Screen variant from one system to other

    Hi All,
    I created a screen variant in Dev. It was included in a transport request. But when I transported the request to Quality, The transaction is not behaving according to the screen variant. i.e. Screen variant has not got transported there.
    Please help me out what can be done in this regard.
    Thanks a lot.
    Himanshu

    Check the status of the request which u have transported, whether it includes the screen variant also.

  • How to make fusion drive work in another system as win8

    I am not sure wether  fusion drive could work in other system as win8.I am going to buy the latest generation Mac mini and wish fusion drive can work in win8 system in order to use the flash and hard drive eseaily and smart  to get faster reaction when using win8.

    Welcome to the Apple Support Communities
    Fusion Drive is software, so it's only supported on OS X Mountain Lion and Macs with flash storage and a hard disk

  • DataSource Transport to another system

    HI,
    I have transported the DataSource from Development system to Quality system. The datasource is showing under the source system of Development system in Quality system. How can I change this Datasource to source system Quality system.
    thanks and regards
    Murugesan

    HI,
    Have you checked the source system assignment and conversion of logical systems names after the transport?
    RSA1 --> Menu bar -->Tools -->conversion of logical systems names
    Enter the original source system (Dev) and Target source system (QA) save it...
    Regards
    KP

  • How to transport an entry in NWBC_CFG

    Hiya,
    I've added an entry to NWBC_CGF to allow us to customise a setting for NWBC. I added this via SE16 in our development system.
    Now I'm stumped as to how to transport this across to the Quality system...?
    Would anyone have any ideas?
    Many thanks in advance!

    From the SE16 screen, select the menu path below:
    Table Entry > Transport Entries
    HTH

Maybe you are looking for

  • Message Split comes first to Mapping !

    Hi to all, Can anyone kindly tell me the exact reason as why the Message Split come first before Mapping in the pipeline steps of Integration sever. Thanks in advance.

  • MBP15 1.83 GHz Will Not Boot With 3GB Upgrade

    I'm trying to increase my MBP's ram to the 3GB limit. This is a 1.83 GHz 15" model. It will not boot with 2GB & 1GB sticks of identical mfg & specs. It will boot with one or the other... Any ideas? Thanks, Stradioti

  • How to display a selection option for service selection

    Dear All, I want to display the selection option ("Other sources") which I find in the /nse80 screen painter but cannot be display in the ME22N. /nME22N -> select one Purchase Order for Services -> select one Item Line -> at "Services" tab on Item De

  • QM- In-process inspection Setup

    Hi all, My requirement is : - to setup inprocess inspection in the final operation in routing, - the operation and order can only be confirmed if the usage decision of inspection is favorable. - want Auto GR to happen after favorable usage decision a

  • Edit GAL to show phone numbers but not email addresses

    We would like to edit our company's GAL to show only the phone numbers for some staff and not their exchange email accounts.  Is there a way to do this through Active Directory? AD Environment: Server 2008 R2 Standard Exchange Environment: Server 200