Can we sort saved report list by name

Hi,
I have interactive reports and users can open this interactive report and according to their different requirements they can save this report(as a public) with different names.
Ex: interactive reports
Reports(lov) :1.Primary report
2.xxx test
3.yyyy
4.abcd test
5.zzzz test
Can we sort saved report list by name?
Could you please guide me to achieve this requirement.
Thanks in advance.
Regards
Narender B

Narender wrote:
Hi,
I have interactive reports and users can open this interactive report and according to their different requirements they can save this report(as a public) with different names.
Ex: interactive reports
Reports(lov) :1.Primary report
2.xxx test
3.yyyy
4.abcd test
5.zzzz test
Can we sort saved report list by name?
Could you please guide me to achieve this requirement.It's a lot easier to do so if the following information is provided (as has been repeatedly pointed out to you):
<li>Full APEX version
<li>Full DB/version/edition/host OS
<li>Web server architecture (EPG, OHS or APEX listener/host OS)
<li>Browser(s) and version(s) used
Sorting of the saved report list by report name was introduced in APEX 4.1.

Similar Messages

  • How can I sort the target list in debug form.

    If I want to select a procedure/function to debug it is very hard to find it if the package contains a lot of procedures. How can I sort the target list. I did not find anything in the preferences. Thanks.

    Sorry, can't be done. You can request this at the SQL Developer Exchange though, so other users can vote and add weight for possible future implementation.
    My suggestion (if you decide to request it): base the order in the dialog on the order inside the navigator tree (location in the source by default, but possible by name or type/name - see tree's context menu).
    Regards,
    K.

  • How can i sort contacts according to company name on my iPhone

    how can i sort contacts according to company name on my iPhone

    That is not a sorting option in the built in app. There are other apps in the App Store that can access your contact information. Perhaps there is one that will let you do that.

  • How can I sort iCloud contacts by Business Name?

    I'm trying to use my phone for business. How can I sort my phone contacts in iCloud by Business Name, not First/Last or Last/First. Their needs to be selections for the business user.  More fields.  I don't want to bastardize my contact list right from the start. Did I buy the wrong phone?

    The best app out there (to sort by COMPANY NAME) that nobody knows of is  called "EasyContacts". Be sure to search for it was written in the app  store. It is money well spent. Every person I show this app to decides  to buy it. I use Card Scan still to scan business cards and then export  the contacts to Outlook. I then sync my iPhone via iTunes to read my  Outlook contacts. PERFECTION!!

  • How can I sort the delegates list?

    I am using iCal in an office situation and am managing a large number (15) of delegates (they all have their own calender).
    I can sort the delegates list via Preferences, Accounts, Delegation and then add the delegates I need in the order that I prefer.
    But I am looking for a more easier way to sort this list.
    Who can help me with this?

    Hi Katherine,
    You have to specify the order manually I'm afraid.
    Regards,
    Jamie

  • Reset Sorting on Report List

    Is there a way to reset the default sorting on a report page? I am able to reset pagination on the page with a process, but how would I go about resetting pagination and sorting columns on the report page with one button named "Reset " on the page.
    Any help would be appreciated.

    Have a look at
    apex_util.remove_sort_preferences
    But be aware that it does a reset for all report sorting preferences of a user. Currently there is no procedure to just reset the sort preference for a particular report.
    But there is a workaround available. The preferences are stored in the non public table WWV_FLOW_PREFERENCES$ with a preferences name of
    FSP100_P2_R342859614236079794_SORT
    FSP100=application id
    P2=page id
    R342859614236079794=region id
    So you can write a procedure which builds that preference name and remove it with the regular Apex_Util.remove_preference procedure.
    The procedure could look like:
    CREATE OR REPLACE PROCEDURE remove_report_sort_preferences
      ( pStaticId IN VARCHAR2
    IS
        vRegionId APEX_APPLICATION_PAGE_REGIONS.REGION_ID%TYPE;
    BEGIN
        SELECT REGION_ID
          INTO vRegionId
          FROM APEX_APPLICATION_PAGE_REGIONS
         WHERE APPLICATION_ID = Apex_Application.g_flow_id
           AND PAGE_ID        = Apex_Application.g_flow_step_id
           AND STATIC_ID      = pStaticId
        Apex_Util.remove_preference
          ( p_preference => 'FSP'||Apex_Application.g_flow_id     ||
                            '_P' ||Apex_Application.g_flow_step_id||
                            '_R' ||vRegionId                      ||
                            '_SORT'
    END remove_report_sort_preferences;Now you just have to use the new region property "Static Id" to assign the report region an "external" id which you can reference in your code.
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

  • On a Keynote presentation, every slide begins with a Name. Can I sort the slides on this name ?

    I am using Keynote. Each slide begins with a name of a contact and the data on the slide is all about this individual. Over time, this presentation will keep growing and possibly reach a few hundred slides.
    To help with organizing, is there a way to sort the name (or Header field) of every slide so that my presentation is always sorted based on the name on each page?
    Apprecaite your help. 

    Hello,
    not as far as i know, however, if it helps, you can organize the slides into subsections: locate the slide that is to be the beginning of a section and drag the one(s) immediately below slightly to the right.
    now you can easily move around the sections and sort them the way you want them to be without dragging individual slides...
    You can even close a section by clicking on the small triangle next to the slide that is the "section head".
    I hope this helps.
    Ricc

  • I can't organize my wish list by name!

    Whenever I click my iTunes wish list "Name" catergory, the list doesn't organize by the name of the song in alphabetical order.

    Hey BingHuo,
    Thanks for the question. If I understand correctly, iTunes store is blank. I would recommend that you read this article, it may be able to help you resolve or isolate the issue.
    Apple software on Windows: May see performance issues and blank iTunes Store
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • HELP! can't sort a STL list

    I declare a list like this:
                   std::list<swedSim> usedSimList;
    and a compare function to sort it:
         bool lt_fun_equip(const swedSim& s1, const swedSim& s2)
         return s1._maxAssEquipment - s1._assEquipmentCount - s1._assEquipmentRequestCount <
                        s2._maxAssEquipment - s2._assEquipmentCount - s2._assEquipmentRequestCount;
    when I try to sort the list, this way:
                             usedSimList.sort(lt_fun_equip);
    I get the following compile error:
    "/opt/SUNWspro/WS6U2/include/CC/Cstd/./list.cc", line 351: Error: Too many arguments in call to "std::list<srh::swedSim, std::allocator<srh::swedSim>>::__adjacent_merge(std::list<srh::swedSim, std::allocator<srh::swedSim>>::iterator, std::list<srh::swedSim, std::allocator<srh::swedSim>>::iterator, std::list<srh::swedSim, std::allocator<srh::swedSim>>::iterator)".
    "taskReqAssociation.cpp", line 268: Where: While instantiating "std::list<srh::swedSim, std::allocator<srh::swedSim>>::sort(bool(*)(const srh::swedSim&,const srh::swedSim&))".
    "taskReqAssociation.cpp", line 268: Where: Instantiated from non-template code.
    Any help would be highly appreciated!
    Thank you in advance

         struct ltsim_equip : public binary_function<swedSim, swedSim, bool>
         bool operator()(const swedSim& s1, const swedSim& s2) const
              long diff;
              diff = s1._maxAssEquipment - s1._assEquipmentCount - s1._assEquipmentRequestCount -
                        s2._maxAssEquipment + s2._assEquipmentCount + s2._assEquipmentRequestCount;
         return (diff == 0 ? (s1._lastModDate < s2._lastModDate) : (diff > 0));
         bool lt_fun_acc(const swedSim& s1, const swedSim& s2)
              long diff;
              diff = s1._maxAssAccessory - s1._assAccessoryCount - s1._assAccessoryRequestCount -
                        s2._maxAssAccessory + s2._assAccessoryCount + s2._assAccessoryRequestCount;
         return (diff == 0 ? (s1._lastModDate < s2._lastModDate) : (diff > 0));
         void taskAssocReq::execute ()
              //define a list and an iterator
              std::list<swedSim> simList;
              std::list<swedSim>::iterator simIterator;
                             simList.clear();
    // the following statement will initialize the list
                             lastProspectIsValid = getSimList(imeiItem->_prospectNum, simList, db);
                        if (imeiItem->isAccessory() && (simListSortedBy != ACCESSORIES)) {
                             simList.sort(lt_fun_acc); // THIS ONE WORKS
                             simListSortedBy = ACCESSORIES;
                        } else if (imeiItem->isEquipment() && (simListSortedBy != EQUIPMENTS)) {
                             simList.sort(ltsim_equip()); // THIS ONE DOES NOT!!!
                             simListSortedBy = EQUIPMENTS;

  • HT204406 I used Match, and now there are artists missing when I search by artist, yet they are in my library when I search by song. If they are in many song list,  why aren't they in my artist list? Also I can't sort my songs by artist on iPhone,  so thes

    I used Match, and now there are artists missing when I search by artist, yet they are in my library when I search by song. If they are in many song list,  why aren't they in my artist list? Also I can't sort my songs list by artist on iPhone,  so their music is basically lost in space....help

    It's not clear from your post, but you do realise
    that if you import a cd as a compilation, it will not
    appear under artists? This is done to save the iPod
    being cluttered up with single artists entries who
    might have only one song listed.
    I wasn't aware of that. It's true that I haven't been using the "compilation" tag for a long time. I've only started using it with iTunes 7 as otherwise with Coverflow I would have one album cover for each artist in a compilation. Before that my compilations weren't tagged as such as that is quite probably why each artist from compilations showed up when browsing by artists.
    Message was edited by: Didou

  • Which table keeps the Discoverer Report list?

    Hi,
    I'm new to Discoverer, actually I haven't started to use yet.
    I would like to know is it possible to retrieve a list of reports created in Discoverer so that I can add them to the standard reports that I developed using Oracle Report builder in my application. If possible, which table can I get the report list?
    My second question, is it possible to run a Discoverer report directly if I have the report link? Or everytime I run I must enter the schema username and password?
    Please advise.
    Thank you.

    Hi
    With regards to question 1, I don't believe this is possible any more. The older versions were rather flexible in that approach but sadly, no more.
    With regards to question 2, using a VPD you can authenticate to your heart's content using any custom defined table you wish. This is just an out of the box idea, and I don't know whether it will work, but here goes.
    The table that stores public connections is this one: orasso.wwsso_psex_user_info$
    I am wondering what would happen if we put a restriction on SELECT from that table to not allow selection if the SSO user was not of a certain class or did not have a certain privilege.
    Would anyone else care to comment here?
    By the way, inside SQL, this code SYS_CONTEXT('USERENV', 'CLIENT_IDENTIFIER') will return the SSO user.
    For more info on public connections, look here: http://download-west.oracle.com/docs/html/B13918_03/conns.htm#i1016752
    Best wishes
    Michael

  • Sorting singly linked list with minimum time complexity

    Hi ...
    anyone could tell me how can i sort singly linked list with minimum time complexity .... ????
    Regards...

    By MergeSort or QuickSort O(n log n). But then you
    have to first extract the objects in the list,sort
    them, then rebuild the list. But it will still bealot
    faster than by keeping the list linked.Technically, I believe insertion sort is marginally
    faster for small n ( <20 or so).Woohoo! So for 20 out of the possible 2147483648 array
    sizes Insetion is faster!
    Unfortunately, checking for that case probably wastes
    all the time you get from using the faster sort...
    That would depend on the actual distribution off array sizes. So it's an engineering decision.
    Sylvia.

  • HT5534 how can I sort names in a list made in pages

    I made a list of addresses inm two columns using pages 09. How can I sort the last names in alphabetical order ?

    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=256&mforum=iworktips ntrick
    Peter

  • How can I assign index markers to a list of names coming from Excel

    I have to build up indexes on directories. The list of names comes from Microsoft Excel and is saved as a text file. I need to assign index markers to the list (sometimes up to 2000 names) so I can build up an index after the layout is done.

    Indesign cs6
    On Thu, Feb 19, 2015 at 11:07 AM, John T Smith <[email protected]>

  • How can I get a report to use a DSN instead of a database name?

    DSNs are great things.  By using a DSN in a database connection string, you don't have to worry about what happens if you have to look at a different database, or if a database name changes.  All you have to do is change the database the DSN points to, and everything that was built using that DSN still works.
    Everything, that is, except Crystal Reports.
    I am using CR XI.  Our customer's database is named "Anneal", and it uses PostgreSQL.  I have several copies of that database, taken at different times and for different purposes, on my machine:  "Anneal", "AnnealTest", "Anneal_2_8_10", and on and on.  I also have a DSN named "WinCaps".  The reorts I have developed for this customer were set up to use an ODBC connection based on the WinCaps DSN.  But if WinCaps pointed to the "AnnealTest" database when it the report was created, and then I delete the AnnealTest database and change the WinCaps DSN to point to a database named "Anneal", and then try to open the report, I get a complaint that the AnnealTest database does not exist!  Yes, I know it doesn't exist.  I am expecting CR to use the DSN I told it to use, which should get me to the Anneal database.
    The fact that CR complains about the AnnealTest database tells me that internally, CR is retrieving the actual name of the database and storing that instead of storing the DSN name, completely defeating the purpose of the DSN.
    Is there any way I can set up my report to use whatever database the DSN happens to be pointing to, instead of the database the DSN pointed to at design time?
    Thanks very much!
    Rob Richardson

    Hi Rob,
    Crystal assumes you are setting location to the database and it stays that way when run. Yes we do keep the connection info in the RPT file.
    There's a few options that may help. First, can you upgrade to CR XI R2? It' still supported...
    Go to this link: http://www.sdn.sap.com/irj/boc and download the trial version of CR XI R2 and use your XI keycode, then apply the patches which you can get to by clicking on the BusinessObjects tab above, then Downloads.
    Direct link to the Trial version: http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    Second, in the report itself check on the Verify on first refresh, save the report and then test it on another PC connecting another database.
    Next option to to try these registry key changes, usual warnign about altering the registry:
    HKEY_CURRENT_USERSoftwareBusiness ObjectsSuite 11.0Crystal ReportsDatabaseOptions - VerifyWhenDBDriverUpgraded = Yes
    And try changing this one also - DontAutoConvertODBC = Yes
    Close the Designer first or your changes won't stay.
    THey may have to simply verify the data manually and then save the report so the updated location info is saved in the Report.
    Crystal is very database dependant obviously so asumming changes made to the DSN are automatically updated can cause a lot of issues for the end user also but it depends on your point of view. We consider this working as expected.
    Thank you
    Don

Maybe you are looking for