Need info on database based saved search in ADF

Hi All,
I am using jdev 11.1.1.6
i have implemented database based saved search in my adf application.
But after implementing it i am facing more performance related issues in my application.
The page takes lot of time to load along with the previously saved results. Sometime the page is not responding even after a loading the results.
Is there any option such that, i can save only the search criteria's alone instead of saving the result also for each saved searches.
I assume ADF is querying separately for each saved search criteria's which is taking lot of time to load initially. So restricting this auto query will help to load the page quickly.
some one please tell me ideally how ADF will behave in saved search and how to implement saved search based on DB without any performance issue.
Regards
Siva

We are also encountering the same . Once we save criterias and set any of the saved criterias as default, then its not allowing us to select any other criterias or personalize existing criterias.
we are using ADF 11.1.1.5 And we implemented saved search using accross sessions and storing the values in MDS by Running RCU in EM

Similar Messages

  • How to implement Quick Query and Saved Searches in ADF?

    We are using 11gR2 ADF.
    The requirement is to enable Quick Search and save the Searches.
    In the Oracle ADF documentation, it is mentioned that
    - Create a view with view criteria named.
    - In the .jspx drag and drop the view criteria and Select Quick Query
    Upon doing the above, we see that a Search panel is getting created, but with a message 'No Search Fields Added'.
    In the named view criteria, Under 'UI Hints' we have set
    -- execution mode as Both
    -- Search region mode is Basic
    -- Show Operators in Basic
    Under 'Criteria Definition'
    the attributes are added in a group with OR condition.
    Thanks for your reply. Oracle ADF developer guide does not help!!
    If you have any other documentation that helps in implementing this Quick Query and Saved Search, your help is greatly appreciated.

    Set the following on your af:query component
    SaveQueryMode = hidden
    ModeChangeVisible = false
    This should work for you ..
    Regards,

  • Need Info on File based TDMS refresh

    HI,
    In a landscape say we have ECC CRM and SRM systems and respective non-prod systems to be refreshed from production.
    Requirement is , a friday 5PM PST we need to take data snap shot for all three systems , can we do it via File based TDMS refresh ?
    Can i create this export file my self without BASIS help ?
    Would like to explore FILE based refresh to see if we can optimize refresh process compared to RFC method.
    I went through few SCN documents , kindly forward any you have and also share BKM's
    regards
    Vinay

    Hi Amit,
    Would like to check with you one last thing,
    In my current scenario BASIS take data snap shot from prod and restore it in a separate server say TDMSECC and using this as sender system we refresh non prod.
    Do you think using file based process can eliminate BASIS task of creating sender system ? and with minimal impact to prod  i can create export package ?
    regards
    Vinay

  • Saved Searches in Open and Save Dialogs?

    Has anyone else notices that saved searches fail in Open/Save Dialogs?
    I've got a date-based saved search that I've placed in the "Places" section of the sidebar — why? Because I felt like it.
    However, when I access this saved search, I get incorrect results — or results from day or two ago.
    I swear at one point that this functioned correctly.
    Am I missing something?
    d

    thanks for the suggestions i did abit more digging to find it was a corruption in windows. the fix was:-
    run command prompt as administrtor and run sfc /scannow
    after a reboot everything works fine

  • Need Info on RDA-enabled data source based on FM

    Hi,
    I need Info on RDA-enabled data source based on Function Module.
    How to implement it?
    Thanks & Regards,
    Rashmi.

    Hi Rashmi
    Check this link
    http://help.sap.com/saphelp_nw70/helpdata/EN/52/777e403566c65de10000000a155106/frameset.htm
    [under tab Tranferring Transaction Data from Source Systems (RDA)]
    http://help.sap.com/saphelp_nw70/helpdata/EN/3f/548c9ec754ee4d90188a4f108e0121/frameset.htm
    Regards
    Jagadish

  • Best way to store user-saved searches/forms

    Hello,
    in our project, we want to give to our users ability to save form fields values for later use. It will be named the fast OR saved searches.
    We have a relatively huge number of search forms, each one with specific fields. So I don't want, if possible, to use a distinct table for each form.
    The good and logic way to design the table for this purpose looks like :
    SAVED_USERS_FORMS (
    USER_ID NUMBER,
    -- corresponding user
    FORM_ID NUMBER,
    -- system wide unique form identificator (maybe varchar2 code rather than number?)
    SAVED_NAME VARCHAR2,
    -- name of the shorcut/saved form, by user
    FIELDS_VALUES ???????,
    -- saved fields key/values for PK (user, form, name) combination
    PRIMARY KEY (USER_ID, FORM_ID, SAVED_NAME)
    The hesitation here is : how to store the fields & values pairs?
    - XML field?
    - our custom text structure and formating representing something key => value
    - our custom serialized java object into a field
    I think that the EAV modelling technique approach can be a flexible way to achieve our goal, but as I read on the net there's an important set of downsides with this approach. But, this way, my table is something like:
    SAVED_USERS_FORMS (
    USER_ID NUMBER,
    FORM_ID NUMBER,
    SAVED_NAME VARCHAR2,
    FIELD_NAME VARCHAR2,
    FIELD_VALUE ????,
    -- saved field key/values for PK (user, form, name, field name) combination
    PRIMARY KEY (USER_ID, FORM_ID, SAVED_NAME, FIELD_NAME)
    So the new problem can be the field FIELD_VALUE type enforcement. Do we need to have a field for each data type, so validation complexity can increase dramatically...
    Do we need or is suggested to have in a way or another metadata tables describing supported form fields, datatypes, etc?
    Other things to take into account:
    * simple and scalable solution, heh, ye, please.
    * what happens if the form evolve over time? the final solution must not crash or cause some kind of inconsistencies.
    * ..... others ..... ?
    Other info: we're using Oracle Database 10g, JDEV, JSF, ADF, Business Components.
    thanks for any help or comments
    Bruno

    Hello,
    in our project, we want to give to our users ability to save form fields values for later use. It will be named the fast OR saved searches.
    We have a relatively huge number of search forms, each one with specific fields. So I don't want, if possible, to use a distinct table for each form.
    The good and logic way to design the table for this purpose looks like :
    SAVED_USERS_FORMS (
    USER_ID NUMBER,
    -- corresponding user
    FORM_ID NUMBER,
    -- system wide unique form identificator (maybe varchar2 code rather than number?)
    SAVED_NAME VARCHAR2,
    -- name of the shorcut/saved form, by user
    FIELDS_VALUES ???????,
    -- saved fields key/values for PK (user, form, name) combination
    PRIMARY KEY (USER_ID, FORM_ID, SAVED_NAME)
    The hesitation here is : how to store the fields & values pairs?
    - XML field?
    - our custom text structure and formating representing something key => value
    - our custom serialized java object into a field
    I think that the EAV modelling technique approach can be a flexible way to achieve our goal, but as I read on the net there's an important set of downsides with this approach. But, this way, my table is something like:
    SAVED_USERS_FORMS (
    USER_ID NUMBER,
    FORM_ID NUMBER,
    SAVED_NAME VARCHAR2,
    FIELD_NAME VARCHAR2,
    FIELD_VALUE ????,
    -- saved field key/values for PK (user, form, name, field name) combination
    PRIMARY KEY (USER_ID, FORM_ID, SAVED_NAME, FIELD_NAME)
    So the new problem can be the field FIELD_VALUE type enforcement. Do we need to have a field for each data type, so validation complexity can increase dramatically...
    Do we need or is suggested to have in a way or another metadata tables describing supported form fields, datatypes, etc?
    Other things to take into account:
    * simple and scalable solution, heh, ye, please.
    * what happens if the form evolve over time? the final solution must not crash or cause some kind of inconsistencies.
    * ..... others ..... ?
    Other info: we're using Oracle Database 10g, JDEV, JSF, ADF, Business Components.
    thanks for any help or comments
    Bruno

  • Need info about RH Server 6 and reports

    I'm interisted in RH Server 6 but I'm unable to locate much
    practical info about it on the Web site, and a call to sales didn't
    help. I need to know what I'm getting us into before I contribute
    our $2,000. Can anyone provide this information or point me to its
    location on the site:
    --I have system requirements from the Adobe site, but what is
    the "server" and what does installation and setup entail? About how
    how long does it take, or how difficult, to achieve operability?
    --According to a piece by John Daigle, the server component
    should be installed on a Windows server running IIS 5+. Is IIS a
    separate software or standart part of Windows server? If separate,
    what preparation should that server have before the installation in
    addition to installation of IIS?
    --I know nothing about security/firewall protocols. We will
    have our own and our customer firewalls to navigate. Are the server
    setup instructions adequate for setting all that up? Or are
    purchasers expected to have sys admins knowledgeable to set that
    up? Is that applied to the RH server or the Windows server? if RH
    server, how can I get a copy of instructions for my system people
    to review?
    --Have users found the RH server/RoboEngine reliable, once
    it's operable?
    --Is it true that the usage reports aren't customizable? Can
    additional usage data be specified in the RH server?
    --These report summaries are vague--Areas Requiing Help,
    Frequently Viewed Content--stating only that repoorts show the
    suchandsuch done "most frequently" or "most often." Does that mean
    the top 3, 5, 10 or what? Is there a way to track all of that
    activity from most to least?
    --The summaries of the reports Unanswered Questions and
    Frequently Asked Questions say that terms entered in the Search
    field are identified. Questions and terms aren't the same in my
    book--am I right that it captures anything entered? Can it do the
    same for the Index field?
    --I saw no RH server under downloads, or maybe missed it.
    Correct in guessing that a demo version is not available?
    --Is RH server user doc available on the web site? I found
    the Getting Started gude, which isn't much use in evaluating the
    product.
    I have additional questions, but if you can answer these
    questions or direct me to answers some of those may be covered.
    Thanks,
    Mike
    Access database.

    Hey, Mike!
    I found a few things for you. I'm in a hurry, so I'll list
    them quickly.
    For the Trial, go to the Adobe downloads page
    http://www.adobe.com/downloads/
    Then select RoboHelp Server 6 from the dropdown list. You
    will be asked to register (free) if you haven't already. When you
    arrive at the download page make sure you note the Trial Serial #
    To make it easier for you, its:
    1336-1033-2628-5062-0993-4570
    You can also find a RoboHelp Server 6 Getting Started Guide
    here
    http://www.adobe.com/support/robohelp/downloads/getting_started_rh6_server.pdf
    You were asking about IIS. Yes. As Colum says, this comes
    with virtually any version of Windows Server (or Windows XP
    Professional). However, you must install and configure it. I am not
    an IT or web administrator so it took me a while to learn, but
    amazingly I got it to work if you're patient and follow the steps.
    (I'm speaking of both IIS and Robohelp Server) Clearly IIS
    configuration is not a trivial thing and it is assumed that an
    author would have help and cooperation from the IT or Web Admin
    folks.
    As for customizing reports. At present, the existing reports
    are the only ones offered. Since these reports are generated from a
    database (Access, SQL Server or Oracle) I would think (haven't done
    it myself) that someone familiar with database adminstration could
    open the DB (after a backup that is) and be more creative with
    generating customized reports.
    You are right that the "Question" does in fact mean any
    search term or phrase that an end user puts in the search field.
    This is the string that is stored and reported as a question. In
    discussing this with the Adobe team at STC last month, they agreed
    that this was definitely a holdover from the legacy software and is
    due for a change sometime in the future.
    To answer your other question, text entered in the Index
    field is not stored in the database, only the search term field.
    Since taking on the old legacy product from eHelp and
    Macromedia, Adobe is focusing most of its attention on beefing up
    the client authoring app for the next version (Adobe RoboHelp 7).
    My assumption is that they are keen on improving the RoboHelp
    Server as well. I have passed along many feature requests along the
    lines you seem to suggest and hopefully the server will evolve
    along with the client app.
    Even with its limitations, my clients tell me RoboHelp Server
    provides very useful feedback to help them improve their knowledge
    base content to make it more helpful and responsive to users needs.
    They also like the searchability of PDF, Word, PPT and Excel as
    well...something which plain WebHelp without the RoboHelp Server
    does not do.
    I probably didn't get to everything, but hope this helps.
    John

  • Automatically add user to a specific database based on the users title

    Is there away to automatically distribute users to a database based on their title?  My organization has different quotas depending on your job title, so if you are an Outside sales rep you get a 2 GB mailbox, and if you are a Inside sales rep you
    get a 1GB mailbox.   

    You can do that with cmdlet extension scripting agent. You need to do some custom setup but there are some examples in below articles (specially part 3)
    Understanding the Scripting Agent
    Cmdlet Extension Agents (Part 1)
    Cmdlet Extension Agents (Part 2)
    Cmdlet Extension Agents (Part 3)

  • How to hide the Save Results Layout checkbox on the Create Saved Search pop

    I need to hide the Save Results Layout checkbox on the Create Saved Search popup. Can anyone tell me how to do it?
    This popup is used when the user is on a query (rendered by the af:query component) and they select click the "Save..." button. The have three options, Set as Default, Run Automatically, and Save Results Layout. I have an implementation that supports everything except saving the layout. So I need to hide that checkbox.
    Thanks,
    Mike

    For anybody else who needs to do this, here is how I did it.
    Add this to your css
    /* This hides the Save Results Layout checkbox on the Create Saved Search screen */
    span[id$='saveLayout'] {
    visibility: hidden;
    }

  • Saved search for Photo Stream not working in Mavericks

    I have a saved search for JPGs in my photo stream so I can easily access them via Finder instead of iPhoto. In Mavericks my saved search no longer sees my latest photo stream iPhone pics. Anyone else notice this? I can see them in iPhoto though. I've tried re-doing the search, etc, but it doesn't work. Any suggestions?

    Oh man, I've been beating my head on the desk trying to fix this. The only clue I have is that photos taken from iOS 7 (vs iOS 6) devices after about a week ago (wasn't there an OS X update recently?) don't show up in finder the same. When you dig through the "sub" folder to find the long-named folders with the photostream files in them, hit command+i and check out the "More Info:" section. The recent ones don't have anything in them (see http://d.pr/i/WKzR). Furthermore if you drill down to one of those folders containing such an image (see: http://d.pr/i/nIUP) and try to create a saved search from there it won't show up (see: http://d.pr/i/FOri).
    I even tried to create an automator to pull those images out, but when you're searching for a file in any of those new folders finder doesn't see anything.
    Not an answer for ya, just more confusion. Let me know if you get any bright ideas.
    -roccit

  • Need info on table: LATP_ENQ

    HI Experts,
    I need info related to the table LATP_ENQ.
    We create sales order in CRM, through some B-Docs order will be replicated in ECC.
    Entries are getting created in this table based on availability of the materials.
    Through Z-Transaction code, we delete entries in this table.
    Sometimes blank entries are getting created in this table, I would like to know in which scenario this table is getting updated.
    Regards,
    Swaraj

    Hi Swaraj
    As it is a Z transaction t.code and as you have deleted the table when we upgrade our ECC version then those blank tables have to be upgraded
    Regards
    Srinath

  • Need info on basics of SAP Business One

    Hi Gurus !
    I need info on basic stuffs for SAP business one 2007 . I tried searching in forums and help but was not able to gather good info...
    Request u to pls guide me on :
    1. What is SAP bsuiness one 2007 and how it is diff from ecc 6 etc ..?
    2. How it is benefical for small and mid size businesses ?
    3, How much is the Cost / licence  ? ( if it can be discussed here ! )
    4. How many users it can cater to ? I mean what is min and max suggeted ...
    Thx !

    Hi,
    You have too many questions in one posting.  There is a forum rule that one question per one thread.
    For your question 1, check this link:
    http://wiki.sdn.sap.com/wiki/display/B1/SAPBusinessOne
    Thanks,
    Gordon

  • Saved search issue with custom link

    Hi all,
    Generally we do have one opportunity search . But according to my requirement I have added one more opportunity search  for separate Opportunity type .
    I do have 2 different view configurations for regular search/result and newly added custom search/result.
    here the issue is with Archived Saved Search( those are saved in regular Opportunity Search)  is  not working properly when I am open custom Search and then open the saved Search( from Home Page) . Here again I need to open the regular opportunity Search and execute the Saved Search  then it is working.
    When I come out from custom search/result, then execute the Saved Search it is calling the configuration of Custom Search/result.
    here I need to destroy the custom configuration search/result when I come out or execute the saved search . already I tried the WD_DESTROY  method in Mainview set level. But it is not working .
    Regards.
    rama

    Solved my self.
    Below is the solution. Go to the Viewset implementation class ZL_BT111S_O_MAINVIEWSET_IMPL   and call the default configuration in method DO_CONFIG_DETERMINATION .
    CALL METHOD me->set_config_keys
       EXPORTING
         iv_object_type          = '<DEFAULT>'
         iv_object_sub_type      = '<DEFAULT>'
         iv_propagate_2_children = 'X'.
    regards,
    rama

  • Performance impact of Content based message search in IE

    Hello Experts,
    I am working on implementing Content based message search in IE in PI 7.0 and PI 7.1 landscape.
    All the configurations are done and its working fine in Development scenario.
    I need help in identifying , how this actually works on technical level as in how the messages are getting searched based on the filter criteria, if there is any table getting created in background and values are getting stored etc.
    And also how could this impact the overall performance after implementing it in Production system.
    Thanks in advance!
    Warm Regards,
    Lisin

    Hi Lisin
    Not sure about 7.0/1 but for 7.4 these are the tables.(most probably tables should be same)
    When you configure a filter for UDMS search on ABAP stack(Tcod: sxms_lms_conf)
    Entries will be created in the following backed ABAP tables. (you can go to se16 and check the entries).
    SXMS_LMS_EXTR
    SXMS_EXT_FIL
    SXMS_NSPREFIX
    Data will be stored in this table
    SXMSPDATA
    When you configure a UDMS filter in RWB(java stack), entries will be created in the following backend tables
    XI_AF_LMS_EXTRACTR
    XI_AF_LMS_FILTER
    Data will be stored in the table (only the message id, direction, key field,value and position)
    XI_AF_LMS_DATA
    We have UDMS configured in our production system, and i never saw any performance issue.
    Regards
    Osman

  • Change the appearance of a 'saved search stack' in dock

    Hi,
    I read a hint on Mac OS X Hints which I particularly like, allowing for a saved search in the dock to behave as a stack showing all recently used documents. See here for the original hint.
    The problem I have is that the icon of this stack is a drawer with papers in it. It looks really out of place next to my other stacks, so I would like to customise it. I have changed the icon of the entry in ~/Library/Saved Searches, but that doesn't get reflected in the dock. I have looked at ~/Library/Preferences/com.apple.dock.plist, but there is no reference to an icon in there that I could potentially change.
    How do I change the appearance of a 'saved search stack' in the dock!?
    thanks,
    Rob

    Donald
    I agree with you that this is not good design and only adds to the confusion of new users, not lessens it.
    It also makes more steps for experienced users.
    Still it is what it is. Personally I'm sticking with Snow Leopard. After all the anticipation I found Apple has screwed up Lion and it is looking like their version of Vista. A rearrangement of the deckchairs to distract you from the gaping hole in the side of the ship, and that the Shipping Company has decided they are switching to other businesses.
    Save a version is Save, and OSX handles all saves using versions you can step back through.
    Duplicate is Save as with an extra step inbetween where the file has another name that you need to change. btw also lacks a shortcut. Nice one Apple.
    Revert has always been there in OSX and was one of the few improvements in that it consistently lets you go back to your last saved version.
    Peter

Maybe you are looking for

  • Does the macbook have a screen cover that makes it so the person next you cannot see what you are doing?

    does the macbook have a screen cover that makes it so the person next you cannot see what you are doing?

  • FormsGraph: open HTTP connection failed

    I have the forms 9i demos installed and they work fine. However when I put my own form into the bigraph\forms directory and try to run it, the form itself runs but I have no chart. The implementation class is the same as in the FormsGraph demo. I hav

  • Accessing a Hana Database through a native iPad application

    Hi Guys, I was wondering if there was a way by which a connection can be established to retrieve data from a Hana Database through an iPad application . Our team has to build a POC (timelines are very crunchy, about 1 week to build it and get it up a

  • Ship to party queries

    Dear Experts, I had created a sale order with 3 line items. Line item 1    Material xxxx  qty 10      delivery date as 18th may          ship to party  a Line item 2    Material xxxx  qty 20      delivery date as 19h may           ship to party  b Li

  • Anyconnect 2.4.012 with Windows 8

    Has anyone had any luck getting the anyconnect client ver 2.4.012 to work inside of Windows 8. I have tried the registry hack that renames the adapter name, tried running as Administrator and compatability settings. Nothing works. Evertime I run it i