Query collected in a different transport

hi,
I have collected the query to transport it to Dev, all the query elements are collected in one transport but the query has been collected in one transport. The transport in which the query is collected is of a different user?
How can I change this?
Thanks

Dear Swetha,
If you want to change the Request owner you can change it in se09... and release the request... you will be having an option(A to B) to change the request owner...
If you are having authorisation to delete the request, delete the requests and then collect the required query in a single request... go to SE09 and release the request to transport...
To delete the request first the request have be unlocked...
Go to T/C se03 , Here you can unlock the request...
Assign points if helpful...
Regards,
Aravind.

Similar Messages

  • The dependent requests are in different transport orders

    Hi,
    When i save a particular query, and then try to reopen it, i get an error saying "The dependent requests are in different transport orders".
    Because of this error, my query becomes uneditable.
    Could anyone help me out with this??
    Thanks.

    The best way to transport the query is to go to RSA1->Transport connection and collect all dependent objects like formula variables..calculated key figures..etc in the same transport.

  • 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

  • Same transport domain. different transport directory, possible?

    Hi SAP folks,
    A quick query, I work on multiple systems within a single SAP transport domain. Recently we have requirements to move 2 non-ABAP systems to a different transport directory while keeping the rest intact.
    The reason for this is we are doing CTS+ for the 2 non-ABAP system and do not want to share the transport directories for the rest of the ABAP system.
    Please advise if this can be done and how?
    The following link for SAP suggested that it's possible but stop short of how to do it.
    http://help.sap.com/saphelp_nw04/helpdata/en/c4/6045377b52253de10000009b38f889/content.htm
    Anyone done similar setup? care to share?
    Thank you.
    Regards,
    Jansen

    Hi,
    You can do this very well. First you should remove the two systems that you wanted to configure for CTS+ from your existing transport domain. To do this, login to your existing transport domain controller and delete the systems you wanted to remove from transport domain.
    To perform this:
    STMS --> Overview -> Systems -> < choose the system u want to delete> -> SAP Systems -> Delete. Confirm the deletion and save and activate the changes made to ur configuration.
    And then add your Non-ABAP systems you wanted to configure for CTS+ using the domain controller you decided for CTS+.
    I hope this help you to perform your action.
    Best Regards,
    Vasanth Govindaraj

  • Collecting objects in BEx transport request

    Hi,
    I have created a BEX request in a way like
    ---> Modelling-> Transport Connection-> Create Bex Request-> Assigned $TMP package and finally created my Own request.
    I started working on a query. After finishing it, I have dragged & dropped the query in Transport Tab( left to right ).
    Then I have unchecked all the components in the Query elements.
    Then i transported to quality system. It has ended with "Return Code 8"
    And it shows two query elements are missing in M version. What does it means?
    My entire sequence is right or not? I am totally confused. Need a quick reply......
    Thanks in Advance
    REgards,
    Suman

    Hi Suman,
    saving the developed objects in a $TMP package means you had saved them in the local object which can't be transported to QA or Prod.
    You need to assign the development to a new package which is used in your project for transports collection.
    you are trying to transport your query right?
    First make sure that the info providers on which it is build or already transported or not. and also check if they are active or not?
    As you said your query is already saved in the $TMP local object folder. and you had created a TR.first make sure this TR which is created as local objects is released before you are assigning a package to it.
    Next for your query
    goto transport connection -->object types -->select query --> select your query and click on transfer selection --> collect all the necessary query elements --> click on transport it will prompt for a package enter the package name for ex:ZBIW.
    now click on create new TR.
    release new TR and import to QA and check.
    Check the below link for more info
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/50b1d20e-c1e8-2c10-d9b9-d48eb3a83d89?QuickLink=index&overridelayout=true
    Regards
    KP
    Edited by: prashanthk on Nov 20, 2010 9:08 PM

  • Execute the same query twice, get two different results

    I have a query that returns two different results:
    Oracle Version : 10.2.0.1.0
    I am running the following query on the Oracle server in SQL*Plus Worksheet.
    SELECT COUNT(*)
    FROM AEJOURNAL_S1
    WHERE CHAR_TIME BETWEEN TO_DATE('12-AUG-10 01:17:39 PM','DD-MON-YY HH:MI:SS AM') AND
    TO_DATE('13-AUG-10 14:17:34','DD-MON-YY HH24:MI:SS')
    AND DESC2 LIKE '%'
    AND DESC1 LIKE '%'
    AND DESC2 LIKE '%'
    AND ETYPE LIKE '%'
    AND MODULE LIKE '%'
    AND LEVELL = '11-WARNING'
    ORDER BY ORDD DESC;
    The very first time the query is run, it will return a count of 259. The next time the query is run, lets say, 10 seconds later, it will return a count of 260. The above query is exemplary of the kind of thing I'm trying to do. It seems like the more fields filtered against '%', the more random the count return becomes. Sometime you have to execute the query three or four times before it levels out to a consistent number.
    I'm using '%' as the default for various fields, because this was the easiest thing to do to support a data-driven Web interface. Maybe I have to 'dynamically' build the entire where clause, instead of just parameterizing the elements and having default '%'. Anyway, to eliminate the web interface for the purpose of troubleshooting the above query was run directly on the Oracle server.
    This query runs against a view. The view does a transpose of data from a table.
    Below is the view AEJOURNAL_S1
    SELECT
    CHAR_TIME,
    CHAR_INST,
    BATCH_ID,
    MIN(DECODE(CHAR_ID,6543,CHAR_VALUE)) AS ORDD,
    MIN(DECODE(CHAR_ID,6528,CHAR_VALUE)) AS AREAA,
    MIN(DECODE(CHAR_ID,6529,CHAR_VALUE)) AS ATT,
    COALESCE(MIN(DECODE(CHAR_ID,6534,CHAR_VALUE)),'N/A') AS CATAGORY,
    MIN(DECODE(CHAR_ID,6535,CHAR_VALUE)) AS DESC1,
    MIN(DECODE(CHAR_ID,6536,CHAR_VALUE)) AS DESC2,
    MIN(DECODE(CHAR_ID,6537,CHAR_VALUE)) AS ETYPE,
    MIN(DECODE(CHAR_ID,6538,CHAR_VALUE)) AS LEVELL,
    MIN(DECODE(CHAR_ID,6539,CHAR_VALUE)) AS MODULE,
    MIN(DECODE(CHAR_ID,6540,CHAR_VALUE)) AS MODULE_DESCRIPTION,
    MIN(DECODE(CHAR_ID,6541,CHAR_VALUE)) AS NODE,
    MIN(DECODE(CHAR_ID,6542,CHAR_VALUE)) AS STATE,
    MIN(DECODE(CHAR_ID,6533,CHAR_VALUE)) AS UNIT
    FROM CHAR_BATCH_DATA
    WHERE subbatch_id = 1774
    GROUP BY CHAR_TIME, CHAR_INST, BATCH_ID
    So... why does the query omit rows on the first execution? Is this some sort of optimizer issue. Do I need to rebuild indexes? I looked at the indexes, they are all valid.
    Thanks for looking,
    Dan

    user2188367 wrote:
    I have a query that returns two different results:
    Oracle Version : 10.2.0.1.0
    I am running the following query on the Oracle server in SQL*Plus Worksheet.
    SELECT COUNT(*)
    FROM AEJOURNAL_S1
    WHERE CHAR_TIME BETWEEN TO_DATE('12-AUG-10 01:17:39 PM','DD-MON-YY HH:MI:SS AM') AND
    TO_DATE('13-AUG-10 14:17:34','DD-MON-YY HH24:MI:SS')
    AND DESC2 LIKE '%'
    AND DESC1 LIKE '%'
    AND DESC2 LIKE '%'
    AND ETYPE LIKE '%'
    AND MODULE LIKE '%'
    AND LEVELL = '11-WARNING'
    ORDER BY ORDD DESC;
    The very first time the query is run, it will return a count of 259. The next time the query is run, lets say, 10 seconds later, it will return a count of 260. The above query is exemplary of the kind of thing I'm trying to do. It seems like the more fields filtered against '%', the more random the count return becomes. Sometime you have to execute the query three or four times before it levels out to a consistent number.
    I'm using '%' as the default for various fields, because this was the easiest thing to do to support a data-driven Web interface. Maybe I have to 'dynamically' build the entire where clause, instead of just parameterizing the elements and having default '%'. Anyway, to eliminate the web interface for the purpose of troubleshooting the above query was run directly on the Oracle server.
    This query runs against a view. The view does a transpose of data from a table.
    Below is the view AEJOURNAL_S1
    SELECT
    CHAR_TIME,
    CHAR_INST,
    BATCH_ID,
    MIN(DECODE(CHAR_ID,6543,CHAR_VALUE)) AS ORDD,
    MIN(DECODE(CHAR_ID,6528,CHAR_VALUE)) AS AREAA,
    MIN(DECODE(CHAR_ID,6529,CHAR_VALUE)) AS ATT,
    COALESCE(MIN(DECODE(CHAR_ID,6534,CHAR_VALUE)),'N/A') AS CATAGORY,
    MIN(DECODE(CHAR_ID,6535,CHAR_VALUE)) AS DESC1,
    MIN(DECODE(CHAR_ID,6536,CHAR_VALUE)) AS DESC2,
    MIN(DECODE(CHAR_ID,6537,CHAR_VALUE)) AS ETYPE,
    MIN(DECODE(CHAR_ID,6538,CHAR_VALUE)) AS LEVELL,
    MIN(DECODE(CHAR_ID,6539,CHAR_VALUE)) AS MODULE,
    MIN(DECODE(CHAR_ID,6540,CHAR_VALUE)) AS MODULE_DESCRIPTION,
    MIN(DECODE(CHAR_ID,6541,CHAR_VALUE)) AS NODE,
    MIN(DECODE(CHAR_ID,6542,CHAR_VALUE)) AS STATE,
    MIN(DECODE(CHAR_ID,6533,CHAR_VALUE)) AS UNIT
    FROM CHAR_BATCH_DATA
    WHERE subbatch_id = 1774
    GROUP BY CHAR_TIME, CHAR_INST, BATCH_ID
    So... why does the query omit rows on the first execution? Is this some sort of optimizer issue. Do I need to rebuild indexes? I looked at the indexes, they are all valid.
    Thanks for looking,
    DanIn fact you the first time you ran the query the data has been retrived from disk to memory , in the second time the data is already in memory so the respnse time should be faster ,but if you chagne any condition or column or letter case the optimizer will do the first step (data will be retrived from disk to memory )

  • Include a system in two different Transport Domain Controller

    Hi folks,
    I s it possible to configure a system in two different transport Domain Controller?
    The two domain controllers will be in the same /usr/sap/trans file system.
    thanks,

    Hello Má
    Firstly to include system in the transport domain you need to have systems sharing common transport directory. Which you confirmed is the case.
    Now when you try to change the Transport Domain of the system to make it part of another system it will overwrite current configuration.
    Hence you wont be able to make one system part of two Domains.
    There is no workaround available best of my infomation.
    Regards
    DG

  • 0 result returned for query "collection ('exampledata.dbxml')/article

    I  using  BDB XML I create a container called Exampledata.dbxml using java API. using a separate program I put my sigmodRecord.xml  file into the container. I then wrote another program (see the program below) to test my Query
    where Query =  "collection ('Exampledata.dbxml')/article"  but dont know why i always have
                                                      0 result returned for query "collection ('exampledata.dbxml')/article  if  the program is run. Pls can anybody help me?
    package xmldbdemo;
    import com.sleepycat.db.Environment;
    import com.sleepycat.dbxml.*;
    import dbxml.gettingStarted.myDbEnv;
    import java.io.File;
    public class simpleQuery3 {
        public static void main (String[] args) throws Throwable  {
         String theContainer = "Exampledata.dbxml";
          File path2DbEnv = new File("c:/myJavaProgs/examplesEnvironment");
         if (path2DbEnv == null || ! path2DbEnv.isDirectory()) {
               System.out.println("Bad file name");
          System.exit( -1 );
      myDbEnv env = null;
      XmlContainer openedContainer = null;
         env = new myDbEnv(path2DbEnv);
                Environment enviro = env.getEnvironment();
         // create xmlmanager
           XmlManagerConfig myManagerConf = new  XmlManagerConfig();
           myManagerConf.setAdoptEnvironment(true);
           myManagerConf.setAllowExternalAccess(true);
           XmlManager myManager = new XmlManager  (enviro, myManagerConf);
       // XmlManager myManager = new XmlManager();
        XmlContainerConfig myContainerConf = new  XmlContainerConfig();
        XmlContainer myContainer = myManager.openContainer( theContainer, myContainerConf);
        XmlQueryContext myContext =  myManager.createQueryContext();
        String myQuery = "collection('Exampledata.dbxml')/article";
        XmlResults myResults = myManager.query(myQuery, myContext, null);
        XmlValue myValue = myResults.next();
        while (myValue != null){
         XmlDocument myDocument = myValue.asDocument();
         String name  = myDocument.getName();
         System.out.println(name);

    Hi,
    The BDB forum is located here : Berkeley DB Family

  • Moving host header site collections to a different URL

    Background:
    We have a SharePoint 2010 farm with a single web app.  Within this web app, we have over 40 site collections.  Unfortunately when they were created, they were all put under their own explicit managed path.  So now we have over 40 managed paths
    and the recommended number of managed paths is 20.  We are planning to create wildcard managed paths and move site collections from
    https://servername/sitename to
    https://servername/U/sitename to reduce the number of managed paths. 
    The implications of this are clear for site collections that are not host header site collections.  Site collection admins will have to adjust any URLs that refer to items in the site collection.  It is less clear for host header site collections. 
    From the user's point of view, the host header URL itself will not change.
    1.  Will internal links in the host header site collections need to be adjusted like in regular site collections?
    2.  Will the e-mail address of e-mail enabled lists and libraries change?
    I would be grateful if anybody has an answer to this.
    Sheila

    If you moved http://sitename.webapplication.domain.com (ie. a host named site collection) to http://webapplication.domain.com/managedPath/sitename then it would obviously have a different URL.
    That is not what you were describing in your first post, the terminiology is a little specific and I think you're getting it a bit wrong. A web application (often) has a host header, that will not change moving a site from an explicit path to a wilcard path.
    A host named site collection is very different and more complicated
    If you are planing on converting
    http://webapplication.domain.com/site1
    http://webapplication.domain.com/site2
    http://webapplication.domain.com/site3
    to
    http://webapplication.domain.com/sites/site1
    http://webapplication.domain.com/sites/site2
    http://webapplication.domain.com/sites/site3
    Then you are not using Host Named (or host header) Site Collections, those are bog standard managed path site collection addresses.
    Now to answer your question: for users to access the sites after the move they must use the /sites/siteX version, if they use an old link then it will not work.
    There is a trick in SharePoint that will keep links that exist within the site collection consistent so that some URLs will be maintained. This is called a relative URL and means that URLs that are within the same Site Collection will automatically work
    with the new URLs.

  • How to use Xpath to query elements loaded from different xml docs?

    I have a big DBLP XML doc (95mb), to load into the container, i splitted the doc into many small xml docs by the publication types, such as articles, books, inproceedings, etc.
    I tried to use xpath query such as
    query 'collection()/dblp[article/author]/book[title]'
    I got empty answers.
    but if i use XQuery such as
    query 'let $r:=collection()/dblp,$a :=$r/inproceedings/author
    for $l2 in $r/book
    where $a and $l2/title
    return <result> {$l2}{$a}</result>'
    i got answers. However, if i remove {$a} from the return clause, i still got empty answers.
    is there any problem with my Xpath query and flwor Xquery?
    regards,
    xiaoying

    Hi John,
    Following is the procedure i have used to load the xml docs (after the indexes have been created):
    private static void loadXmlFiles(File path2DbEnv,String theContainer, File file) throws Throwable {
         //Open a container in the db environment
              XmlManager theMgr = null;
              XmlContainer openedContainer = null;
              myDbEnv env;
              try {
              env = new myDbEnv(path2DbEnv);
         theMgr = new XmlManager(env.getEnvironment(), new XmlManagerConfig());
         //use node container
         theMgr.setDefaultContainerType(XmlContainer.NodeContainer);
                   try{
                   openedContainer = theMgr.createContainer(theContainer);
                   }catch (XmlException e){
                        //if the container alreay exist, then open it;     
                        openedContainer = theMgr.openContainer(theContainer);
              //Get an update context.
              XmlUpdateContext updateContext = theMgr.createUpdateContext();
                   String theFile = file.toString();
                   String docName=file.getName();
              //Get the input stream.
              XmlInputStream theStream = theMgr.createLocalFileInputStream(theFile);
              System.out.println("Adding " + theFile + " to container " +
                             theContainer);
         //     Do the actual put
              openedContainer.putDocument(docName, // The document's name
              theStream, // The actual document.
              updateContext, // The update context
         //     (required).
              null); // XmlDocumentConfig object
              System.out.println("done.");
              //XmlException extends DatabaseException, which in turn extends Exception.
              // Catching Exception catches them all.
              } catch (XmlException e){
                   System.err.println("Error loading files into container " + theContainer);
                   System.err.println(" Message: " + e.getMessage());
                   //In the event of an error, we abort the operation
                   // The database is left in the same state as it was in before
                   // we started this operation.
                   throw e;
              finally {
              cleanup(theMgr, openedContainer);
    Unfortunately, i waited for around 20 hours 148mb doc was not loaded; so i gave up.
    Could you please give me some suggestions on how to load the large doc efficiently ? thanks.
    regards,
    xiaoying

  • Assigning the object to a Different transport request number.

    Hi all,
    I have assigned a object to a different transport request  number and i now i want to assign it to a new one..can any one tell me some procedure to change it.
    Tnx,
    Joe.

    Hi Joe
    In SE09 tcode click on display icon and enter the transport number in which the object was already assigned and click on display.
    Now delete the object from the task of the main request number.
    Now its ready to lock in some other transport request. Just goto the workbench object, try to save or activate, it will automatically ask for transport request afresh. You can now assign the request at this step.
    Rgds,
    Sripal

  • How to collect BADI implementation to transport request

    Hi Gurus,
    I have implemented BADi. I want collect it to a transport request. How to collect BADI and implemented class.
    Any help greatly appreciated.
    Best Regards,
    Reddy.

    Hi,
    Goto transaction SE19.
    Enter the badi name
    click goto=> Object Directory entry
    Enter the package name instead of $TMP
    Click on SAVE.
    It will ask for transport. Enter the TR number.
    Best regards,
    Prashant

  • SCCM Query to merge two different collections to one

    Hi Team,
    I wanted to merge two different collections e.g. NY and LA collection in one single all US Collection. I wanted to see all PCs under US collection. NY and LA computers are manually updated in collection i cannt use there query. 
    Waiting for your response.

    If you already have to two collections you can do something like this
    select
    SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client
    from SMS_R_System where SMS_R_System.ResourceId in (select ResourceId from
    SMS_CM_RES_COLL_XXXXXXX) or SMS_R_System.ResourceId in (select ResourceId from
    SMS_CM_RES_COLL_XXXXXXX)
    John Marcum | http://myitforum.com/myitforumwp/author/johnmarcum/

  • How could be delete bex query name those have already transport in bw prd??

    Hello Expert,
    I would like to delet bex query technical name with description those have already transport in bw prd ,
    Beacuse I have to enchanment same name of report. I did copied  and save as different name of dev bex qurey in dev.
    I would like to delete old report name and rename
    so, how could be achieve
    Regards
    Wasem

    Hi Wasem,
    Confirm first your reports are transported to BW PRD,if transported successfully to BW PRD.
    Then manually delete report by open that report in query designer by simple choose delete option from  query menu.It will prompt to collect in a request.Keep in mind do not transport that request to BW PRD.Just delete that request in BW Dev system.
    Regards,
    Rajesh

  • SAP Query(SQ01) need to be transported

    Hi All,
    I want to transport a tcode which is using SAP query. Now I am able to send the tcode to other system but when I go to SAP query under queries and standard query area I am not able to see the version management details. I also tried going to the SAP query report through double clicking on the report name under SE93, and when I am into the report it also does not show any version details. It says "No version found".
    What I am thinking is just get the active request number from the version management and transport it to the other system.
    Can anyone of you tell me how to transport a SAP query.
    Thanks,
    Mahen

    Hello everyone,
    I am having problem in fixing this up. Let me tell you all what I have done.
    I first transported the tcode from souce system to target system.
    Because I transported the tcode so in the target system. Tcode has the report/program name as it is existing in the source system.
    Now when I transported the everything like user group, infoset and the query, I was able to see them in the target client. I tried to run the tcode.
    Tcode does not run, It says there are inconsistensies in the tcode.
    I tried to trouble shoot the problem. I found that when I was trying to run the tcode it was not able to find the report/program.
    What I did was, I generated the program for SAP query existing in the target client.
    When program was generated, I observed that It is different with the one that is currently existing for the tcode in the target client.
    This is the main problem report name are different. When I see in the se93 report name is the old one which I transported from the source system for the tcode, but when I see the report name for the SAP query by going into SQ02 it is coming different. I want to know when you create the program name for the SAP query, On what basis is the namespace of the program generated.
    SAP query program name existing for the tcode and in the source system and also in the target system(When you see it in se93) is :
    AQ01FI==========ZBSAK_LFB1====
    SAP query program name when I generated it in the target client is :
    AQFKFI==========ZBSAK_LFB1====
    Bythe way the query name is ZBSAK_LFB1
    Kindly throw some light on this.
    Thanks,
    Mahen

Maybe you are looking for

  • Apple music app starts automatically in car since ios 8 update on iPhone 5

    Since updating to iOS 8 on an iPhone 5 (thru iTunes on laptop), apple music app starts on its' own in the car using bluetooth. It would start playing music after I started the igniton-though I never use that app or leave music of any sort running in

  • Keep external display full screen on macbook pro

    Anyone know how to get an external display to go full screen and not exit full screen when using the internal display? When you click away from the full screen window or switch applications full screen automatically exits. Is there a way to write a s

  • How to Sort Dimension in Pivot Table via Order Column which is changing like Factual values

    Hi, Recently in of our product offerings we got stuck on this following question: How to Sort Dimension based on the Order Value which Keeps Changing with Factual Values?? We have a data source laid out as (example) In the above the "Order" columns a

  • Bit of a strange question regarding security and internet connection

    This is a bit of an odd question so bear with me for a moment. I sold my old G4 to someone I didn't know yesterday. While he was looking at it to make sure it was working I allowed him to plug my ethernet cable in (connected to both a netgear router

  • IE 6/7 & XMLDataSets

    I'm going nuts trying to figure out what the deal is with this very simple page using very basic spry. It works fine in Safari and Firefox but I see some very strange behavior in IE 6/7. The page will mostly load then I get an error that says: Line: