How to make a copy of a query?

We can't find contex menu item to make a copy of a query when right clicking a query and can't find any picture icon/button to make it.  If someone can tell us on how to do it?
Thanks

Hi Kevin,
To make a copy of the query use the "save as" option in the query designer and assign the new technical name and description.
If you want to copy the query between 2 data targets then use the transaction RSZC.
Bye
Dinesh

Similar Messages

  • How to make a copy of a legal size document on HP Officejet Pro 8600

    How to make a copy of a legal size doucment on HP Officejet Pro 8600 e-All-in-One?

    Hi,
    Please try
    (a) Load legal size papers onto the input tray (you have to extent the tray from the blue/cyan part to fit legal size papers),
    (b) Load original face up on the ADF,
    (b) Touch copy,
    (e) Touch Settings (now you can change size and few other options,
    (f) Touch Black or Colors to copy.
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • How to make outer join in Sub Query?

    Hi!
    I'm facing one problem. Can anyone tell me - how to make outer join in sub query?
    I'm pasting one sample code -
    select e.empno, e.ename,e.job,e.sal,d.deptno,d.dname
    from d_emp e, d_dept d
    where e.deptno(+) = (
                          case
                            when d_dept.deptno = 10
                              then
                                  select deptno
                                  from d_dept
                                  where dname = 'SALES'
                          else
                            d_dept.deptno
                          end
    SQL>
    ERROR at line 15:
    ORA-01799: a column may not be outer-joined to a subqueryHow to resolve this issue?
    Regards.

    And any luck with this?
    SQL> with emp as
      2  (select 100 empno, 'Abcd' ename, 1000 sal, 10 deptno from dual
      3  union all
      4  select 101 empno, 'RRR' ename, 2000 sal, 20 deptno from dual
      5  union all
      6  select 102 empno, 'KKK' ename, 3000 sal, 30 deptno from dual
      7  union all
      8  select 103 empno, 'PPP' ename, 4000 sal, 10 deptno from dual
      9  )
    10  ,dept as
    11  (select 10 deptno, 'FINANCE' dname from dual
    12  union all
    13  select 20 deptno, 'SALES' dname from dual
    14  union all
    15  select 30 deptno, 'IT' dname from dual
    16  union all
    17  select 40 deptno, 'HR' dname from dual
    18  )
    19  select e.empno, e.ename, e.sal, d.deptno, d.dname
    20  from emp e,
    21       (select decode(a.deptno, 10, b.deptno, a.deptno) deptno, decode(a.deptno, 10, b.dname, a.dname) dname
    22      from dept a, (select deptno, dname
    23                    from dept
    24                      where dname = 'SALES'
    25                     ) b
    26       ) d
    27  where e.deptno(+) = d.deptno
    28  /
         EMPNO ENAM        SAL     DEPTNO DNAME
           101 RRR        2000         20 SALES
           101 RRR        2000         20 SALES
           102 KKK        3000         30 IT
                                       40 HR
    SQL> Cheers
    Sarma.

  • How to make a copy of an instance of a class?

    Hi,
    If I create a somethingk like a datagrid and filled it with data during runtime, and then I would like to display the datagrid in another place at the same time. So how to make a copy of the datagrid with the data filled?
    Thanks.

    Hi webvalue, do you wish to display the same data that this DataGrid is using? If so just create a new DataGrid instance and give it the same data as its dataProvider. For example the code below uses two DataGrids that both consume the same data:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                    layout="absolute"
                    applicationComplete="init(event)">
        <mx:Script>
            <![CDATA[
                [Bindable]
                private var _dp        :Array;
                private function init(e:Event):void
                    _dp = [
                            {label:"FlashGen.Com", data:"http://www.flashgen.com"},
                            {label:"Adobe", data:"http://www.adobe.com"},
                            {label:"Flex.org", data:"http://www.flex.org"},
            ]]>
        </mx:Script>
        <mx:Panel x="10" y="10" width="600" height="207" layout="absolute" title="Multiple DataGrids using the same data source">
            <mx:DataGrid id="dg2" dataProvider="{_dp}"  left="0" top="0" bottom="0" width="50%"/>
            <mx:DataGrid id="dg1" dataProvider="{_dp}" right="0" bottom="0" width="50%" top="0"/>
        </mx:Panel>
    </mx:Application>
    Cloning a DataGrid component doesn't seem to be the right solution given the information you have provided. If you wanted to reuse the DataGrid in a separate view you could always reparent it to the new view by removing it from the current views displaylist and adding it to the new views displaylist like the example below illustrates, here I'm moving the DataGrid (dg) from one Panel component (dghost) to another (dghost2):
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                    layout="absolute"
                    applicationComplete="init(event)">
        <mx:Script>
            <![CDATA[
                [Bindable]
                private var _dp        :Array;
                private function init(e:Event):void
                    _dp = [
                            {label:"FlashGen.Com", data:"http://www.flashgen.com"},
                            {label:"Adobe", data:"http://www.adobe.com"},
                            {label:"Flex.org", data:"http://www.flex.org"},
                private function moveDataGrid(e:MouseEvent):void
                    dghost.removeChild(dg);
                    dghost2.addChild(dg);
            ]]>
        </mx:Script>
        <mx:Panel id="dghost" x="10" y="10" width="300" height="207" layout="absolute" title="DataGrids original parent container">
            <mx:DataGrid id="dg" dataProvider="{_dp}" right="0" bottom="0" top="0" left="0"/>
            <mx:ControlBar>
                <mx:Button label="Move DataGrid" click="moveDataGrid(event)"/>
            </mx:ControlBar>
        </mx:Panel>
        <mx:Panel id="dghost2" x="10" y="225" width="300" height="207" layout="absolute" title="DataGrids original parent container">
        </mx:Panel>
    </mx:Application>
    While you could clone the DataGrid, when dealing with display objects it's often easier to reparent them as you are only moving it from one view to another; this has the added benefit of saving on memory as you still only have the original instance of the DataGrid not that instance and a new "cloned" instance.
    I hope that helps provide additional options beyond just cloning
    regards
    m
    Mike Jones
    FlashGen.Com
    Adobe Community Expert For Flex
    Adobe Certified Expert for Flex 3 & AIR
    w./ www.flashgen.com
    b./ blog.flashgen.com
    Catch Me At
    Scotch on the Rocks London '09
    Flash on the Beach Brighton '09
    Author Of Developing Flex Components
    Addison-Wesley (Q4 / 2009)

  • How to make a copy of an existing BSP application

    Hi Experts,
    I am working on Web UI WB where i am tyring to make enhanchments as per the clients requirment. I have created new enhanchment set, however i am unable to understand how to make a copy of existing BSP application to make the required changes. Can someone let me know the procedure on how to copy the BSP and make the changes in the methods.
    I am using the TCODE BSP_WD_CMPWB then the component BT108H_LEA
    Thank you
    Leela

    Hi,
    I am trying to rename LEAD with Constituent in Web ui and for that purpose i have created ZClass in Web UIWorkBench, I am able to make changes to the related Method in the Zclass where i have replaced the string with Constituent. Now when i open Webui i see Lead overview page with the description as ConstituentBPLEAD. Can some one let me know how to remove BPLead from the description. I am putting across the code that i have incorporated in the method.
    method IF_BSP_WD_HISTORY_STATE_DESCR~GET_STATE_DESCRIPTION.
    CALL METHOD SUPER->IF_BSP_WD_HISTORY_STATE_DESCR~GET_STATE_DESCRIPTION
    EXPORTING
    IV_CURRENT_DESCRIPTION = IV_CURRENT_DESCRIPTION
    RECEIVING
    DESCRIPTION = DESCRIPTION
    Data corp_descr type string.
    corp_descr = cl_wd_utilities=>get_otr_text_by_alias( 'CRM_UIU_MASTER/TITLE' ).
    if description cs corp_descr.
    replace corp_descr with 'Constituent' into description.
    endif.
    endmethod.
    Thanks
    Leela

  • How to make a copy of one company to another

    hi
         i want to have a backup of one company! can anyone help me how to make a copy of an existing company

    Hi,
    you can use the SQL backup and restore
    if you use SQL 2000, open Enterprise manager, right click on the company DB that you wish to back up and choose "all tasks" -> "Backup Database"
    then click "Add" and select the name of your backup
    then press OK and you just made a backup of your company DB.
    for duplicating DB, just create a new empty sql DB and right click on it->All tasks->select Restore database -> select from device -> clickon from device and select the backuped DB to duplicate.
    go to the option tab and make sure the restore path is correct and that Force restore is marked.
    hope it helps
    let me know if you need more info
    Moty Moshin

  • Unable to make a copy of the query

    Hi All,
    I want to make a copy of a bw query. When I try to save the query as a new query I get the following error: -
    An unexpected 'assertion: failed to delete old query' error occured in wdbrlog.
    It seems to have happened due to an SP upgrade.
    Please provide your inputs on how to resolve this error.
    Thanks & Regards,
    Manisha

    Hi Guys,
    Thanks for your replies.
    RSZC is working. But the problem is user will not have access to this transaction, so user has to save as the query from the query designer itself.
    It is while the user tries to save the query from query designer, the error messages are obtained in the following sequence.
    - An unexpected 'assertion: failed to delete old query' error occured in wdbrlog.
    - Run time error '-214722149 (80040005)
    - Run time error -'429'
    ActiveX component can't create object.
    Then the system disconnects.
    I want to resolve this error so that the user can work direclty using query designer.
    Recently we had SP ugrade. The system details are: -
    SAP_BASIS  640   0017
    SAP_BW      350    0017
    Note 1060109 didn't seem applicable.
    Please let me know your inputs.
    Thanks a lot.
    Manisha

  • How to make a copy of lion on disc

    bought a new mac pro with lion installed and i want to make a copy of lion so when my hard drive goes bad i can install it whith a disc.

    Here you go:
    OS X: About Recovery Disk Assistant
    The procedure describes how to create a bootable USB flash drive, but the procedure to create a bootable DVD is similar. A DVD will take much, much longer to boot, so the USB flash drive method is preferred.
    By the way, realize that you do not need to do this if your HD needs to be replaced. As long as you have a fairly fast wireless connection you need nothing else. The download itself might take one or two hours on a ± 10 Mbps connection.

  • How to make custom PLD from a query

    How would I make a PLD from a query?

    HI Jonathan,
    Did you mean this?
    Choose query that you want to create PLD then select create report
    Regards,
    JP

  • How to make a copy of DefaultStyledDocument Object for RTF text ?

    Hi All,
    In my application, I need to copy RTF text from Org_Default_Styled_Document to New_Default_Styled_Document (both are independent objects.)
    For this I wrote the below method :
    public DefaultStyledDocument copyRTFStyledDocument(DefaultStyledDocument  Org_Default_Styled_Document)
              DefaultStyledDocument New_Default_Styled_Document = null;
              try
                            // writing RTF byte[] to output stream.
                   ByteArrayOutputStream bOData = new ByteArrayOutputStream();
                   rtfKitEditor.write(bOData, Org_Default_Styled_Document, 0, Org_Default_Styled_Document.getLength());
                            // reading RTF byte[] from input stream.
                   ByteArrayInputStream bIData = new ByteArrayInputStream(bOData.toByteArray());
                   New_Default_Styled_Document = new DefaultStyledDocument();
                   rtfKitEditor.read(bIData, New_Default_Styled_Document, 0);
              }  catch(BadLocationException e)   {
                e.printStackTrace();
              catch(IOException e)        {
                e.printStackTrace();
           return New_Default_Styled_Document;
      }I am able to see an extra 'enter' character (i.e, "\n") added to New_Default_Styled_Document.
    I tried to figure out the problem by digging API classes like RTFEditorKit.java and RTFGenerator.java, I observed that an extra 'enter' character is adding at the below method of RTFGenerator.java
    public void writeRTFTrailer()
        throws IOException
        writeEndgroup();
        writeLineBreak();
    public void writeLineBreak()
        throws IOException
        writeRawString("\n");
        afterKeyword = false;
    }I used
    New_Default_Styled_Document.remove(Org_Default_Styled_Document_Length, 1); to remove the extra 'enter character from New_Default_Styled_Document every time. Its workaround only.
    Can any one please help me how to make a new copy / clone of DefaultStyledDocument ? Is there any alternate solution which does not add any extra character when we make a copy of DefaultStyledDocument ?
    Its very urgent. I am trying a lot.
    Thanks in advance
    Satya.

    You will need to define an Organization hierarchy.
    1. Define your company as a Business Group and define the 3 child companies as Organizations (HR Organizations).
    2. Define Organization Hierarchy with 3 child organizations as child of the Business Group. You can further add organizations as childs to those three in the hierarchy.
    3. Define 3 security profiles (Security > Profile) marking View Employees / Contingent workers / Applications / Contacts as restricted. Click in the Organization Security tab. Select the option of Secure by Organization hierarchy option. Click in Organization hierarchy and select the one defined in step 2. Click in top Organization and select Company 1 / 2 /3 for each of the Security Profile. Check the box Include Top Organization. Also select the check box Restrict on Individual assignments option. Save the security profile(s).
    4. Define 3 HR Responsibilities (e.g. Company 1 HR, Company 2 HR, Company 3 HR). Using system profile HR:Security Profile, attach corresponding security profile to each of the responsibilities. Profile value of HR: Business Group is same for all the responsibilities.
    5. Run the Concurrent Program "Security List Maintenance" for each of the security profile.
    From now, One responsibility can not view data from another Organization and its child Orgs.

  • How to make Multiple parameters to sql query string seperated by ,(comma) ..

    Hi,
    I would like to konw how I can make multiple parameters to sql query string seperated by ,(comma)  ..
    For example, this parameters can be printed like 'abc,dde,ggf,eeg' ,once I use  "join(Parameters!rpCode.Value,",")" with report builder , 
    By the way, when I test this multiple parameters by Query Designer of report builder there was no problem,.(using Define query parameters, I put abc,dde,ggf,eeg)
    however, when I run this report , it won't be executing ,  with (rsErrorExecutingCommand)
    Plz, help me....

    If its sql query then it should like this
    Select t.*
    from table t
    inner join dbo.ParseValues(@Parameters,',')f
    on f.val = t.ID
    ParseValues can be found him
    http://visakhm.blogspot.in/2010/02/parsing-delimited-string.html
    or easier way is
    Select t.*
    from table t
    where ',' + @Parameters + ',' LIKE '%,' + CAST(t.ID AS varchar(10)) + ',%'
    Please Mark This As Answer if it solved your issue
    Please Mark This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How to make a copy of a DB and keep it updated in real time?

    Hi
    I have an Oracle Database 10g RAC and ASM on HP UX platform in the production environment and I need to make a copy of that database on another server where each transaction is updated online.
    Could you please tell me how I can do that?
    There are tools to do that?
    Thanks

    Dataguard is in Oracle Enterprise, or I need to buy something else ?
    In wiki ( not a great source I know :P )
    Data Guard supports both physical standby and logical standby  sites. Oracle Corporation makes Data Guard available only as a bundled feature included within its "Enterprise Edition" of the Oracle RDBMS.[1] Edited by: Archylus on 14/04/2010 02:32 PM

  • How to make a copy of my install disk in case original is lost/misplaced.

    This is Lester,
    Need advise how to make copy(s) of my install disk for a rainy day. Went to APP'S utility disk and was confused.
    Advice is appreciated. Thanks to all who respond. L.

    Launch Disk Utility and peruse it's help files. Fairly straight forward. If you're still confused, see Kappy's reply in http://discussions.apple.com/thread.jspa?messageID=7898689

  • I need to know how to make a copy of my contacts from my iphone to my PC?

    I cannot get my contacts to appear on my PC so I can make a copy.I am due to recive a new company phone today and I do not want to lose my contacts.I am unsure of what type phone my next one will be.But I do know that I will be with Verizon Wireless.Is there a way to get my contacts over to the new phone even though it is with Verizon.If not I need to copy them as not to lose them.i am giving my iPhone to my son and staying with AT&T as well as having my company phone.Any help will be much appreciated...
    Thanks,
    Tbone
    4/7/10

    Haven't you been regularly syncing your phone with iTunes. If so, your contacts should already be on your computer in Outlook.
    If you have not done this, you will need to create a dummy contact in Outlook and then sync the phone so the two contact lists will be merged.

  • How to make a copy of photos taken on iPad camera?

    I've only just got an iPad so forgive me if this is really basic but I want to make a copy of a photo I have taken with the camera on the iPad so I can edit one but still have the original. I've tried copy image but it doesn't seem to do anything, I'm not sure if it saves it somewhere else or it's just a copy and paste function?

    What you are doing is a copy and paste function. After you copy the photo, it is placed on the iPad clipboard - which is invisible and cannot be accessed. The photo will remain in the clipboard until you copy something else which will replace the photo.
    What app are you using for editing? I use PhotoPad for a little bit of editing and when I edit the photo and save it, it does not replace the original photo.

Maybe you are looking for

  • How Can I Add Pivot Tables of Excel Into JSP Pages

    Hello all, Basing upon a query to database, i wanted to add a Microsoft Excel pivot table functionality in JSP page [with the result of query]. Is it possible to create a Pivot Table in JSP with dynamic data from database ?? Can any body help me in s

  • "Find" file question

    Hi: As all can see, still learning the subtle nuances of 10.4. so here hopefully is a simple one. Not at all new to the mac interface, but when going to find something, first off the "Find New" window has the following search options "Computer" "Kind

  • Production Order Confirmation BAPI

    I am using BAPI_PRODORDCONF_GET_HDR_PROP to get the proposed values passing the order number. and then creating the confirmation using BAPI_PRODORDCONF_CREATE_HDR. The problem arises when I change the qty proposed. 2 good movement documents are getti

  • Replacing hard drive, best way to transfer?

    I bought a new Seagate 640gb, 5400rpm drive today and I was wondering what the best way is to get my data on there. I was going to backup my current drive, take it out, put in the Seagate and use Migration Assistant. Is this a common and safer way, o

  • HT2693 mon contact est sur mon laptop vcards est que ce poissible de transrfe vers icloud

    mon contact est sur mon laptop vcards est que ce poissible de trnsrfe vers icloud