How to remove the sort function on the drill down and then save

how to remove the sort function on the drill down and then save in the  change local view of the Query
Is it possible to change the porperties of any characteristic in the local view and then save?
If so please post the answer.

I do not think that option is possible.
Regards,
Venkata Boga.

Similar Messages

  • How to create a txt file, load it, modify it and then save it again?

    Hello everyone!
    I have a question and I hope you'll help me.
    I'd like to create a txt file (please see attached pdf file) but I don't know how. I've tried many methods but it's not working 
    The user should be able to change the parameters (for example "Time", "Time Type" ...etc) and the corresponding values from the Front Panel.
    The number of section (Begin Line......End Line)  is 128.  Means, the final file should contain  "Begin Line1....End Line1"   till  "Begin Line128....End Line128".
    Please, take a look at the attached file to see how does the structure of the file look like.
    Note:  the seperator between a parameter (example, "Time") and its value (example, "7" in the section "Begin Line1....End Line1") is a colon( " : " ) and not an equal (" = ").
    Thank you very much for your help.
    Best regards
    Attachments:
    Batch File.pdf ‏8 KB

    Hi
    thanks for your answers.
    I'm using LV 8.2  and my file should be saved in txt.
    Initially the file doesn't exist. So, the user choose the parameters and their values from the Front Panel
    and then hit a button to create that file. The user should be able to reload (Front Panel button) the created file, modify it or not and then resave it.
    Before hitting the "create file" button the user define (on the Front Panel)  the number of sections ("Begin Line.....End Line") to be created.
    I joined a VI here just to explain the idea. May be that can help you to help me.
    I appreciate yoyur help!
    Kabanga
    Attachments:
    Create batch file.vi ‏14 KB

  • How to open a file, process it with different runnables and then save it

    Hi,
    I want to read an image file, then process it using different runnable classes and then save the output in a different image file.
    In which order should I put the threads? Each process has (of course) different execution time, so I need to know where to put the wait() or lock statement.
    Any idea?
    Thanks

    gmf wrote:
    Here is a diagram
    / One image analysis - image is a buffer\
    Main/                                                             \ save to one image
    \ Second image analysis - image is a buffer/Main calls the others, and all the images are buffers so there is no problem about how do they keep from stepping on each other's toes.
    Are those two separate buffers, both copied from the original image?

  • Can I edit with Smart Print the same way I could with Smartweb Printing and then save as PDF files.

    With Vista basic and SmartWeb Printing you had the option to edit your pages and then to save or print them in the PDF format. This way you could customise various pages pages, save them to a file and then reopen the whole file to see if you wanted to make any further changes before printing the final copy.
    sharjor

    Steve M. wrote:
    I installed the full suite of Canon printing, scanning, faxing and whatever else software they provide for this all-in-one.
    Maybe you don't need that. I prefer using Apple's Image Capture for scanning.
    Right now I am working on scanning documents into PDFs. The Canon software lets me create multipage PDFs which is something I've been wanting to do. My question is, is it best to scan images as JPEGs and then save them as a multipage PDF or is it best to scan into PDF directly (which the scanner seems to offer as well) and then save as a multipage PDF? I'm thinking in terms of the best optimization of file size vs. image quality and things like that.
    Let the software do it for you. That will be fewer steps for you. Image-based PDFs are going to be large. There is no way around that. If they are too large, you can use Preview's Save As feature and play around with the Quartz Filter.
    Is the scanner actually doing anything differently when scanning into JPEG vs. PDF? Or is the scanning all the same and it's just the saving of the file that is different?
    Scans are scans. The JPEG file format is lossly and will look worse than other types. If you are scanning in photographs, the JPEGs will look good. If you are scanning in crisp text, JPEGS will have lots of artifacts and look bad.
    In general what dpi setting is usually sufficient to use to scan a basic text document without taking up too much file space?
    I pretty much always keep it at 300 unless I need something special or when the original is really small and I intend to blow it up.

  • What happend to the sort function?!

    Latest version for iPad, what happend to the sort function?
    I have very big lists and I can't live without that function, I need to be able to sort the list descending.
    So my latest adds will end up in TOP, not bottom.
    I also need this function in my iPhone aswell...
     

    Thanks, but I still don't see any reason for removing that function from an existing version.
    Even if there is a new super-spotify under development... (that only might have that function..?)
    I can only hope that this new super-spotify app will have the sorting functions that are compareable to the Windows version of Spotify, eg sort on track, artist, time, album ,added date. It's not a tricky thing to add and it should have been added years ago.
    It's a real pain in the ass right now with big playlists in my iOS devices.
     

  • The follow functions initiate the sorter just after initializing the compon

    The follow functions initiate the sorter just after initializing the components in the file student.dialog
    void mySettings()
    //jTable1.rowSelectionAllowed();
    jTable1.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
    //jTable1.setFont(new Font("Helvetica", Font.PLAIN, 10));
    jTable1.setModel(new StudentTableModel(jTable1,jLabel25));
    // MyTableModel model = new MyTableModel(this.rw,this.cl);
    sorter = new TableRowSorter(jTable1.getModel());
    jTable1.setRowSorter(sorter);
    //jTable1.getValueAt(rw, cl);
    // System.out.println(jTable1.getColumnModel().getColumn(2));
    jTable1.getSelectionModel().addListSelectionListener(
    new ListSelectionListener() {
    public void valueChanged(ListSelectionEvent event) {
    int viewRow = jTable1.getSelectedRowCount();
    //jLabel1.setText(String.valueOf(jTable1.getSelectedRowCount()));
    if (viewRow < 0) {
    //Selection got filtered away.
    // statusText.setText("");
    } else {
    //int modelRow =
    // jTable1.convertRowIndexToModel(viewRow);
    firstName.getDocument().addDocumentListener(
    new DocumentListener() {
    @Override
    public void changedUpdate(DocumentEvent e) {
    newFilter();
    @Override
    public void insertUpdate(DocumentEvent e) {
    newFilter();
    @Override
    public void removeUpdate(DocumentEvent e) {
    newFilter();
    lastName.getDocument().addDocumentListener(
    new DocumentListener() {
    @Override
    public void changedUpdate(DocumentEvent e) {
    newFilter();
    @Override
    public void insertUpdate(DocumentEvent e) {
    newFilter();
    @Override
    public void removeUpdate(DocumentEvent e) {
    newFilter();
    }After this when a user select a filter and table get sorted only 10 records appear there int the jtable from which a user select just one and press the remove button on that click i have written this
    int rowArr [] =jTable1.getSelectedRows();
    for(int rowId:rowArr)
    try
    // System.out.println(sorter.convertRowIndexToModel(rowId));
    sorter.getModel().fireTableRowsDeleted(jTable1.convertRowIndexToModel(rowId), jTable1.convertRowIndexToModel(rowId));
    //sorter.rowsDeleted(rowId, rowId);
    int stuId = Integer.valueOf(String.valueOf(jTable1.getValueAt(rowId, 0)));
    int sessId= Singleton.getInstance().session_id;
    conn = Singleton.getInstance().makeConnection();
    query="DELETE FROM student_class WHERE student_id =? AND admClass1 AND session_id=?"; // 7
    s=conn.prepareStatement(query);
    s.setInt(1,stuId);
    s.setInt(2,sessId);
    s.execute();
    }catch(Exception e)
    e.printStackTrace();
    }Do not think that i want multiple records to be delete i m selecting only one record but when i click on the remove button it gives me the following stack trace:
    java.lang.IndexOutOfBoundsException: Invalid range
    at javax.swing.DefaultRowSorter.checkAgainstModel(DefaultRowSorter.java:921)
    at javax.swing.DefaultRowSorter.rowsDeleted(DefaultRowSorter.java:878)
    at javax.swing.JTable.notifySorter(JTable.java:4277)
    at javax.swing.JTable.sortedTableChanged(JTable.java:4121)
    at javax.swing.JTable.tableChanged(JTable.java:4398)
    at javax.swing.table.AbstractTableModel.fireTableChanged(AbstractTableModel.java:296)
    at dps.StudentTableModel.fireTableChanged(StudentTableModel.java:465)
    at javax.swing.table.AbstractTableModel.fireTableRowsDeleted(AbstractTableModel.java:261)
    at dps.StudentTableModel.fireTableRowsDeleted(StudentTableModel.java:475)
    at dps.StudentDialog.jButton5ActionPerformed(StudentDialog.java:1360)
    at dps.StudentDialog.access$1600(StudentDialog.java:56)
    at dps.StudentDialog$18.actionPerformed(StudentDialog.java:441)
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018)
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341)
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402)
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259)
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252)
    at java.awt.Component.processMouseEvent(Component.java:6504)
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3321)
    at java.awt.Component.processEvent(Component.java:6269)
    at java.awt.Container.processEvent(Container.java:2229)
    at java.awt.Component.dispatchEventImpl(Component.java:4860)
    at java.awt.Container.dispatchEventImpl(Container.java:2287)
    at java.awt.Component.dispatchEvent(Component.java:4686)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422)
    at java.awt.Container.dispatchEventImpl(Container.java:2273)
    at java.awt.Window.dispatchEventImpl(Window.java:2713)
    at java.awt.Component.dispatchEvent(Component.java:4686)
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:707)
    at java.awt.EventQueue.access$000(EventQueue.java:101)
    at java.awt.EventQueue$3.run(EventQueue.java:666)
    at java.awt.EventQueue$3.run(EventQueue.java:664)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87)
    at java.awt.EventQueue$4.run(EventQueue.java:680)
    at java.awt.EventQueue$4.run(EventQueue.java:678)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:677)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:211)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:90)

    Use your debugger and step though to actually see what is happening, also if you have N rows and one is removed you then only have N-1 rows and any attempt to address the container with N rows will fail.

  • How to display the sort value in the selection screen in the report title

    Dear All,
    How to display the sort value in the selection screen in the report title? I have selected a value in the selection screen for sorting , but i need that values by which i have sorted with in the report title. Can you please throw some light on this!!
    Good day,
    Thanks and regards
    Arun S

    Hi Arun,
    Try this.
    1, Set one dynamic parameter,
    2, Drag and drop that parameter into  your report title.
    3, Pass the value(sort value) dynamically from your application,
    4, Cheers..
    Other wise Try with Dataset, create a dataset and fill thev alue into that.. Then  set the data source from CR designer. and darg and drop that data column into the report.
    Hope this will work,
    Regards,
    Salah
    Edited by: salahudheen muhammed on Mar 25, 2009 11:13 AM

  • In My iphone 5s,i have disabled automatic download from whatsapp app.So whichever images,video i feel is good i download them and then save them to my camera roll section.So i want to know how can i remove the images from cache of my phone.

    In My iphone 5s,i have disabled automatic download from whatsapp app.So whichever images,video i feel is good i download them and then save them to my camera roll section.So i want to know how can i remove the images from cache of my phone which are downloaded and not saved,but they remain in cache.
    Even in some apps i have data which i want to remove,but cant find a way to remove them and they are in my cache eating up my memory.

    Try assigning Queen as the Album Artist on the compilations in iTunes on your computer.

  • How to remove my credit card from the App Store

    How to remove my credit card from the App Store

    I used a pre-loaded credit card so when it ran out i had problems, primarily because it wont let me download or update anything until the "billing problem with the last transaction" was resolved. I dont really care if the purchase goes through but i want to be able to update stuff again and it wont give me the option to select 'none' under payment type. do i have to put another card on there just so i can "resolve the billing problem" and then i have  to take it off again or is there a way around this or is it a never ending cycle?

  • I have downloaded IOS7 on my iPhone and all calendar events have disappeared. The general functions of the calendar have changed and are definitely not 'user friendly'. How can I retrieve my calendar events. Will Apple improve the calendar function

    I have downloaded IOS7 on my iPhone and all calendar events have disappeared. The general functions of the calendar have changed and are definitely not 'user friendly'. How can I retrieve my calendar events. Will Apple improve the calendar function or revert to the previous system. Even the typing function on IOS 7 is faulty - very slow to respond to the keyboard. I no longer enjoy using my iPhone. Can anyone assist. Thank you

    Very strange! All of my calendar events have reappeared. This has happened one week after downloading iOS 7
    The calendar however,  is not easy to use.
    The typing function on the phone has  become even slower. Have to wait for each letter to show on screen.

  • My iPod Touch will not play through external speakers when it is docked.  It only plays through it's internal speaker.  All the other functions on the iPod can be controlled by the external speakers (volume,track, etc).  How do I fix this?

    My iPod Touch will not play through external speakers when it is docked.  It only plays through it's internal speaker.  All the other functions on the iPod can be controlled by the external speakers (volume,track, etc).  How do I fix this?

    I would try in oreder:
    - Resetting the iPod:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Restoring the iPod via iTunes.  First from backup and if problem persists, restore to factory defaults/new iPod.

  • How to enhance the search functionality of the Locator Bar in SAP CRM Order

    Hello All,
    I have one following requirement in SAP CRM 4.0 :
    it is necessarry to search for Orders according to one of the Z-fields(under Z-tab) in SAP CRM.
    Therefore i need to  enhance the search functionality of the Locator Bar with this option.
    Can anyone help me how to achieve this .
    Cheers
    Sreedhar

    HI, Sreedhar
    Check this thread:
    Re: New search help on CRMD_ORDER locator
    Denis.

  • How do I change the sort order in the file picker?

    Hi there,
    I've recently hit a problem with the Save and Open dialogs in Mavericks. Some how I have changed the sort order within the Column View so that it sorts by modified date and no longer by name. Unfortunately I can't work out how that happened or how to get it back so that it sorts by Name.
    Please could anyone help?

    Normally, you click on this thing (shown below) and select the sorting preference.

  • How to remove large message stuck in the adapter engine?

    Hi experts,
    We have a large message abt 100 MB stuck in the adapter engine which is causing the J2EE server to restart continuously.
    I have tried increasing the heap sizes and the number of threads in config tool, but no luck. My question here is how to remove that message? Also I checked smq1 and smq2 both are empty.
    Regards.

    Hi Nagasatya,
    This issue is realted to Large amount of data.You have to write condition in the query.I have face same issue,but resolved it.Please do the following steps.
    Go to Configtool and selct the com.sap.aii.adapter.jdbc.svc and set this jdbc service to start manually instead of auto.
    Then restart server0, this time it should be started successfully. Then go to rwb and try to
    find if any jdbc hanging/failed messages are there, if so, cancel them;also deactivate the problematic jdbc communication channel, otherwise itwill poll the data again. After all above, you can manually try to start this jdbc.svc particually.
    Thanks
    Ravi

  • Does anyone have an example VI about how to call the animatewindow function in the user32.dll using CLN in Labview?

      I want to call the WinAPI function-animatewindow in user32.dll to produce some special effect when showing or hidding windows, but i don't know how to using this Win API to achieve my purpose?
      Does anyone have an example VI about this application?
      Thanks in advance for your help.

    You have to use the Call Library Function Node to call Windows API functions. The animatewindow function itself has some pretty simple parameters. You first need to get the window handle. There are a set of Windows API Function Utilities (32-bit) for LabVIEW that you can use. In there there is a VI (Get Window Refnum) that gets the window handle. It's a simple call to a Windows API function. You would call the animatewindow function in the same way. In this case there are 3 parameters: the window handle (returned by a FindWindow API call), a DWORD (32-bit integer) for the duration, and another DWORD for the flags.

Maybe you are looking for

  • Transfer to External Hard drive gone wrong. Help!!!

    I improperly transferred my Itunes, with all my music, to my external hard drive. Not knowing that I had to consolidate my library before hand, I just moved the Itunes application and my Music folder (which contained all of my current music plus a pa

  • Insert BLOB error in IAS but not in JDeveloper

    Hi Our application have a Servlet who executes an INSERT using a PrepareStatement (created by the Transaction of an ApplciationModule) In Jdeveloper (10.1.2) this works OK But when deploy it in the IAS (904) we have an error: java.sql.SQLException: I

  • Airport express & vista

    aloha...anybody out there get their aiport express to work w/ vista??? i can connect to the internet(unsecured) but i can't get the airport admin utility to work at all and the airport setup assistant does not exist.

  • In single SQL query?

    Hi... I need to write one single sql to get execution audit and map stating with all error details using all possible owb audit tables.. Am new to the technology..fresher..could any one help me out regarding this query. Regards, Gautham

  • [solved: zotero problem] Firefox: "uri.host is explosive!"

    I have an issue in Firefox (probably since the update to 26.0). I am using Mozilla's 64 bit build with a Welsh language interface. When I navigate to certain sites, Firefox shows me the loading... forever. If I click on another firefox window or tab,