How to change the Source system from ONE DataSource?

Hi,
I'm trying to change a DataSource's source system (active with dtp and transfer rules), but it's not possible to  do it in change mode because the field 'Source Sytem' is not enabled. I know I can use the BDLS transaction but I understand that this is for change all Datasources and I only want to change one of all.
Thanks for your help

Hi Marcel,
As I understand apart from file and web services all other data sources are replicated from underlying source system. BDLS transaction is used to change the source system but in case of system copy activity and it is necessary because the data sources points to old source system.
In your case as I understand you will have to replicate the current data source directly from underlying source system and then build the rest of the flow. May I know how you have got this single data source for which the source system is different?
Regards,
Durgesh.

Similar Messages

  • How to change the source system for just a datasource

    Hi,
    Our test/development BI system ( BI 7.0 Unicode ) is connected to our development system and to our test system, 1 BI system connected to 2 R/3 systems.
    During some time, the test system won't be available so all datasources that point to the test system must be connected to the development system. In RSA1 is not possible to change the source system in a datasource: RSDS 057
    'Creation of DataSources for SAP source system D30CLNT007 is not permitted' , same error trying to copy the datasource,.
    Any idea about how to proceed ?
    Regards,
    Joan

    Hi,
    If I try to repliclate metadata in the datasource, message RSAR 051 appears: 'error when opening an RFC connection'. This error is expected because the logical system pointed in the datasource does not exist.
    Is not possible to change the source system in datasource ( in RSA1 ) because the field is always greyed, also if I try to copy the datasource the message RSDS 057 appears.
    Any idea about how to proceed ?
    Regards,
    Joan

  • How to change the source system

    Dear Experts,
    I have Ecc1 as one of my source systems to BW Quality.Now the client wants to stop the present source system and wants to get the data from new source system i.e. Ecc2. To divert the present flow to new flow.I have looked the previous post regarding the same but are not clear to me. could some one let me understand steps to look into.
    Thanks Regards,
    Mannu

    you need to maintain RFC to the new source system
    delete old source system
    create source system connection from RSA1
    Run BDLS to point the data sources to new source system. This should be run on both BW and ECC.
    See the below post
    https://forums.sdn.sap.com/click.jspa?searchID=1255799&messageID=2880041
    Re: R/3 to BW Connectivity
    Re: RFC Connections

  • Hello all, does any one know how to change the master number from one nuber to the other number, as in....she no longer wants to be the account holder and wants to change the accoutn master over to my number...i can figure it out...and help?

    any one in here?

        jason6911
    Help has arrived! Let's make sure we get this addressed. From my understanding you are trying to take ownership of a phone number that is currently under someone elses name correct? This would be called Assumption of Liability. Here is a direct link to get the process started. http://vz.to/1zruXOX
    JorgeO_VZW
    Follow us on Twitter @VZWSupport

  • Change the source system

    Hello
    In our Quality Box , I need to change the source system connection (from QR1 to QR2). I created the new connection successfully. Now the issue is all the Transfer structure still using OLD connection ( i.e QR1) . I run BDLS and it did not word. How can I re-assign the new source system (QR1)  to all of my Transfer structures in one go. Is there any report ?
    Farooq

    Hello,
    You cant directly convert the existing objects for a source system to the new source system.
    For that you need to do a transport of the objects to the QA box while maintaining the entry in BDLS to convert to the new source system.
    Regards,
    Shashank

  • Changing the source system in QA

    Hello All,
    I just wanted a quick opinion from your experience on the following issue:
    We  have a ECC Dev client 20 connected to BI Dev client 20
    Similarly we have ECC QA 120 connected to BI QA 120
    But due to some reason we now want to connect a new ECC QA client 150 to BI QA 120 and take out ECC QA 120 totally(120 is wiped off).
    I already have a lot of development transported to BI QA where the source system is ECC 120. Now if 120 dies and we pull the data from 150, what are the pitfalls to watch for?
    Like all my Master data objects , DSO and Cubes still point to ECC QA client 120 but now the "actual" source system is going to be ECC QA 150.
    Points,
    Gaurav

    You need to replicate all the data sources in BI from QA 150 and change the source system assignment to 150 instead of 120.
    Also, you need to reinitilase delta for delta enabled extractors.
    Two  things to watch out:
    1.  If you dont have source system identifier,  then if you happen to get records with same key, then it will overwrite. This applies to both master and transaction data.
    2. For transaction data that is not delta enables, there may be a possibiltiy with which the records will get duplicated. So, better to delete the old requests before reload the data from QA150.
    Ravi Thothadri

  • How to change the source ip address

    hi all,
    i got the problem that how to change the source ip address when i
    get a website's page!
    i mean i want to change the source ip address when i access the
    remote website, sure i know when change the source ip, i can not get
    the result correctly when changing the source ip address, but it is not
    important to get the result i just want to send out a "click" event to the website by calling a post method in the site!
    does anybody have some ideas?
    Best Regards,
    Eric Gau

    Here's some code that connects to google and does a get:
    import java.io.*;
    import java.net.*;
    public class HTTPTest {
        private Socket sock;
        private BufferedReader in;
        private BufferedWriter out;
        private boolean running = false;
        HTTPTest() {
        private void go(String site) {
            try {
                sock = new Socket(site, 80);
                in = new BufferedReader(new InputStreamReader(sock.getInputStream()));
                out = new BufferedWriter(new OutputStreamWriter(sock.getOutputStream()));
                System.out.println("Connected");
                out.write("GET / HTTP/1.1\r\n\r\n");
                out.flush();
                doRead();
            } catch (IOException e) {
                e.printStackTrace();
        private void doRead() {
            running = true;
            String line;
            System.out.println("Read started");
            while (running) {
                try {
                    line = in.readLine();
                } catch (IOException e) {
                    e.printStackTrace();
                    line = null;
                if (line == null) {
                    running = false;
                } else {
                    System.out.println(line);
            System.out.println("Socket closed");
        public static void main(String [] args) {
            String site;
            if (args.length > 0) {
                site = args[0];
            } else {
                site = "google.ca";
            new HTTPTest().go(site);
    }

  • How to change the source level in java Studio creator

    Hi,
    I am using Sun Java Studio Creator 2 Update 1 IDE, in this IDE how to change the source level to 1.5 for an existing project.
    Thanks in advance,
    Rajesh.

    Hi!
    Unfortunately Sun Java Studio Creator 2 Update 1 doesn't support 1.5 source level. But You can try to download NetBeans IDE (from http://www.netbeans.org) and there with Visual Web project You will find the same functionality as for Creator. And 1.5 source level is supported by NetBeans.
    Thanks,
    Roman.

  • How to change the source module version

    Hi All,
    In the OWB i created a source module and during those steps i clicked on version 10.1, but during deployment in the deployment managaer when i tried to register the location, its giving me an error as "Source verison 10.1 is not matching with the target version 10.2", can any one please help me or Advice me as to how to change the "source module version"?
    Thanks

    Hi
    what i understood is that the source module is associate with the location and you have provided the 10.1 which you need to change.
    so you can change that under location.
    Cheers
    Nawneet

  • How to verify the  Source systems connectivity with BWQ System.

    Hi All,
    I have diff source systems. And my requirement is to check the source systems connectivity with BWQ (BW Quality sys). please any body tell me the steps how to check the source system connectivity ?
    Thanks & Regards,
    Manju

    Hi Manjula,
    If you encounter problems when establishing a connection to your target server, check the following:
    A message box appears while performing one of the following actions:
          Setting connection by choosing Apply to local session.
          Testing connection settings by choosing Test settings.
          Creating SAP TSQL objects
    If errors occurred, they are displayed in the respective message box.
       Check developer trace files in ST11.
      Test connection:
         For RFC related errors, check the RFC connection via SM59
         For database multi-connect errors, check if you can connect to the target SQL Server with the SQL Server Query Analyzer. Also check if the DBCON entries are correct.
    Regards,
    RK

  • How to change the file type from IMOVIE PROJECT to other types of file

    how to change the file type from IMOVIE PROJECT to other types of file??
    thank you very much for your help=]

    I am not sure what you mean, but once you make a project. Then go to the share menu and you can export the project to iDVD, itunes, mobileme, quicktime.
    Share export quicktime movie will allow you to export to a variety of codecs. What specific export are you looking to share the movie in? What is the final source that the movie will be displayed?

  • How to change the Unitprice value from 2 decimals to 3 decimals in script

    Hi Gurus,
    how to change the Unitprice value from two decimals to three decimals for each item level for PO in script.
    Please provide some possible solutions.
    Thanks,
    V.V.

    Hi,
    Check the options available like
    &VAR(.2)&  this will print 2 decimals
    &VAR(.3)&  this will print 3 decimals
    need to change the value for how many decimals you need
    Thanks & Regards
    Sarves Sombhatla

  • How to assign the source system to the virtual provider

    Hi
    How to assign the source system to the custom virtual provider with services in BW 3.5 ?
    Regards
    PWnuk

    Hi PWnuk,
    Refer this link on how to implement a virtual provider with services.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/4752ec2d-0a01-0010-ecb0-a145cf2e3e92
    Hope this helps
    Regards
    Karthik

  • How to find the Source Table in one corresponding schema?

    Hi All,
    How to find the Source Table in one corresponding schema?
    regards,
    DB

    DB wrote:
    Hi All,
    How to find the Source Table in one corresponding schema?
    regards,
    DBHUH?
    I do not understand your question
    How do I ask a question on the forums?
    SQL and PL/SQL FAQ

  • How to Change the Development Class from $TMP to YABAP in Layout

    Hi all,
    How to Change the Development Class from $TMP to YABAP in Layout( SE71).
    Thanks & Regards,
    N.L.Narayana

    Hi,
    it is possible with SE03. you just click on Change <b>Object Directory Entries</b> under the tree menu <b>Object directory</b>, and then enter in the last column of table control
    Check the check box and enter FORM and formname,
      R3TR FORM SAPscript form 
    then execute it.
    then you will be able to change it to PACKAGE from $TMP
    regards
    vijay

Maybe you are looking for

  • Value selection in variable selection screen

    Hi all...... I have version varaible on 0VERSION infoobject with mandatory entry and default value S00. when you enter the screen to select other values it display only Key, but i want to display key and text like  S00 Reporting Plan.. but it display

  • Application storage directory for CS Extensions?

    hi, I want to convert my AIR app. into a CS Extension. I have local configuration xml files in my AIR app and I use File.applicationDirectory, File.applicationStorageDirectory..etc to read and write to those configuration files. I have external web s

  • How to use FM bapi_cfg_create???

    Hello folks, can anybody tell me how to use bapi bapi_cfg_create. i want to configure material characteristic values... i have difficulties to understand this function module.. so plz help. -Shweta

  • XK01 , Multiple Email Ids with comma  ECC6.0

    Hi , We are upgrading the system from 46c to ECC. The problem is , previously the Email Ids are maintained using comma in a single field in XK01. Now the client need to maintain the same way in ECC. But in ECC the email validation is happening and it

  • User Not Reponding

    Hi I can not video chat with my girlfriend who has a PC. I have successfully connected with my brother who also has a pc. Whenever i try to chat with her it says "user did not respond" i have all the ports opened that needs to be and have done everyt