CTXCAT index problem: SUBSTRING_INDEX parameter doesn't work

Hi,
I need a help with ctxcat index on Oracle 10g. I need to improve searching using CTXCAT index. All is working quite well except SUBSTRING_INDEX parameter. I thought that following was necessary and sufficient:
EXEC ctx_ddl.create_preference('KEVFT_WL', 'BASIC_WORDLIST');
EXEC ctx_ddl.set_attribute('KEVFT_WL', 'substring_index', 'YES');
EXEC ctx_ddl.set_attribute('KEVFT_WL', 'prefix_index', 'YES');
EXEC ctx_ddl.set_attribute('KEVFT_WL', 'prefix_min_length', 1);
EXEC ctx_ddl.set_attribute('KEVFT_WL', 'prefix_max_length', 6);
This BASIC_WORDLIST preference set is used for index creation. But the problem is, that when I try to search using query:
SELECT * FROM TMP_FULLTEXT
WHERE CATSEARCH(fulltext, '%abc', null)> 0;
then I get no rows in results. Despite the fact that row with the text 'aabc' exists in the table.
Can anyone tell me what the problem is?
Thank you,
Julius Chrobak

With a catsearch query operator, the wildcard is an asterisk (*), not a percent sign (%) as with a contains query operator. However, even with the correct wildcard, left truncation is not supported with ctxcat. However, if you use a query template, then you can use the context grammar with the % wildcard for context grammar and left truncation is supported. Please see the demonstration below that reproduces the problem, then corrects it.
SCOTT@10gXE> SELECT * FROM v$version
  2  /
BANNER
Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
PL/SQL Release 10.2.0.1.0 - Production
CORE     10.2.0.1.0     Production
TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production
SCOTT@10gXE> CREATE TABLE tmp_fulltext (fulltext VARCHAR2 (30))
  2  /
Table created.
SCOTT@10gXE> INSERT ALL
  2  INTO tmp_fulltext VALUES ('aabc')
  3  INTO tmp_fulltext VALUES ('abcd')
  4  SELECT * FROM DUAL
  5  /
2 rows created.
SCOTT@10gXE> BEGIN
  2    ctx_ddl.create_preference ('KEVFT_WL', 'BASIC_WORDLIST');
  3    ctx_ddl.set_attribute      ('KEVFT_WL', 'substring_index',   'YES');
  4    ctx_ddl.set_attribute      ('KEVFT_WL', 'prefix_index',        'YES');
  5    ctx_ddl.set_attribute      ('KEVFT_WL', 'prefix_min_length', 1);
  6    ctx_ddl.set_attribute      ('KEVFT_WL', 'prefix_max_length', 6);
  7  END;
  8  /
PL/SQL procedure successfully completed.
SCOTT@10gXE> CREATE INDEX fulltext_idx ON tmp_fulltext (fulltext)
  2  INDEXTYPE IS CTXSYS.CTXCAT
  3  PARAMETERS ('WORDLIST KEVFT_WL')
  4  /
Index created.
SCOTT@10gXE> -- reproduction of original problem using wrong wildcard for catsearch:
SCOTT@10gXE> SELECT * FROM TMP_FULLTEXT
  2  WHERE CATSEARCH (fulltext, '%abc', null) > 0
  3  /
no rows selected
SCOTT@10gXE> SELECT * FROM TMP_FULLTEXT
  2  WHERE CATSEARCH (fulltext, 'abc%', null) > 0
  3  /
no rows selected
SCOTT@10gXE> -- left truncation not supported, even with correct wildcard:
SCOTT@10gXE> SELECT * FROM TMP_FULLTEXT
  2  WHERE CATSEARCH (fulltext, '*abc', null) > 0
  3  /
no rows selected
SCOTT@10gXE> SELECT * FROM TMP_FULLTEXT
  2  WHERE CATSEARCH (fulltext, 'abc*', null) > 0
  3  /
FULLTEXT
abcd
SCOTT@10gXE> -- query using template with context grammar:
SCOTT@10gXE> SELECT * FROM TMP_FULLTEXT
  2  WHERE CATSEARCH
  3            (fulltext,
  4             '<query>
  5             <textquery grammar="context">
  6               %abc
  7             </textquery>
  8              <query>',
  9             null) > 0
10  /
FULLTEXT
aabc
SCOTT@10gXE>

Similar Messages

  • Weird problem: apple-F doesn't work in Finder anymore!

    I've just noticed 2 really weird problems. When in Finder, hitting apple-F (to "Find") doesn't work - I see the File menu blink for a second but the window to search for files never comes up. Also (and perhaps related?), since the latest set of Apple upgrades, when I run iTunes, it doesn't see my library. The newest version runs, but never brings up its main window. The older version does bring out its window but my music doesn't appear there. What the heck is going on?!? Anyone have any suggestions? Thanks,
    Mike

    Well, first, the likely fix for your Command-F problem (and other problems you've probably been lucky enough not to stumble upon just yet) is to fix permissions. But you'll probably find you can't do that in the first place until you do the main fix discussed in that large thread.
    Join the crew.
    owen

  • LMS25 / Common Services 3.0 problem (dbpasswd.pl doesn't work)

    Hi.
    During CS3.0 installation I got an error:
    ERROR: Unable to Change password for DSN cmf
    ERROR: After install you can change the database password
    ERROR: by running /opt/CSCOpx/bin/dbpasswd.pl
    I tried to run /opt/CSCOpx/bin/dbpasswd.pl script, but got error again:
    bash-2.03# /opt/CSCOpx/bin/dbpasswd.pl all
    Please enter the new password for database cmf:
    Please enter the new password again for verification:
    INFO: Start changing password for database 'cmf'...
    Starting database engine cmfEng
    ld.so.1: perl: fatal: relocation error: file /opt/CSCOpx/objects/db/lib/libdblib9.so.1: symbol UnixForkProtection_Init: referenced symbol not found
    Killed
    I tried to set up LD_LIBRARY_PATH, tried to remove .profile, tried even to install solaris 8 from the scratch. It doesn't work even on fresh installation with 8_Recommended and all required Solaris patches. I tried also different installation disks with May 05 patches and without.
    ldd doesn't show anything strange:
    bash-2.03# ldd /opt/CSCOpx/objects/db/lib/libdblib9.so.1
    libdbtasks9.so.1 => /opt/CSCOpx/objects/db/lib/libdbtasks9.so.1
    librt.so.1 => /usr/lib/librt.so.1
    libnsl.so.1 => /usr/lib/libnsl.so.1
    libdl.so.1 => /usr/lib/libdl.so.1
    libc.so.1 => /usr/lib/libc.so.1
    libxnet.so.1 => /usr/lib/libxnet.so.1
    libm.so.1 => /usr/lib/libm.so.1
    libaio.so.1 => /usr/lib/libaio.so.1
    libmp.so.2 => /usr/lib/libmp.so.2
    /usr/platform/SUNW,Sun-Fire-V440/lib/libc_psr.so.1
    libsocket.so.1 => /usr/lib/libsocket.so.1
    bash-2.03#
    We have same LMS 2.5 on another server ( same model, same operating system, same patches) and it looks fine.
    Could somebody explain how to debug and solve this issue?

    Hi.
    Also /opt/CSCOpx/selftest/database.pl didn't work with same error message.
    I found the cause of problem. I have reproduced this error in test environment. The problem was in 8_Recommended patch cluster for Solaris 8. Patch cluster downloaded in September doesn't cause any errors, but after new patch cluster installing ( late October) CiscoWorks stops working. The reason for it is 109147-39 patch ( linker patch for Solaris). Older version 109147-37 doesn't cause an error in database manipulation. It is enough to run roll back this patch and 2 patches depended on it ( 108652-92, 108773-19). So command "patchrm 108652-92;patchrm 108773-19;patchrm 109147-39" solves the problem.

  • FileXtra4 problem - default folder doesn't work.

    Don't know why this doesn't work, but the default folder
    setting in the
    FileXtra open/save dialogues doesn't seem to work as
    advertised. My code
    goes like so:
    currentLevel = fxObj.fx_FileOpenDialog(the moviePath &
    "\Levels\","*.lvl","Load Level",False,True)
    the moviePath & "\Levels\"
    should be the correct folder, but instead, it always defaults
    to My
    Documents for some reason. (When running as a projector. In
    Authoring
    mode, it defaults to the moviePath, but ignores my
    sub-folder.) Either way,
    it never gets it right the first time. The second time and
    subsequent
    times, it always goes to wherever you last opened something,
    but the first
    time is always wrong. I did notice that the example in their
    documentation:
    put fxObj.fx_FileOpenDialog("C:\My Documents\", "Text
    Files/*.TXT","Choose a
    text file", True, True)
    does use My Documents as its default, but I've changed that,
    so it should be
    going to the folder I pointed it at.

    Without looking too deeply, I think I remember that, yes, it
    doesn't work.
    I usually end up using BuddyAPI for this.
    Craig
    "Darrel Hoffman" <[email protected]> wrote in message
    news:fm362a$ep7$[email protected]..
    > Don't know why this doesn't work, but the default folder
    setting in the
    > FileXtra open/save dialogues doesn't seem to work as
    advertised. My code
    > goes like so:
    >
    > currentLevel = fxObj.fx_FileOpenDialog(the moviePath
    > "\Levels\","*.lvl","Load Level",False,True)
    >
    > the moviePath & "\Levels\"
    > should be the correct folder, but instead, it always
    defaults to My
    > Documents for some reason. (When running as a projector.
    In Authoring
    > mode, it defaults to the moviePath, but ignores my
    sub-folder.) Either
    > way, it never gets it right the first time. The second
    time and
    > subsequent times, it always goes to wherever you last
    opened something,
    > but the first time is always wrong. I did notice that
    the example in
    > their documentation:
    >
    > put fxObj.fx_FileOpenDialog("C:\My Documents\", "Text
    Files/*.TXT","Choose
    > a text file", True, True)
    >
    > does use My Documents as its default, but I've changed
    that, so it should
    > be going to the folder I pointed it at.
    >

  • Problem with SN doesn't work

    Hello I format my computer but don't disable my SN for lightroom.
    And now it doesn't work.
    The information what i found is : ask an support. for disable the SN
    Thanks for your help
    PS: sorry for my english, I speak usually in french.

    I have got one word for you: Beta.
    SAFARI IS A BETA TESTING APPLICATION, NOT FOR GENERAL USE. Apple decided that they would pre-release Safari for Windows so as to openly test the product. IT IS NOT, I will repeat, NOT FOR GENERAL USE.
    So stop complaining and go back to FF for a few weeks while all of the muck gets sorted out, okay?

  • Guixt problem, sometimes it doesn't work

    Hi SDN.
    We use guixt on ESS screens in EP6 sp20.
    As far as I remember the ITS is on pacth22.
    My user experiense that sometimes guixt doesn't work, but just show the original screen. 5 minutes later it works again.
    Ofcource it cannot be reproduced but happens now and then
    Does anyone have a clue of what I should look for?
    Thanks in advance
    Peter

    Hi Peter,
    I would first download the latest version of guixt.dll and guixt.exe from synactive.com.
    Then I would test it again.
    Regards,
    ScriptMan

  • ExecuteWithParams with URL parameter doesn't work

    Hi!
    There are a lot of posts about executing VO with parameters, but I'm still stuck on it. I have a VO with WHERE condition like this:
    WHERE TABLE.ID = :IdParm
    I want this binded variable to get populated in jspx page by parameter in URL. I've created a binding for ExecuteWithParams in my pageDef like this:
    <action IterBinding="MyViewGIterator" id="ExecuteWithParams"
    InstanceName="AppModuleDataControl.MyViewG"
    DataControl="AppModuleDataControl" RequiresUpdateModel="true"
    Action="95">
    <NamedData NDName="IdParm" NDValue="${param.IdParm}"
    NDType="java.lang.String"/>
    </action>
    and an executable on this:
    <invokeAction Binds="ExecuteWithParams" id="callExecuteWithParams"
    Refresh="ifNeeded"/>
    so the executables in my pageDef look like this:
    <executables>
    <iterator id="MyViewGIterator" RangeSize="10"
    Binds="MyViewG" DataControl="AppModuleDataControl"/>
    <variableIterator id="variables">
    <variable Name="parameterURL" Type="String"
    DefaultValue="${param.IdParm}"/>
    </variableIterator>
    <invokeAction Binds="ExecuteWithParams" id="callExecuteWithParams"
    Refresh="ifNeeded"/>
    </executables>
    I have a variableIterator that is binded on outputText control on my jspx just to test if parameter gets read correctly and it does.
    What am I doing wrong that query doesn't execute correctly and I don't have any data on my page? I've also tried with refresh condition "Always" but it doesn't help.
    Any help would be much appreciated.
    BB
    Message was edited by:
    Brokenbone

    Hi,
    do the following:
    - In the pageDef file (Executable section), create a "Parameter". The name of this parameter is up to you.
    - the value of this parameter point to #{param.IdParm}
    - In the ExecuteWithParam OperationBinding, select the agument item and select the NDVaue. Open the ExpressionLanguage editor and select the Parameter you just created
    Here's a working pageDef file example:
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
                    version="10.1.3.41.57" id="RequestParamTestPageDef"
                    Package="adf.testcases.view.pageDefs">
      <parameters>
        <parameter id="param1" value="#{param.param1}"/>
      </parameters>
      <executables>
        <iterator id="DepartmentsVOWithBindVar1Iterator" RangeSize="10"
                  Binds="DepartmentsVOWithBindVar1"
                  DataControl="AppModuleDataControl"/>
        <invokeAction id="executeDepartments" Binds="ExecuteWithParams"/>
      </executables>
      <bindings>
        <table id="DepartmentsVOWithBindVar1"
               IterBinding="DepartmentsVOWithBindVar1Iterator">
          <AttrNames>
            <Item Value="DepartmentId"/>
            <Item Value="DepartmentName"/>
            <Item Value="ManagerId"/>
            <Item Value="LocationId"/>
          </AttrNames>
        </table>
        <action IterBinding="DepartmentsVOWithBindVar1Iterator"
                id="ExecuteWithParams"
                InstanceName="AppModuleDataControl.DepartmentsVOWithBindVar1"
                DataControl="AppModuleDataControl" RequiresUpdateModel="true"
                Action="95">
          <NamedData NDName="deptId" NDValue="${bindings.param1}"
                     NDType="oracle.jbo.domain.Number"/>
        </action>
      </bindings>
    </pageDefinition>Frank

  • Parameter gets reset and Multi-value parameter doesn't work

    Hi
    Two Issues:
    I've set the value of a Date parameter (Start Date) when moving from the home screen (Report 1) to the next screen (Report 2) as the first day of the current year (DateSerial(Year(Today),1,1). In report 2, if I try to change the Start Date to another date,
    it gets reset to the first day of the year. I had the default value set as the first day of the year and even after removing it, the Start Date gets reset.
    I've set a multi-value parameter (Area) in Report 1 that collects four integers. I pass Area to Report 2 (through Join (Parameters!Area.value,",")). I also used SPLIT (Join (Parameters!Area.value,","),",") to get the value.
    Then, in the data set, I call this parameter as "Select A1,A2,A3,B1,B2,B3 FROM TEST_VIEW WHERE ID IN (?)". But this query throws an error that the query could not be executed. I ran the same query on the server side and it runs fine.
    Note:
    We cannot reference parameter names as @area for example because the Composite Server doesn't allow that.
    Split and Join operate on strings but my parameters are of integer type. Is this an issue?
    Please help.

    1. Are setting an expression for available values of parameter in report 2? Is the value you pass a valid among the set of values?
    2. IN wont work with comma separated values. You need to parse the individual values out using a string parsing udf as a table and then join to that
    so in your case you would be like
    Select A1,A2,A3,B1,B2,B3 FROM TEST_VIEW t
    INNER JOIN dbo.ParseValues (@Area,',')f
    ON t.ID = f.Val
    ParseValues UDF can be found in below link
    http://visakhm.blogspot.in/2010/02/parsing-delimited-string.html
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Wireless problem - WEP password doesn't work - connection timed out

    The problems with leopard connecting to wireless networks is documented all over the forums
    But anyway, below is a solution from fred (Genius!!) it comes from
    http://forums.macrumors.com/archive/index.php/t-375266.html
    You have to do this through SAFARI (then for me camino worked perfectly as well)
    1. When you awaken Leopard you get the "None of your preferred networks are available" message.
    Cancel it.
    2. Ask Safari to open any page. It will, of course, hang with the message "You are not connected to the Internet."
    Click on the "Network Diagnostics..." button in the message box.
    3. You should get a dialog box titled "Network Diagnostics". The list of "locations" should have the name of your usual network setup highlighted in gray. All the network status signals down the left side will be red.
    Click on the "Continue" button in the dialog box.
    4. You should see a fresh Network Diagnostics box subtitled "Choose network port configuration"
    Click on the AirPort radio button.
    Then click on continue.
    5. The Network Diagnostics box should be refreshed. You should now see "Select AirPort network" as a subtitle, and one or more wireless network names listed.
    Click on your wireless network name (the one your AirPort knows).
    Click the Continue button.
    6. Type your password in the Password box in the next refresh. (No need for a $. Just your password.) (Don't bother checking the Remember password... box. It seems non-functional.)
    7. Click the Continue button.
    8. The Network Fairy awakens, makes all the status signals on the left green, turns on your wireless signal strength icon in the top bar, loads your Safari page, and leaves you with the message: "Your Internet connection appears to be working correctly."
    9. Beats me why the "other" WEP password entry process consistently fails.
    Fred

    I must have missed something the first time around with the G3....
    I changed the encryption to WPA/WPA2 Personal and all my Expresses AND my G3 iBooks all connect just fine. I still can't get my iPaq 2495b to connect however... It "sees" the router, but just wont connect. As I mentioned before, it does connect if unencrypted with no password, so the problem obviously lies with the password.
    The iPaq Authentication choices are: Open,Shared, WPA, and WPA-PSK. There is a second box for Data Encryption with choices of: WEP or TKIP.
    I have tried every combination, all to no avail. I have NOT tried stuff like inserting "$" signs, etc.
    Any ideas?

  • Count-parameter doesn't work

    Hi there,
    I'm currently developing against the ACS4 webservices andgot some problems with the count parameter.
    As you can see I added the element limit with start and count in the request-XML.
    "start" does exactly what it should do (acting as an offset) but "count" does nothing!
    Every time the XML is sent all resources are returned (when start is 0 of course)!
    I'm running ACS 4.0.3.
    The XML is sent to:
    http://...:8080/admin/QueryResourceItems
    Here is the XML:
    <?xml  version="1.0" encoding="UTF-8" standalone="no" ?>
    - <request action="get" auth="builtin" xmlns="http://ns.adobe.com/adept">
    <nonce>UGKxzD1ayVGqmnu169EOWg==</nonce>
    <expiration>2009-07-10T14:28:56+02:00</expiration>
    - <limit>
    <start>0</start>
    <count>30</count>
    </limit>
    <hmac>q+zuEPyqZoE3IW7Tdd6nFteXOsc=</hmac>
    </request>
    Does anybody see my mistake or is there an error somewhere else?
    Thanks in advance,
    Simon

    I assume you've since got this working. Here's a post for others with the same issue.
    We're using
    <request xmlns="http://ns.adobe.com/adept">
    <distributor>'.$distributor.'</distributor>
    '<nonce>'.base64_encode(mt_rand(20000000,30000000000)).'</nonce>
    <expiration>'.date("c", mktime() + 3600).'</expiration>
    <QueryResourceItems/>
           <limit>
                 <start>'.$start.'</start>
                 <count>30</count>
            </limit>
    </request>
    And limit works fine

  • A big problem: camera roll doesn't work

    I cannot use the default "camera" to take photo. When I press the "taking photo" button or "volume + " button, the "camera" app would turn off and as a result return to the background.
    I cannot really delete the photos in the camera roll as well. When I delete a photo in camera roll, it temporarily can. But when I close the "camera roll" and open again, the deleted photo appears again.
    I cannot use ("power button" + "home button") to capture the screen as the screen picture captured will not appear in the camera roll.
    I tried to turn the phone off and turn it on again, but the problem is still there.
    In the "setting" --> "General" --> "About my phone", under "video" and "photo" categories, Normally, they would display the numbers which states respectively how many videos and photos that I have in my camera roll. But now they both display "2,147,483,647".
    Before, I have connected the phone to the computer using USB wire in order to import the photos from the phone to the computer. I don't know whether this caused the problem.
    How can I fix it? Please help.
    Can restoration help? I used iCould to backup. Can I restore all the data and setting, including all the data in all the apps ?
    THANKS!!!!
    PS: I am using iPhone 4 and iOS 5.

    Your Camera Roll is corrupted. I don't know why or how, but if you can't delete any photos from it and it doesn't import photos via the cable about the only thing you can do is restore the phone.

  • "Fullscreen" parameter doesn't work when streaming from .qtl metafile.

    The Mac QT player functions properly with the following code, but the Windows QT player zooms in on the video instead of sizing it properly to fill the screen. Here's an example of my .qtl file:
    <?xml version="1.0"?>
    <?quicktime type="application/x-quicktime-media-link"?>
    <embed src="rtsp://myquicktimeserver.com/foldername/movie.mov" autoplay="true" fullscreen="full" quitwhendone="true" />
    I've seen the issue on multiple Windows PCs, so I'm sure its not localized to one installation. Any clues?
    Thanks!
      Windows XP Pro  

    well, it seems that i solved this problem by putting
    frame.show()
    before
    frame.setFulleScreenMode()
    and it now works... but why????

  • Time range parameter doesn't work in JRC

    Hi All,
    I have a optional parameter (BusinessHours) with time type in my report. In my selection formula I have a statment like:
    If HasValue({?BusineeHours}) Then
    // do something
    Else
    // do something else
    The report WORKS fine when running within report designer,but when I run it via web brower (JRC+Tomcat), it gives me an error:
    Exception in formula '{@Record Selection}' at 'HasValue': A number, currency amount, boolean, date, time, date-time, or string is expected here.
    The exception in tomcat console is:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Exception in formul
    a '{@Record Selection}' at 'HasValue':
    A number, currency amount, boolean, date, time, date-time, or string is expected
    here.---- Error code:-2147467259 Error code name:failed
            at com.businessobjects.reports.sdk.JRCCommunicationAdapter.a(Unknown Sou
    rce)
            at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unkno
    wn Source)
            at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
            at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unkno
    wn Source)
            at com.crystaldecisions.sdk.occa.report.application.ReportSource.getPage
    (Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource
    .getPage(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReport
    Source.getPage(Unknown Source)
            at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.ge
    tPage(Unknown Source)
            at com.crystaldecisions.report.web.event.ac.a(Unknown Source)
            at com.crystaldecisions.report.web.event.ac.a(Unknown Source)
            at com.crystaldecisions.report.web.event.b2.a(Unknown Source)
            at com.crystaldecisions.report.web.event.b7.broadcast(Unknown Source)
            at com.crystaldecisions.report.web.event.av.a(Unknown Source)
            at com.crystaldecisions.report.web.WorkflowController.do(Unknown Source)
            at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknow
    n Source)
            at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
            at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unkn
    own Source)
            at org.apache.jsp.CrystalReportViewer_jsp._jspService(CrystalReportViewe
    r_jsp.java:70)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
    .java:210)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:2
    95)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
    icationFilterChain.java:247)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
    ilterChain.java:193)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
    alve.java:256)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
    alve.java:191)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:
    2416)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
    ava:180)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatche
    rValve.java:171)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:641)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
    ava:172)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:641)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
    ve.java:174)
            at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContex
    t.invokeNext(StandardPipeline.java:643)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.jav
    a:480)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
            at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:22
    3)
            at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
    :601)
            at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.proce
    ssConnection(Http11Protocol.java:392)
            at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java
    :565)
            at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadP
    ool.java:619)
            at java.lang.Thread.run(Thread.java:534)
    Caused by: com.crystaldecisions.reports.formatter.formatter.c: Exception in form
    ula '{@Record Selection}' at 'HasValue':
    A number, currency amount, boolean, date, time, date-time, or string is expected
    here.
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.bv.<
    init>(Unknown Source)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.bv.i
    f(Unknown Source)
            at com.crystaldecisions.reports.formatter.formatter.e.l.<init>(Unknown S
    ource)
            at com.crystaldecisions.reports.formatter.formatter.e.p.<init>(Unknown S
    ource)
            at com.crystaldecisions.reports.formatter.formatter.e.p.a(Unknown Source
            at com.businessobjects.reports.sdk.b.b.a(Unknown Source)
            at com.businessobjects.reports.sdk.b.b.byte(Unknown Source)
            ... 54 more
    Caused by: com.crystaldecisions.reports.dataengine.be: Exception in formula '{@R
    ecord Selection}' at 'HasValue':
    A number, currency amount, boolean, date, time, date-time, or string is expected
    here.
            at com.crystaldecisions.reports.dataengine.m.if(Unknown Source)
            at com.crystaldecisions.reports.dataengine.m.a(Unknown Source)
            at com.crystaldecisions.reports.dataengine.m.a(Unknown Source)
            at com.crystaldecisions.reports.dataengine.bk.a(Unknown Source)
            ... 61 more
    Caused by: com.crystaldecisions.reports.formulas.FormulaException: Exception in
    formula '{@Record Selection}' at 'HasValue':
    A number, currency amount, boolean, date, time, date-time, or string is expected
    here.
            at com.crystaldecisions.reports.formulas.ab.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ab.do(Unknown Source)
            at com.crystaldecisions.reports.formulas.m.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.m.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.m.P(Unknown Source)
            at com.crystaldecisions.reports.formulas.m.m(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.f(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$14.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.o(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.p(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$13.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.s(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$12.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.h(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$11.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.c(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$10.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.l(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$9.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.i(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$8.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.n(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$7.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.t(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$6.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.d(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$5.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.u(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$4.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.b(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$3.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.q(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$2.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.k(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$1.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.g(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.j(Unknown Source)
            at com.crystaldecisions.reports.formulas.m.R(Unknown Source)
            at com.crystaldecisions.reports.formulas.m.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.m.P(Unknown Source)
            at com.crystaldecisions.reports.formulas.m.m(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.f(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$14.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.o(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.p(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$13.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.s(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$12.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.h(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$11.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.c(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$10.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.l(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$9.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.i(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$8.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.n(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$7.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.t(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$6.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.d(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$5.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.u(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$4.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.b(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$3.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.q(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$2.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.k(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag$1.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.g(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.j(Unknown Source)
            at com.crystaldecisions.reports.formulas.m.R(Unknown Source)
            at com.crystaldecisions.reports.formulas.m.do(Unknown Source)
            at com.crystaldecisions.reports.formulas.m.void(Unknown Source)
            at com.crystaldecisions.reports.formulas.ag.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.am.a(Unknown Source)
            at com.crystaldecisions.reports.formulas.FormulaInfo.do(Unknown Source)
            at com.crystaldecisions.reports.formulas.FormulaService.compile(Unknown
    Source)
            at com.crystaldecisions.reports.reportdefinition.fw.compile(Unknown Sour
    ce)
            at com.crystaldecisions.reports.reportdefinition.df.compile(Unknown Sour
    ce)
            at com.crystaldecisions.reports.reportdefinition.eq.else(Unknown Source)
            at com.crystaldecisions.reports.reportdefinition.eq.else(Unknown Source)
            at com.crystaldecisions.reports.reportdefinition.eq.else(Unknown Source)
            ... 65 more
    Caused by:
    com.crystaldecisions.reports.formatter.formatter.c: Exception in formula '{@Reco
    rd Selection}' at 'HasValue':
    A number, currency amount, boolean, date, time, date-time, or string is expected
    here.
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.bv.<
    init>(Unknown Source)
            at com.crystaldecisions.reports.formatter.formatter.objectformatter.bv.i
    f(Unknown Source)
            at com.crystaldecisions.reports.formatter.formatter.e.l.<init>(Unknown S
    ource)
            at com.crystaldecisions.reports.formatter.formatter.e.p.<init>(Unknown S
    ource)
            at com.crystaldecisions.reports.formatter.formatter.e.p.a(Unknown Source
            at com.businessobjects.reports.sdk.b.b.a(Unknown Source)
            at com.businessobjects.reports.sdk.b.b.byte(Unknown Source)
            at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unkno
    wn Source)
            at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
            at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unkno
    wn Source)
            at com.crystaldecisions.sdk.occa.report.application.ReportSource.getPage
    (Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.AdvancedReportSource
    .getPage(Unknown Source)
            at com.crystaldecisions.sdk.occa.report.application.NonDCPAdvancedReport
    Source.getPage(Unknown Source)
            at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.ge
    tPage(Unknown Source)
            at com.crystaldecisions.report.web.event.ac.a(Unknown Source)
            at com.crystaldecisions.report.web.event.ac.a(Unknown Source)
            at com.crystaldecisions.report.web.event.b2.a(Unknown Source)
            at com.crystaldecisions.report.web.event.b7.broadcast(Unknown Source)
            at com.crystaldecisions.report.web.event.av.a(Unknown Source)
            at com.crystaldecisions.report.web.WorkflowController.do(Unknown Source)
            at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknow
    n Source)
            at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
            at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unkn
    own Source)
            at org.apache.jsp.CrystalReportViewer_jsp._jspService(CrystalReportViewe
    r_jsp.java:70)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper
    .java:210)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:2
    95)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
            at org.apache.catalina
    Thanks,
    Dennis

    Current versions of the Java Reporting Component (JRC) do not support new Crystal Reports 2008 features like optional parameters.
    The next version of the JRC - Crystal Reports for Eclipse version 2 - will support Crystal Reports 2008 features.
    Sincerely,
    Ted Ueda

  • Big problem-iPod setup doesn't work

    I just got a replacement iPod cause my other one got jacked up, and everytime I try to set-up my iPod so my computer will recognize it, the setup restarts my computer to continue the setup and then when it comes back on, the set-up never continues. This didn't happen the past two times I had new iPods I don't get it!!

    Yeah I have had the exact same problem with all three of my ipods (have had to send it back twice for different problems). How I eventually get it to work is install Itunes without attaching the ipod (once it formats for windows and then re-starts again) and then go through the rest of the setup without it being attached. After the software is installed I use the updater which refomats the ipod and the Itunes usually recognizes the Ipod. It's so weird though as I just got my new one last night and I am going through this whole stupid thing again. My computer re-starts as soon as it beeps to signify the ipod being attached. Drives me insane! Don't know if that will help and we should not have to do this. I have had this problem from the moment I tried to install my first one.

  • LR Enfuse Problem - Batch Processing Doesn't work

    Hi,
    I'm relativley new to Lightroom - and am trying to learn about Enfusing multiple different exposures.
    I've followed all the instructions to the letter, and I'm able to enfuse great looking shots if I do them 1 group at a time. However, I've taken heaps of bracketed shots, and want to 'Batch Process' them.
    LR/Enfuse appears to have the functionality, and plenty of people online seem to be able to make it work. But even when I stack each bracketed shot, and select all. It still comes up with the error message below:
    "No Stacks
    No Stacks containing selected photos were found.  If you are trying to blend the selected images then please turn off the batch mode option."
    Any ideas? I'm using Lightroom 5.2
    Cheers, Thomas

    Hi,
    I am not sure what operating system you are using, I don't have any problems with Win 7 x64, but if you are using Apple OS there may be issues with permissions on the folders you are using e.g. the folder for temporary files.
    You may also want to look at his tutorial http://digital-photography-school.com/save-time-with-batch-exposure-blending but disregard the Auto Stacking explained as it is difficult to get it to work.
    I am not sure but it looks as though the stacks in the image you posted are expanded. Make sure the individual stacks are collapsed.
    Apart from that I just don't know as it works fine for me.

Maybe you are looking for

  • Duplex printing in Smartforms

    Hi, How do we use duplex mode printing in Smartfroms? I have tried "D" as print mode. Regards, Naba

  • Hi, how to convert pdf to xml

    hi, how to convert pdf to xml

  • Help in BADI Creation

    Hi I got solution from OSS to create the BADI MB_MIGO_BADI (method CHECK_HEADER) to check if the date in GOHEAD-BUDAT is greater than the system date (SY-DATLO). But i have tried this in Tcode Se18 where i write Badi Definition MB_MIGO_BADI but it gi

  • POP3 is not working in Exchange 2013

    Hi, Facing Wiered issue in Exchange 2013, POP3 is not working ... When configuring POP3 in outlook it failed to authenticate. unknown user name or bad password. [Error=ProxyNotAuthenticated Proxy=ZAJNBEXC03.cws.sasol.com:1995:SSL]" Amit

  • Emailing a link to a folder

    I was just trying to figure out how to send someone a link to a folder on a shared drive via email and thought I'd share my find. There were a few suggestions around, such as using afp:// or file:/// for a file, but nothing of those really worked wel