Unable to search for first record using the Preview tree

Post Author: TheBig1980s
CA Forum: General
Hello:
Users are unable to search for the first record in the Preview tab's tree.  The reason for this is because the first record is within the first page header of the report.  My guess is that, by design, Crystal takes the end user to whatever the first instance of the record iseven if that first record is in a page header.  That's not "good".  I want the user to be taken to the first record within the details of the reportnot within the page header.
I have suppressed the page header to not print on the first record by using OnFirstRecord.  But, I still get the same issue where end users cannot select the first record in the tree without being taken to the page header.  Very strange.
Can anybody think of any other ideas?
Thanks!
TheBig1980s

Thank you Dave Merchant and try67 for your responses. As per my previous post, I contacted the company re the catalogue and they have responded favourably. I'll include their response because it gives the reason for the search failure as document compression which you might find interesting. I'll await their new catalogue and see if they have fixed the problem.
Company response:
Thank you very much for your input.  And yes, you are correct, the compression we used for the current catalogue's PDF format does strip out text included in the catalogue.  We used the compression settings we did with the intention of minimising download time, however I take your point about including text for search purposes (which I also utilise when I'm scanning through PDFs).
We will actually be posting out our new catalogue next week and we'll release the new PDF version on the website at the same time.  I've asked our graphic designer to ensure that the PDF we use for the new catalogue includes searchable text.

Similar Messages

  • When I upgraded my iMac to Lion I can no longer connect the iPad 2 to WiFi.  It gives me a message unable to search for WiFi.  Before the upgrade to Lion it worked fine.  What gives?

    When I upgraded my iMac to Lion I can no longer connect the iPad 2 to WiFi.  It gives me a message unable to search for WiFi.  Before the upgrade to Lion it worked fine.  What gives?

    Could there be a setting I need to adjust in the iPad2?  When I try to turn on WiFi and enter the name of the WiFi that I have established, including the security type and the password, I get the message "Could not scan for wireless networks."  Is there a setting in iCloud or other location that needs to be changed?

  • Is there any way to search for a term using the Firefox search field, and have the results automatically open in a new tab?

    Is there any way to search for a term using the Firefox search field, and have the results automatically open in a new tab? When there was support for Google Toolbar, I was able to do this; now, whenever I want to search for something, I have to open a new tab to do it, and cut-and-paste my search into the search field in the new tab. I used to be able to highlight, drag, and drop something into the search field and have it automatically open in a new tab. This is enough for me to switch to Chrome . . .

    Set a preference to have searches from the Search Bar (upper right) automatically open all searches in a new tab
    #type '''about:config''' in the URL/Location/Address bar and press the Enter key
    #if you see a warning, accept it (promise to be careful)
    #Filter = '''browser.search.openintab'''
    #in the lower panel, double click the item (or right-click and choose "Toggle") to change the value to "true"
    #close the about:config tab and test
    #See:
    #*For help with opening/using about:config, also see: http://kb.mozillazine.org/About:config
    #*Also see: http://kb.mozillazine.org/About:config_entries (click on "Browser", scroll down to browser.search.openintab)
    '''Search Bar''': http://support.mozilla.com/en-US/kb/Search+bar
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    About Google toolbar............
    Google decided that they will no longer produce the Google Toolbar for Firefox 5 and newer version. It is best to move on to other alternatives than to try any "hacks" to the toolbar that may or may not perform in the future. Future versions of Google toolbar will only work with IE7-9. Google Toolbar is not available on any other browser, even Google's own browser.
    *http://googletoolbarhelp.blogspot.com/2011/07/update-on-google-toolbar-for-firefox.html
    *https://support.mozilla.com/en-US/kb/google-toolbar-not-compatible-firefox?s=google+toolbar&r=0&as=s
    *http://www.google.com/support/toolbar/bin/answer.py?answer=1342452&topic=15356%29
    *Google Toolbar 8 FAQ (IE only): https://www.google.com/support/toolbar/bin/answer.py?hl=en&answer=1111588
    '''''To access your Google Bookmarks visit''''' www.google.com/bookmarks.
    Alternatives:
    *http://kb.mozillazine.org/Using_Google_Toolbar_features_without_toolbars
    *https://addons.mozilla.org/en-US/firefox/addon/googlebar-lite/
    *https://addons.mozilla.org/en-US/firefox/addon/gbookmarks-google-bookmarks-fo/

  • Searching for a record using wildcard or specific

    I have a sql query region. It pulls in all possible fishermen in a given state. The report lists name, license type, license nbr.
    I have been using the following code which allows the users to enter a value in the P10_SEARCH_FIELD and return all rows where either the name, license type and/or license nbr contain all or part of P10_SEARCH_FIELD. This worked perfectly.
    I have now received a request from users to pull back only the record where the license_nbr is the exact of P10_SEARCH_FIELD.
    For example, there are over 100 records where the license number has '863' in it, however only one record where the license is exactly '863'. That is the only one that want to see returned. Yet, if they enter 'FISH' in the search field, they still wish to see all records where FISH is in name and/or license type.
    Is this possible?
    My code currently is:
    SELECT distinct
    "PERMITS"."LICENSE_NBR" "LICENSE_NBR",
    "PERMITS"."LICENSE_TYPE" "LICENSE_TYPE",
    "PERMITS"."PERMIT_ID" "PERMIT_ID",
    "PERMITS"."DEALER_FISH" "DEALER_FISH",
    "PARTICIPANTS"."CORPORATE_NAME" "CORPORATE_NAME",
    "PARTICIPANTS"."LAST_NAME" "last_name",
    "PARTICIPANTS"."FIRST_NAME" "First_name" ,
    "PARTICIPANTS"."PARTICIPANT_ID" "PARTICIPANT_ID",
    decode(permits.iss_agency,'0016','FED',null) Fed
    FROM
    "PERMITS", "PARTICIPANTS"
    where iss_agency = :F200_ISSUING_AGENCY and
    dealer_fish = 'CF' and "PERMITS"."STATUS" = 'ACTIVE' and
    "PERMITS"."PARTICIPANT_ID" = "PARTICIPANTS"."PARTICIPANT_ID"
    and
    instr(upper("PERMIT_ID"),upper(nvl(:P10_SEARCH_FIELD,"PERMIT_ID"))) > 0 or
    instr(upper("LAST_NAME"),upper(nvl(:P10_SEARCH_FIELD,"LAST_NAME"))) > 0 or
    instr(upper("FIRST_NAME"),upper(nvl(:P10_SEARCH_FIELD,"FIRST_NAME"))) > 0 or
    instr(upper("LICENSE_NBR"),upper(nvl(:P10_SEARCH_FIELD,"LICENSE_NBR"))) > 0 or
    instr(upper("LICENSE_TYPE"),upper(nvl(:P10_SEARCH_FIELD,"LICENSE_TYPE"))) > 0 or
    instr(upper("CORPORATE_NAME"),upper(nvl(:P10_SEARCH_FIELD,"CORPORATE_NAME"))) > 0
    order by participants.last_name, participants.first_name, participants.participant_id
    }

    Hi Karen,
    You can try just changing:
    instr(upper("LICENSE_NBR"),upper(nvl(:P10_SEARCH_FIELD,"LICENSE_NBR"))) > 0 orto
    "LICENSE_NBR" = :P10_SEARCH_FIELD orSo, this one is a direct match but all the others remain as wildcards
    Andy

  • Searching for a term using the Search tab in HTML Help doesn't find all relevant topics.

    I'm using the Search tab in the HTML Help window to search for a few words.  But those words are not being located within the topics.  For example, one of the words for which I am searching is Australian.  I can find the topic that contains that word using the Contents tab.  But the Search tab doesn't find it.  I have even tried copying the word from that topic into the Search box but it is not found.
    Is there a known bug in HTML Help search capabilities?

    Is this a stand alone CHM file or is it merged? If it is merged, does the word appear in the search in the CHM containing the topic is searched? I assume you've checked that your Stop List doesn't contain the word being searched?

  • Unable to search for photos in Spotlight.

    Some weeks ago, I inadvertently dragged my 'Pictures' folder into the desktop, and managed to replace it, but after that, (and after temporarily renaming it 'Images') I can no longer search for photos in Spotlight.
    Spotlight Preferences now recognises 'Images' and I'm unable to change it back to 'Pictures'.
    Any advice or solution would be greatly appreciated.

    Spotlight Preferences now recognises 'Images' and I'm unable to change it back to 'Pictures'.
    As I said before there is no "photo" file type, just a bunch of other kinds (tiff, jpeg, GIF, and maybe 20 other possible extensions) that are used for photos. I don't think Spotlight uses the term "Pictures", just "images". I have a "Pictures" folder but in Spotlight I just see "Images" in the search results, and "Images" is what is uses in the preferences.
    this doesn't explain why I'm unable to search for photo files using Spotlight.
    Make sure that the area containing your photos is not excluded from search by the privacy feature in Spotlight's preferences.
    Spotlight searches for text information. For example, I have lots of photos, but spotlight only find a single one since I don't use the word "photo" in any of my file names or folder names. The one file it finds has "Created by Adobe Photoshop" in the metadata - Spotlight is keying in on the word "photo". If I type in the word "Picture" it finds the Pictures folder, but doesn't list the contents since none of those have the word "Picture" in their names or text within the file.
    What exact search term are you entering into Spotlight? Are you sure that a file exists with that term in its name, or perhaps in text included within the file?

  • DB Adapter: Polling For New Records returns the First record multiple Times

    I Polling for New or Chnaged Records against DB2 on iSeries. The DB Adapter returns the first record from the Table multiple Times. If the Table has 5 records it displays the first record 5 times. I am using BPEL 10.1.3.1 Can anyone help me with this.

    Hi there,
    please check out the DBAdapter trouble-shooting guide:
    http://download-east.oracle.com/docs/cd/B31017_01/integrate.1013/b28994/app_trblshoot.htm#CIHFEHFA
    I am copying an entry from there into here:
    A.1.21 Some Queried Rows Appear Twice or Not at All in the Query Result
    Problem
    When you execute a query, you may get the correct number of rows, but some rows appear multiple times and others do not appear at all.
    This behavior is typically because the primary key is configured incorrectly. If the database adapter reads two different rows that it thinks are the same (for example, the same primary key), then it writes both rows into the same instance and the first row's values are overwritten by the second row's values.
    Solution
    Open Application Sources > TopLink > TopLink Mappings. In the Structure window, double-click PHONES. On the first page, you should see Primary Keys. Make sure that the correct columns are selected to make a unique constraint.
    Save and then edit the database partner link.
    Click Next to the end, and then click Finish and Close.
    Open your toplink_mappings.xml file. For the PHONES descriptor, you should see something like this:
    <primary-key-fields>
    <field>PHONES.ID1</field>
    <field>PHONES.ID2</field>
    </primary-key-fields>
    Thanks
    Steve

  • Mac mini Server 10.6  unable to search for files on the server from desktop.

    I'm running Mac mini Server 10.6 with 15 various Apple Mac desktops 10.4 / 10.6. The problem i'm having is that i'm unable to search for files on the server from any of the desktops. I have fixed permissions and rebooted. I can perfomr a search though command - F and spotlight from the server.
    Anyone have any ideas?

    I have a Mac mini server with Mac osx 10.6.8 installed --- I have a website {UNDER CONSTRUCTION} installed on it with a REGISTERED DOMAIN NAME belizeansworldwide.com -->[DNS service w/GoDaddy]  & DSL INTERNET service  w/VERIZON --- {My server is the ONLY DEVICE CONNECTED to my VERIZON DSL router/modem}
    When I enter my DOMAIN NAME or WAN IP # in my browser(s)--> Chrome OR Safari -- i get my Verizon modem
    set-up page-->{this incl the WAN IP# as I expected}----{NORMALLY I WOULD ACCESS MY Actiontec
    modem/router via 192.168.1.1} --- While in that webpage there's an option "shared files/folders"   & clicking on that option DISPLAYS MY WEBSITE --->  {"PORT FORWARDING DID NOT RESOLVE THAT"}
    My next attempt @ a solution was through my Server's SystemPreference>Sharing>Internet Sharing
    & this the Original Object of my post ===>  "MY SHARING PANEL DOES NOT INCLUDE THE OPTION
    FOR   'Internet Sharing' among the others like CD DVD, Remote Login,Remote Management, Bluetooth Sharing, etc.etc ---- Hope this additional info will help to clarify  &/or explain my problem
    Thanks, & best regards to you & yours

  • Search help for Web Dynpro using the SAP-search help

    Hi,
    I’m trying to create a generic search help for Web Dynpro using the SAP-search help. It should working so, that I construct a Web Dynpro-component, that gets the data of the search help from the SAP-system, interpreted it and creates the ui-elements and the needed context generic.
    The mapping between the Input field of the customerview and the right search help is to be made with an xml-file, which contains the information: name of the view, the input field, the search-help-name and the name of the field that will be returned.
    The xml-file is reading from a helper-class. That helper-class contains any information, witch need the search help-component as well as the customer-component.
    The initialization takes place in the method wdDoModify of the customer. The call of the search help from the customer should be implement with an Action, witch is bound to a Button(create dynamic in the helper-class behind the input field).
    In a second foot should be create a plugin for eclipse, witch insert the used files (search help component, helper class, …) in the project. In addition it should create the call in the customer generic.
    It would be great if someone can give me a feedback!

    Hi Mike,
    The BlanketAgreement.exe is a reference to the executable that will be created when you compile the solution you created in Part II - Part III. I think there is a mistake in the tutorial because it asks you to name the project 'Blanket' which means that by default the executable will be called Blanket.exe and not BlanketAgreement.exe. The tutorial also misses the step asking you to compile the Blanket project before you go on to create an installer. You should compile your Blanket project in Release mode before creating an installer. By compiling the project you'll get a Blanket.exe file in the bin folder of your Blanket project which you then need to add to the installer per the instructions.
    SAP do offer development courses in some areas and there is training material here on the SDN and on the SAP partner portal (and maybe the customer portal as well). Try searching this forum for 'training' or 'tutorial' and you should get a few links. There's also a development certification.
    Personally I'd recommend you give yourself a little project to work on and just get stuck in
    Kind Regards,
    Owen

  • HT4623 I have a white square in the middle of my apps screen, and I am unable to search for new apps.

    I am unable to search for new apps because I have a blank white square in the middle of the Apps screen.

    Have you tried a reset (different from just restarting)
    Hold down on both the Home button AND the Sleep/Wake button for about 10 seconds until you get to the black screen and see the Apple logo. Then let go of both buttons. This "reset" fixes a lot of weird iPad issues and might fix yours.
    Hope this helps!
    ~Joe

  • SQL Server Management Studio - Configuring the environment for first time use

    Hi
    I have recently switched my local 'My Documents' folder location to a network drive that I 'make available off line' to allow on-line/off-line work and synchronisation when I am working in and out of the office.
    When I load my SQL Server Management Studio 2005 I frequently get 'Microsoft SQL Server Management Studio is configuring the environment for first time use'.
    Management Studio  them loads and I can continue without problem.
    I am guessing it is trying to make reference to some settings file. Any ideas? I wonder if I can change/move these settings elsewhere to a local drive?
    Thanks

    Hi,
    There is bug report of this issue:
    http://connect.microsoft.com/SQLServer/feedback/details/126364/configuring-enviroment-for-the-first-time-every-time-in-ms-sql-server-management-express
    "SQL Server Management Studio Express saves the settings for the user in ...\Documents and Settings\<User Profile>\Local Settings\Application Data\Microsoft\Microsoft SQL Server\90\Tools\ShellSEM
    and in ...\Documents and Settings\<user profile>\Application Data\Microsoft\Microsoft SQL Server\90\Tools\ShellSEM
    if any of these files are not available or unusable, SSMSE will generate new ones."
    Hope this helps.
    BR,
    JoukoK

  • Want to insert a record using the updatable view object..

    Hi, i am trying to create a new record in my first page using the updatable entity..I set the form in creat mode by default so that it will show empty fields for the first time.It works but want to know the following details..
    1.Want to set default values to some fields ,so how do i override the create method and where(i mean the view object or entity).
    2) internally it is using update query but not insert to insert a new record.
    3) if it uses insert internally, how do i manipulate the insert statement at run time.
    Guys please share ur experience and knowledge with me.I am awaiting for ur help....
    thanks in advance..

    From my perspective, you basically have 2 issues going here, the back end (database) and the front end (web page).
    To simplify your life, test your overridden methods using the built-in tester. You can use it by right-clicking on your application module and selecting test. You can insert/update/delete rows in any updateable view object you have available in your data model. The only down-side is that you can't step through your code (so far as I've been able to determine, anyway).
    As for the web side, there's a commit action in the data control palette. You can drop that onto a page as a button. There's also some tricks you can play so it saves and commits on the same button click, but I don't recall how specifically you do that. I know I've found it searching in here though.

  • Master-Detail only shows the first record of the Master's data

    I have an ADF Master Table, Detail table. I use ExcuteWithParams on the Master Table. When executed from a button (Button has partial submit = true for button, Master Table has PartialTrigger on button, and Detail table has PartialTrigger on Master table and button), it works fine. However, I want to pass the parameters in pageFlowScope variables, and have the ExecuteWithParams invoked upon page load. When I try to do this, the Detail table only shows the first record of the Master's data, no mater what row is clicked on the Master table.
    Master table now has no PartialTrigger, and Detail table has PartialTrigger on Master table. In my pageDef, I used an invoke action as follows:
    <invokeAction Binds="ExecuteWithParams" id="invokeExecuteWithParams"
    Refresh="always"/>
    What am I missing? I am using verion 11.1.1.3. Any help would be much appreciated.
    Thanks,
    Jessica

    Yes, it works when I drag the data control as a master detail without filtering any data. I want the user to be able to set search criteria to filter the data in the master table (For example, only pull back data with a transaction date between :startdate and :enddate). I can get it to work if I execute from an executewithparams button on the page, but not if I want to invoke the executewithparams upon page load with the parameter set by pageflowscope variables.
    Thank you for responding.
    Jessica

  • Unable to search for words in a pdf document

    I am using Adobe Reader Ver 10.1.1 (All updates)
    I have a pdf document in which I am unable to search for words. No words in the document are found even though they do exist. If I copy a word from within the document and paste it into the search criteria then instead of getting the word that I copied, I get substitute characters and it can in fact find these characters as the word being searched.
    The document is a catalog and can be downloaded from the following URL.
    http://www.carbatec.com.au/getcatalogue?zenid=d1cuvbat0ois0g37r0r33vnah1
    I will appreciate any help as to why I cannot search for words in the document.

    Thank you Dave Merchant and try67 for your responses. As per my previous post, I contacted the company re the catalogue and they have responded favourably. I'll include their response because it gives the reason for the search failure as document compression which you might find interesting. I'll await their new catalogue and see if they have fixed the problem.
    Company response:
    Thank you very much for your input.  And yes, you are correct, the compression we used for the current catalogue's PDF format does strip out text included in the catalogue.  We used the compression settings we did with the intention of minimising download time, however I take your point about including text for search purposes (which I also utilise when I'm scanning through PDFs).
    We will actually be posting out our new catalogue next week and we'll release the new PDF version on the website at the same time.  I've asked our graphic designer to ensure that the PDF we use for the new catalogue includes searchable text.

  • The detailRegion is always forced to populate the first record from the Master region

    Hi fellow Spry enthusiasts,
    My question is in regards the undesirable data population of
    the regiondetail on initial load. I have 2 sections, one which is
    my master region (which goes out and retrieves a bunch of records),
    and a related detailregion which reacts based on the master.
    However, every time I initiate a query of the master region to
    retrieve records, the detail region also responds and automatically
    grabs the FIRST record of the master region (which is undesirable
    in my case because I do not want the detail region to react UNTIL I
    select a record in the master region). Let me know if this makes
    sense.
    Psuedo Code:
    var moveRequestor = new
    Spry.Data.XMLDataSet("cfc/QueryThatReturnsABunchOfEmployeeRecords")>
    <span spry:region="moveRequestor">
    {EM_ID}
    {NAME}
    <span spry:detailregion="moveRequestor">
    {EM_ID}
    {NAME}
    {PHONE}

    This question was posted a while ago, and was one of the
    search results that came up when I was looking for my own answer. I
    had a nearly identical question and answered it here:
    Disabling
    default linked region and detailregiondisply until click
    Hopefully it will help others too!

Maybe you are looking for

  • Decode Attachment in OutLook Express .dbx with MimeUtility?

    Hi boys, I want to extract an attachment (encoded in base64 format) from outlook express .dbx file. I construct 2 classes : - the first extract from dbx file the attachment data and write it to disk. - the second read from disk and decode with MimeUt

  • Can T61 run with ONLY external GPU (in dock)

    Hi all, I am one of those 'lucky; T61 owners with a defunct NVS140M video chipset.   I'm not sure exactly what happens to the chip when it fails, but I wonder whether it is just the same problem associated to PS3 Yellow Light of Death, i.e. the chip

  • Airport Extreme Base Station communications to Mac slow

    This morning my internet connection stopped/very slow.  Tests using speedtest: Mac connected directly to my modem the speed was 10m. Wireless through the Base Station the speed .3.  Wired connection through the base station the speed was 10m. I have

  • TOAD 8.5 with Oracle Instant Client 10: ORA-03134

    Hi, I have tried TOAD 8.5.0.50 and also TOra 1.3.16 to connect to the database via Oracle Instant Client 10, but I am restricted with this error message: "ORA-03134: Connections to this server version are no longer supported." Does anyone have any id

  • Running with the Classic...

    Is this a real big problem? I noticed the past week after running/biking with my Classic for the past eight months, that now when there is a song playing and I go to turn the volume up or scroll through my cover flow it interuptes the song that's pla