SQ01 - How to associate existing query with another  infoset ?

Hello,
I created an infoset and want to associate it with an <u>existing</u> query.
-> I tried to change the existing query but it is blocked for changes by the user author.
-> I tried to copy the existing query to a new query but the infoset was copied automatically
Is it possible to do this?
Alex,

Hello, a query is built upon the infoset, it gets data from the infoset structure and display them in the way you have defined in the query, if you change the infoset that is below a query you might not have all the data you need in the query.
Why not create a new query based on the othe infoset?
Regards, Luciano.

Similar Messages

  • Copy query (SQ01) to new query with new infoset

    Hi,
    Not sure if this is correct forum.
    Is there a way to copy existing query with an infoset to a new query using another created infoset?
    If so, please explain how.
    Kind regards

    Hi,
    If you want to copy a query for another infoset its not possible.
    The copied query will work for that infoset only which you have been generated.
    You need to make a new infoset and than create a new query for it.
    Regrds,
    Nikhil.

  • Transferred my Library to new laptop, but how to associate/sync iPhone with new laptop?

    I got a new laptop. The old laptop is still working. I transferred my library using the Home Sharing method and all of my items were moved except my apps. I plugged in my iPhone to the new computer and used "Transfer Purchases from iPhone" option and all of my apps were added to the library. But, now I don't know how to associate the iPhone with the new computer. When I plug in my iPhone to the new computer. It starts to sync. It says steps 1 through 3, spins for 20 seconds and says complete, but nothing was done. I do not get the "this iPhone is associated with another library" message when I plug it in to new computer, perhaps because I've authorized both computers. All I can find in my searches is how to avoid losing all of your data and how to transfer your library, but none has dealt with this exact situation. I am stumped as to how to get iPhone associated with new computer. Can I transfer my backup from the old computer and restore from backup? Other thoughts? Sorry if the answer is somewhere (I'm sure it is), but I have spent two days looking.

    Randers4, so I carefully followed the directions (only one that confused me was about adding a fake address/calendar entry, is that for Macs, I'm using a PC?.)  I restored it from the backup and everything looked good. I had hope, the final step says to sync it and when I did, I had the exact same problem. It spun, went quickly through only 3 steps (even though there were 7 sync steps with my old laptop) and nothing changed. It clearly didn't sync.
    So, I had an idea that I would back up everything by right clicking in the left pane and forcing a back up on the new computer, and then erasing the entire phone and then restoring from the backup I just made to see if that would make a difference. So, after I tried that and it restored, it was weird. All of my settings were there. Some folders were there, my pictures were there, but all of my apps, folders, music and video was missing and it still wouldn't sync. So, then I had to plug it back into my old laptop and do a restore from there to get that stuff back.
    Shouldn't I get a message when I plug the iPhone into the new laptop saying this phone is connected to another computer? I tried "Reset Warning Messages" but it doesn't do anything. At this point, I don't care if I lose some of the stuff from my iPhone (texts, etc)...but I want it to sync to the new computer because my old laptop is on its death bed.
    So frustrating, all of my iTunes content is on the new computer, the only piece that is missing is getting it to "talk" to the iPhone. Times like this I wish I wasn't a poor teacher and could afford to get a nice Mac laptop.

  • How can I use Bluetooth with another devices?

    How can I use Bluetooth with another devices?

    You can set up your FaceTime account in Settings > FaceTime.

  • How to communicating one application with another?

    I wanted to make a web site that have the ability to view,update,insert and delete record in a database. How to do that? How can one application communicate with another? example, I wanted to have XHTML communicate with Java and Java to communicate with my database that is pointbase database.

    Multi-tier application communication is a somewhat complex matter. It may be made using differents techniques and designs. But like Sum-shusSue said, a typical Java-based solution would use these Java technologies: JSP (Java Server Page) for the presentation side (the client), Servlet or EJB (Enterprise Java Bean) for the server-side logic. The communication with the Database is made through JDBC.
    I suggest that you take a look at the J2EE edition of Java. That stands for Java 2 Enterprise Edition and it is specifically made for enterprise system development, such as Servlet, JSP, EJB, etc...
    This is a whole lot of new subjects and, from my humble experience, it is not that easy. i.e. I would not recommend it for strict newbies. However, if you have some months of Java coding on your side, maybe you should take a look. You can check first the left menu of this site, you'll find, under Technologies the sub-menu J2EE. There's also, somewhere on the site, tutorials on differents J2EE topics. Finally, I would recommend you this book:
    Professional Java Server Programming, J2EE 1.3 Edition, edited by Wrox. Of course, there a lot of other books on hte market. J2EE is a hot topic!
    Hope this help...
    Simon

  • How to replace a movieclip with another movieclip

    How to replace a movieclip with another movieclip
    Hi,
    I am having a swf called tchild.swf... in this i got a
    movclip 'child1'. i am loading this tchild.swf into another swf
    tparent.swf within 'mcloader' movie clip.. i got another movclip
    called 'picture1'
    i am loading tchild.swf into mcloader movclip.. and i want to
    load 'child1' moviclip into picture1..
    how to replace a picture1 movieclip with child1 mc..
    PS: i dont want to load picture1 from library.. its on the
    stage.

    AWT or Swing?

  • Is it possible to update a query with another query?

    I'm trying to update a query with another query (see attached
    code). Here's my setup: I've got a table in an Access database in
    which I enter a string into a form and update. This string
    corresponds to a single record in another table of the same
    datasource. The first table has only one record to provide the
    second, which has many and will have more. Basically what I'm
    wondering is: Is this a valid thing to do in coldfusion? If not
    please help with an alterate method. I'm still a novice at
    coldfusion.
    The overall effect I'm going for is to display the one record
    as a featured truck profile on the web site:
    www.truckerstoystore.net.
    I currently get an error when I try to display the page with the
    current query setup.
    Check this page to see the error:
    www.truckerstoystore.net/currentTOW2.cfm
    Help on this issue is very much appreciated.
    ------------------------------------------------------------------------------------------ -----------------------------------------------------------------------

    I think this is what you are after
    <!--- this query will get all the records from the DB
    --->
    <cfquery name="cTOW" datasource="tow">
    SELECT *
    FROM currentTOW
    <!--- Do you need to find a particular record in the
    database --->
    <!--- If so, then you need a 'where' clause in here
    --->
    </cfquery>
    <!-- Loop the cTOW query for each record returned -->
    <cfloop query="cTOW">
    <!--- For the record returned from the cTOW query you now
    need to update the table --->
    <!-- Update the table -->
    <cfquery name="currentTOW" datasource="tow">
    UPDATE Your tblName
    SET
    Dataname = cTOW.DataValue
    </cfquery>
    </cfloop>
    thats it
    PS: I think your original query needs modifying. To return
    the exact records that you want to update from the original table.
    ie: Primary and foreign key relationship

  • How to associate a button with the selection/unselection of a JTable?

    hi,
    how to associate a button with JTable in this manna? i want to disable a button once there is no selection in the JTable, and enable the button when there is a selection. to associate the selection it is easy: just make an eventAction for the button on the click in the JTable and check whether there is a selection. but how to do this with the unselection? hope anyone can give me any hint. thanx!

    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Test extends JFrame {
        String[] head = {"One","Two","Three"};
        String[][] data = {{"1-1","1-2","1-3"},{"2-1","2-2","2-3"},{"3-1","3-2","3-3"}};
        JTable jt = new JTable(data,head);
        public Test() {
         setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
         Container content = getContentPane();
         content.add(new JScrollPane(jt));
         jt.getSelectionModel().addListSelectionListener(new ListSelectionListener() {
             public void valueChanged(ListSelectionEvent lse) {
              if (lse.getValueIsAdjusting()) return;
              if (jt.getSelectionModel().isSelectionEmpty()) {
                  System.out.println("Nothing Selected");
              } else {
                  System.out.println("Something Selected");
         setSize(500,500);
         show();
        public static void main( String args[] ) { new Test(); }
    }

  • How can I file share with another person if both of us are using Mac operating systems?  Do we need to use a third party file sharing system or does apple have this capability?

    How can I file share with another personif both of us are using Mac operating systems (one of us using a Mac laptop and the other using iMac).  Our intention is to have a working document that can be changed by both parties over time and both parties will have visibility to the others changes.

    Use SugarSync

  • How to write sql query with many parameter in ireport

    hai,
    i'm a new user in ireport.how to write sql query with many parameters in ireport's report query?i already know to create a parameter like(select * from payment where entity=$P{entity}.
    but i don't know to create query if more than 1 parameter.i also have parameter such as
    $P{entity},$P{id},$P{ic}.please help me for this.
    thanks

    You are in the wrong place. The ireport support forum may be found here
    http://www.jasperforge.org/index.php?option=com_joomlaboard&Itemid=215&func=showcat&catid=9

  • How to create sap query with "or" relationship

    dear experts,
    I need a report to display the employee whoese WSR is
    changed in the month for infotype 0007.
    that is ,we want to search with selection
    begda OR endda between 2008-01-01 and 2008-01-31.
    how to create sap query with "or" relationship?

    hi use like this,
    CALL FUNCTION 'HR_READ_INFOTYPE'
      EXPORTING
        pernr                 =  p_pernr
        infty                   =  '0007'
       BEGDA                =  p_date1
       ENDDA                 = p_date2
      TABLES
        infty_tab             = itab .
    hi use this by passing the pernr to fm and giving the dates low and high in the p_date1 and p_date2.
    loop at itab where condition.
    endloop.
    may it helps u,
    regards,
    venkat.

  • How to map a query with the Multiprovider?

    Hello All,
    Can any one please tell me how to map a query with a multiprovider?
    Appreciate your help.
    Regards,
    Soumya.

    Hi,
    Can you please elaborate , do you mean how to create a query with multiprovider. if that is your question it is very simple just create the query on the multiprovider.
    What is the purpose for mapping the query with multiprovider

  • How can i share music with another person?

    How can i share music with another person?

    purple_tuesday,
    See a post of Jeff Bryan's which explains about the
    iPod-to-computer transfer in detail:
    reverse download... from ipod to computer
    -Kylene

  • How to copy existing query report into new query report in SQ00

    Hi Experts,
    Hi Experts,
    I want to add fields "company code" "'region" to existing  query report AQZZ/SAPQUERY/FKF1============
    (list of vendor address) for this i done as following:
    1.In SQ01  go to "EDIT->other user group" and i selected user group as /SAPQUERY/FK
    2.I typed F1 in query field and click change button
    3.I clicked next screen button and entered into "change query f1: select fields screen".here i clicked "basic list" button and searched company code checkbox and saved it as result company code is appearing in the standard report"AQZZ/SAPQUERY/FKF1============"
    but unfortunately there is no region field(LFA1-REGIO) for this i think i should copy the existing  query report  into new query report(Ex:Z_LIST_OF_VEND) which should be 14 characters.please tell me briefly how to do this because this is first time i am using SQ00.
    one more issue is when i selected "edit-otheruser group" and choosing /SAPQUERY/FK  i  am getting only infoset "/SAPQUERY/FIKD" but i should need Info set: "/SAPQUERY/FIDD" please tell me how to add the previous one into user group.i think if i got /SAPQUERY/FIDD into usergroup  /SAPQUERY/FK i can add region also into Query report as i mentioned above by going SQ01 ...............................
    please help regarding this which should be very beneficiary to my carrier.
    Regards,
    naresh

    Hi Experts ,
    I solved issue by changing infoset in SQ02 by means of assigning field to field group and changed the query in SQ00.
    Regards,
    naresh.

  • Error during search !!! Associate Search Query with Indexes !!!

    We are trying to implement a simple index with Trex Search .
    We have done the following tasks :
    1. Created my index
    2. Assigned data to the the indexes
    3. Created taxonomies for classification indexes
    4. Created my search query  asociated to the index
    When we  try to search with the iview search , we got this error  :  <i><b>"Error during search occurred - com.sapportals.wcm.WcmException: A received argument has an invalid value (Errorcode 18)"</b></i> .
    We think that something is missing and for that we need to know how can we
    associate the search query with the index ?
    After the step 4), what we have to do in order to get this implementation (search working)
    Please send us  any ideas ..
    THANKS !!!

    Dear Ato
    Check in IMG Path - Enterprise Structure --> Assignment --> Logistis Execution --> Assign warehouse number to plant/storage location.
    Here check whether the warehouse number is assigned to your plant and storage location.
    thanks
    G. Lakshmipathi

Maybe you are looking for

  • Thoroughly disappointed with Droid Razr

    I paid a premium price less than a year ago for a LEMON of a phone -- the Droid Razr by Motorola.  I have now replaced by new phone with three (3) refurbished phones because of the faculty Google operating system and poor manufacturing by Motorola, w

  • How to create a default value of timestamp column?

    I am trying to create a table with a default value on a timestamp column, can it be done? CREATE TABLE myTbl FutureDateTime date default TIMESTAMP WITH TIME ZONE '2999-12-31 23:23:59.000' )

  • Can I merge photo books??

    I've created 2 photobooks using the same theme/format and would like to add entire pages from one book to the end of the other book. Is there a way to merge these two books or copy and paste entire pages in an efficient way?? Thanks for the help!

  • Image in Develop mode - Orange Tint

    I'm having an issue with my images when I switch to Develop mode.  There is an orange tint that appears in each image while I'm tweaking it.  Sometimes the tint is minor like the example I've attached and other times it makes it very difficult to edi

  • OS X v10.7.4 or later???

    Hi I want to get icloud running on my mac pro. The 'how to setup' page says that i need OS X v10.7.4 or later and i have OS X v10.6.8, but when i try to update my software it says that the updates are up to date? How do i get this upgraded software?