Same Request No from Different Server !

Dear ABAPers,
I was creating Requests for Reports, Data Elements, tables, etc on our company server Last week.
Then today we were sent more requests (from another server) to add on our server.
We found that Their request included some data elements that I created !
then we understood that their request number was exactly the same as Ours !!!
How can we make sure Requests Numbers don't Overlap ??

Hi,
Every transport starts with system name and to hit on such situation you would have to have 2 systems with the same name. I'm no basis guy, but I find it rather imposible.
Since you've found your own objects are present on second system then explanation is very easy - your objects were transported to that other system.
Best regards
Marcin Cholewczuk

Similar Messages

  • How to update a table (CUSTOMER) on a Report Server with the data from the same table (CUSTOMER) from another server Transaction server?

    I had an interview question that is:
    How to update a table (Customer) on a server ex: Report Server with the data from the same table (Customer) From another server ex: Transaction server?
    Set up steps so inset, update or delete operation takes place across the servers.
    It would be great if someone please enlighten me in details about this process in MS SQL Server 2008 R2.
    Also please describe would it be different for SQL Server 2012?
    If so, then what are the steps?

    I had an interview question that is:
    How to update a table (Customer) on a server ex: Report Server with the data from the same table (Customer) from another server ex: Transaction server?
    Set up steps so that inset, update or delete operation gets done correctly across servers.
    I was not sure about the answer, it would be great if someone please put some light on this and explain in details about this process in MS SQL Server 2008 R2.
    Also it would be very helpful if you please describe would it be different for SQL Server 2012? If so, then what are the steps?

  • Read XML file from different server on JSP

    Dear All,
    I am a newbie to JSP with XML, now i want to read the "test.xml" from JSP.
    I read successfully this "test.xml" file from my system and I got output, but I need to read the xml file from
    different server like "http://www.domain.com/test.xml". I couldn't read such a type of file from different server.
    Is it possible to read a xml file from different server?
    If anybody have idea please let me know.
    Thanks in Advance,
    Prasath.
    <%@ page import="java.sql.*,java.io.*,java.util.*,javax.xml.parsers.*,org.w3c.dom.*,org.xml.sax.*" %>
    <%
    try {
        DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
        DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
        Document doc = docBuilder.parse (new File("http://www.domain.com/test.xml"));
        // normalize text representation
        doc.getDocumentElement ().normalize ();
        out.println ("Root element of the doc is " +
             doc.getDocumentElement().getNodeName()+"<br>");
        NodeList listOfPersons = doc.getElementsByTagName("person");
        int totalPersons = listOfPersons.getLength();
        out.println("Total no of people : " + totalPersons+"<br>");
        for(int s=0; s<listOfPersons.getLength() ; s++){
            Node firstPersonNode = listOfPersons.item(s);
            if(firstPersonNode.getNodeType() == Node.ELEMENT_NODE){
                Element firstPersonElement = (Element)firstPersonNode;
                NodeList firstNameList = firstPersonElement.getElementsByTagName("first");
                Element firstNameElement = (Element)firstNameList.item(0);
                NodeList textFNList = firstNameElement.getChildNodes();
                out.println("First Name : " +
                       ((Node)textFNList.item(0)).getNodeValue().trim()+"<br>");
                NodeList lastNameList = firstPersonElement.getElementsByTagName("last");
                Element lastNameElement = (Element)lastNameList.item(0);
                NodeList textLNList = lastNameElement.getChildNodes();
                out.println("Last Name : " +
                       ((Node)textLNList.item(0)).getNodeValue().trim()+"<br>");
                NodeList ageList = firstPersonElement.getElementsByTagName("age");
                Element ageElement = (Element)ageList.item(0);
                NodeList textAgeList = ageElement.getChildNodes();
                out.println("Age : " +
                       ((Node)textAgeList.item(0)).getNodeValue().trim()+"<br>");
            }//end of if clause
        }//end of for loop with s var
    }catch (SAXParseException err) {
    out.println ("** Parsing error" + ", line "
         + err.getLineNumber () + ", uri " + err.getSystemId ());
    out.println(" " + err.getMessage ());
    }catch (SAXException e) {
    Exception x = e.getException ();
    ((x == null) ? e : x).printStackTrace ();
    }catch (Throwable t) {
    t.printStackTrace ();
    %>

    You might try:
    Document doc = docBuilder.parse ("http://www.domain.com/test.xml");Alternatively use the java.net package to obtain an Input Stream to the xml document
    InputStream in = methodThatYouWriteYourselfCalledgetInputStreamForURI("http://www.domain.com/test.xml");
    Document doc = docBuilder.parse (in);cheers,
    evnafets

  • Schema compare between 2 databases from different server

    Let me know the method for comparing schema between 2 databases from different server of SQL 2012 and sending that in mail.

    Check redgate:
    Compare SQL Server schemas and deploy differences
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

  • What permission is needed for a login to access the restored database(backup from different server)

    what permission is needed for a login to access the restored database(backup from different server)
    frequently reach the situation, when vendor restores a database, but he cannot access it unless I remap or add his login to the restored database. What permssion can grant the vendor so that he can but only can access the database he restored, not all other
    databases.

    Hi George,
    According to your description, When you move a database from one server that is running SQL Server to another server that is running SQL Server, a mismatch may occur between the security identification numbers (SIDs) of the logins in the master database
    and the users in the user database. As other post, you can use the sp_change_users_login stored procedure to map SQL Server logins. Also , you can use the following statement after doing the restore database. It will
     fix the mis-mapped SID inside the restored DB.
    ALTER USER <username> WITH LOGIN = <username>
    For more information, you can review the following article.
    http://blogs.lessthandot.com/index.php/DataMgmt/DBAdmin/MSSQLServerAdmin/do-you-still-use-sp_change_users_login/
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Xml file not loading from different server

    Hi,
    I have a simple flash banner that is pulling a number from an xml file on a different server. When it gets to the frame where the number should be it just says "transferring data from eckul.com" and will not actually pull in the number. Unfortunately I can't put the files on the same servers. Any help would be much appreciated, below are the links and the xml code I'm using followed by the action script. Cheers
    http://www.sainters.net/newsletters/2010/flash_test_membership2.html
    http://www.eckul.com/number.xml
    <?xml version="1.0"?>
    <inventors>
        <person>
            <name>892</name>
            </inventors>
    function loadXML(loaded) {
    if (loaded) {
    _root.inventor = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;
    _root.comments = this.firstChild.childNodes[0].childNodes[1].firstChild.nodeValue;
    name_txt.text = _root.inventor;
    comment_txt.text = _root.comments;
    } else {
      trace("file not loaded!");
    xmlData = new XML();
    xmlData.ignoreWhite = true;
    xmlData.onLoad = loadXML;
    xmlData.load("http://www.eckul.com/number.xml");

    so, in frame 1 of your fla before you execute that cross-domain load method, use:
    System.security.loadPolicyFile("http:www.yourcrossdomain.com/subdirectoriesIfNeeded/crossd omain2.xml");
    where the following (crossdomain.xml) is in www.yourcrossdomain.com's root (IF you want to allow allow subdirectory policy files):
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
    <site-control permitted-cross-domain-policies="all"/>
    </cross-domain-policy>
    and in the subdirectory (and its descendents) that you want to allow access put crossdomain2.xml:
    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
      <allow-access-from domain="www.thedomainthatstryingtoloadcrossdomaindata.com" />
    </cross-domain-policy>

  • Unable to create dataset against OLAP Cube from different server

    Hi guys,
    If I load Microsoft SQL Report Builder on the BI Server, I am able to create a dataset against the OLAP Cube I created on the BI Server, however if I try to run the Report Builder from a different server I get the following error:
    "Unable to connect to data source 'MyOLAPCube'.
    A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 172.20.112.82:2382
    A connection cannot be made to redirector.  Ensure that 'SQL Browser' service is running."
    I have had no issues starting the SQL Browser service, however if I try to run it in console mode, I get the following error:
    'SQLBrowser: Warning: failed starting OLAP redirection services with error 1.'
    I have checked online and seen a few similar issues online however I haven't been able to resolve my issue with their resolution.
    Any help is appreciated.
    Many thanks
    Richard

    Yeah there is a firewall running on both servers, however I had opened port 2383 and was still unable to make a connection.  It is using a named instance on the server (servername/instancename) and it is configured to use port 0, so I therefore assume
    it should be using port 2383 by default?  Or as it's a named instance, is the default port 2382? Maybe it would be better to configure it to use a specific port and open the port on the firewall?
    Hi Rfla,
    As you can see on the link below
    http://technet.microsoft.com/en-us/library/ms174937(v=sql.110).aspx
    Named instances use dynamic port assignments. As the discovery service for Analysis Services, SQL Server Browser service listens on TCP port 2382 and redirects the connection request to the port currently used by Analysis Services.
    So you can open the port 2382 for Named Analysis Services Instance remote connect.
    Regards,
    Charlie Liao
    TechNet Community Support

  • 11g issue in handling file datastore from different server

    Hi All,
    In ODI 11g we have standalone agent as well as weblogic server agent. In our case master/workrep and weblogic server agent is installed in one of the linux server Say (A).
    We have a scenario to pick the file from one of the different linux box SAY (B). We have child agent running on that box and it is associated with the main weblogic agent under load balancing.
    While setting the topology information for file datastore it just need the driver name and path. At run time how odi will pick the respective file from that server
    Eg:File in location: /app/soa/uo1/testfile/test.txt(B)
    File path:/app/soa/uo1/testfile/test.txt(B)
    ODI Client will start the execution using the Server A weblogic agent. How ODI will route the control to child agent and try to find the file in ServerB and not in server A.
    in my case it is going to server A and saying file doesnot exist......
    Is it really possible to assign the proper server detail, so that we can make sure that execution will happen properly. I am not sure about the weblogic agent and how it control the execution. I think in my case its weblogic agent which is trying to look for the file in server A, where it is installed and thus failing.
    Control is not passing to the proper child agent as expected?
    Any idea?

    There is a difference in your understanding of the load balancing and the way it is implemented in ODI agents.
    In your case, the weblogic agent exists on Server A and hence it expects that the file also be visible to the agent and be local to server A.
    Load balancing comes into picture when there are too many connections for Agent A and it shares its load with other agents. This logic of passing control is within the agent and when file systems come into picture, the filesystem should be visible to all the agents.
    There is no concept of parent-child agents. The agents are simply load-share agents.
    So, Load balancing is not going to give you what you want.
    In your case, you should execute the job using Agent on server B so that appropriate filesystem can be accessed.

  • How to select same descendant members from different hierarchies?

    Hi All, 
    please help, how it is possible to select same values for only the same hierarchy member names from different hierarchies?
    Example:
    L1          #L1          L2          #L2          Value
    A          #A          a1          #a1          7
    A          #A          a1          #a2          2
    A          #A          a2          #a2          0
    A          #A          a2          #a1          6
    A          #A          a3          #a3          1
    A          #A          a3          #a3          9
    A          #A          a3          #a1          2
    A          #A          a4          #a2          2
    A          #C          a4          #c1          2
    B          #B          b1          #b1          5
    B          #B          b1          #b2          8
    B          #B          b2          #b2          2
    B          #B          b2          #b1          6
    B          #C          b3          #c1          4
    Query1:
    Select sum(value)
    where L1 = #L1
    Result:
    L1          #L1          Value
    A          #A          29
    A          #A          21
    Query2:
    Select sum(value)
    where L2 = #L2
    Result:
    L2          #L2          Value
    a1          #a1          7
    a2          #a2          0
    a3          #a3          9
    b1          #b1          5
    b2          #b2          2
    Names of level members with or without hashmark are identical (A=#A, a1=#a1 etc.).

    [Hierarchy].[L1]*[Hierarchy].[#L1] returns all possible combination of the two hierarchies.
    Here I would filter those cases only, where [Hierarchy].[L1].MEMBER
    = [Hierarchy].[#L1].MEMBER, in aggregated format (Query1 result).

  • Call a scenario from different server

    Hi
    I have 7 scenarios executing sequentially,but the 3rd scenario is on different server(unix )(with new agent).
    So how can i call this child agent with master agent.
    Thanks in advance
    R

    Hi Aj,
    Thanks for ur valuable point,
    Now My environment agents are like below
    Dev:
    Lagent->Pagent(host0)(only one server)
    QA:
    Lagent1->Pagent1(host1)(server 1)
    Lagent2->Pagent2(host2)(server2)
    In dev iam executing with Lagent and with dev context
    In QA,Iam executing with Lagent1 with QA context,when it comes to 3rd scenario it should get it from server2 in QA
    what are the steps do i need to take to make the changes
    tel me steps please
    Thanks in advance
    R
    Edited by: user11410176 on Jun 30, 2011 6:51 AM

  • Transportation requests moved from development server to Quality,But changes not seen

    Hi Folks,
    We made some configurations in Marketing area and moved corresponding TR's from Dev server to QAS,but am not able to see the changes in QAS while testing.Where all could I have gone wrong?
    Regards
    Jaya

    Hi Jaya,
    Mean while can you tell me if we have not moved them in proper order the changes wont reflect or something?
    Not moving the TRs in order, will some times lead to serious problems in production system. To the extent that all business activities would come to stand still. Hence, it's very important to move the TRs in their respective sequence.
    Maintain details of TR and their sequence in an excel sheet.
    Rgds
    Hari

  • Importing Objects from Different Server

    Hi,
       I would like to know is there is any way to import
    the objects (like tables , progams) from a different sap server to my sap system without establishing STMS(Transport Management System).
    Looking for your views..............
    Regards,
    K Vijayasekar.

    Hi Vijayasekar,
    I'm not an authority on this, but I can think of one good reason why it cannot be done.
    If you do not have the TMS between the two SAP systems, then how can the system resolve the possible naming conflicts and perform the consistency shecks?
    For example, let us say you want to import a database table (some 'Z' table) into your target system. Now there are quite a few things that have to be ascertained before the import can be done - does a table with the same name already exist in the target system? are all the data-elements and domains used by this table available in the target system? etc.,
    There might be some other checks required, but I'm not certain of the specifics.
    In summary, I don't think it is possible to import without passing through the TMS. May be it should not be possible to do so unless there is a very strong alternative.
    Regards,
    Anand Mandalika.

  • Same AppSet Name, 2 Different Server (Prod and Dev) causing XML corruption

    Thx
    Edited by: Joan Perrella on Oct 2, 2010 12:33 AM

    Also, another scenario:  User tried to connect durring or after an Optimization is perpformed?
    Will this cause an AppInfo.XML corruption?  
    And what happens if the user changes between 2 different AppSets within the same server (Prod)?
    Will this cause the AppInfo.XML corruption?
      I have seen many different responses as to why this occurs, and until we upgrade to BPC 7.5 MS occurs, we need to better understand what is causing this, so that we can help our users better understand the current situation here. 
    We have deleted the duplicate AppSet within 2 different servers and renamed the duplicate AppSet within DEV to a unique name.  Also, had the users delete the corrupted AppInfo.XML file and so forthe, but still this Randomly Occurs to this date.
    Answers please....

  • Access App Modules from same workspace OR from different workspaces

    Hello,
    1- I want to access an application module methods "application A", from another application module methods "Application B", the two applications are developed under different workspaces, Is this doable
    in Oracle ADF, I need a solution other than web services if possible.
    2- I tried to access a method in AppModuleA using another method in AppModuleB, the two application modules are in the same work space but in different model project, I followed the link :
    http://myadfnotebook.blogspot.com/2010/08/problem-adf-application-with-multiple.html
    I used the following code:
    public String getQueryMultipleDB(){
    getEmpView1().executeQuery();
    String DB1 = String.valueOf(getEmpView1().getRowCount());
    String DB2 = " ";
    ApplicationModule appModuleDB2 =
    Configuration.createRootApplicationModule("modelDB2.ApplicationModuleDB2.common.AppModuleDB2","AppModuleDB2Local");
    ViewObject viewObjectDB2 = appModuleDB2.findViewObject("EmpView1");
    DB2 = String.valueOf(viewObjectDB2.getRowCount());
    return "DB1: "+ DB1 + " DB2: "+ DB2;
    but I am getting the following error:
    (oracle.jbo.ConfigException) JBO-33001: Configuration file /modelDB2/ApplicationModuleDB2/common/common/bc4j.xcfg is not found in the classpath.
    Please help if possible...
    Thanks in Advance,
    MAbuShaera

    Depending on your use case have a look at either nested application modules:
    http://download.oracle.com/docs/cd/E17904_01/web.1111/b31974/bcservices.htm#sm0229
    or packaging an application module in an ADF library:
    http://download.oracle.com/docs/cd/E17904_01/web.1111/b31974/reusing_components.htm#BABCHHHJ

  • How to connect Systems from different server

    Dear All,
    i am trying to do establish the following connection.
    We have a Data services installed on server A and the SAP system is installed on server B. To get connected to both we are using VPN connection. (We are using different link to get connectedto VPNand can not get logged in both simultaneously)
    I am trying now to connect the data services to the sap system but it do not work.
    How to get the connection establish?
    Thank you.
    Pat

    Hi Pat,
    What kind of connection are you trying to establish? Does that other system has to push/fetch data from SAP? What protocol is being used for that?
    Kind regards,
    Mark

Maybe you are looking for

  • Aperture 3 not compatible?

    I've been attempting to update my iPhoto '09 to iPhoto '11 without success. I wanted to make sure I was as up-to-date as possible and still be able to use iWeb to publish my site. I've owned Aperture for quite some time but was frustrated that it too

  • Image copy to folder with name based on image creation date

    Hi all, I am new to Mac OS X and automator so I would like to know the following, Is it possible to have an automated action that triggers when I attach my camera to USB, and who copies all images to a folder which is named according to the date when

  • Need a way to handle oracle.jbo.RowInconsistentException

    This exception throws (as you know :-) when the another user changes data, and after that the first user tries to commit his changes ,by calling "Commit" operation binding from a pageDef, in a usual way :         BindingContainer bindings = getBindin

  • Hi i need help one of my key on the keyboard dosen't work for some reason please help

    hi i need help one of my key on the keyboard dosen't work for some reason please help

  • SOAP (async) to Idoc with BPM

    Hello All, I have scenario SOAP to IDoc. I need to use BPM to send email in case PI was not able to send data to ECC. Can someone please help with the steps required for BPM. I am very much confused. Thanks,