Relational operator LIKE is not supported.

Hi friends,
I am trying to write a routine in bw.  I am using LIKE pattern.
But it is giving the below error.
"E:Relational operator "LIKE" is not supported."

hi,
can you post your code and mention what do you want to achieve?
thanks
ec

Similar Messages

  • When I compose and send a mail, it gets placed in Outbox and I get a prompt stating something like "relating the message is not supported". Even if I compose a newest age, it says the vey same thing. I just cannot send any response through my mail account

    When I compose and send a mail, it gets placed in Outbox and I get a prompt stating something like "relating the message is not supported". Even if I compose a newest age, it says the vey same thing. I just cannot send any response through my mail account. Can anyone help with a solution?

    You haven't set up the SMTP (outgoing) mail server correctly. You probably didn't enter your user ID and password for the outgoing server. They are needed even though it says "optional".

  • Java SOAPClient RenderFormException error is: operation style: "rpc" not supported

    Hello,<br /><br />I am trying to get a simple command line test program to invoke the Adobe Form Server 7.0's AdobeFSService and generate a PDF. <br /><br />The following is the method code<br /><br />private static byte[] getPDF(byte[] inXML)throws RenderFormException, IOException {<br />          byte[] cContent =null;<br />          <br />//          Create a SOAPClient object<br />          SOAPClient formServer = new SOAPClient();<br />          String sEndPointURL="http://adobeformserver:8080/jboss-net/services/AdobeFSService";<br />//          Set the soap end point<br />          formServer.setSoapEndPoint(sEndPointURL);<br />//          Declare and populate local variables to pass to renderForm<br />          String sFormQuery = "test.xdp"; //Defines the form design to render<br />          String sFormPreference = "PDF"; //Defines the preference option<br />          String sContentRootURI = "http://adobeformserver:8080/myapp/Forms/xdp";<br />          String sTargetURL = "http://<AppServer>:<AppPort/LoanApp>/HandleData";<br />          String sApplicationWebRoot = "http://<AppServer:<AppPort>/LoanApp";<br />          <br />                    <br />          try{<br />//               Call renderForm<br />               IOutputContext myOutputContext = formServer.renderForm(<br />                         sFormQuery, //sFormQuery<br />                         sFormPreference, //sFormPreference<br />                         inXML, //cData,<br />                         "CacheEnabled=False",//sOptions<br />                         null,//sUserAgent,<br />                         null, //sApplicationWebRoot<br />                         null, //sTargetURL<br />                         sContentRootURI, //sContentRootURI<br />                         null //sBaseURL<br />               );<br /><br />               <br /><br />//               Create a byte array. Call the IOutputContext interface's<br />//               getOutputContext method<br />               cContent = myOutputContext.getOutputContent();<br /><br />               <br />          }<br />          catch(RenderFormException rf){<br />               System.out.println("RenderFormException error is: " + rf.getMessage());<br />          }<br />//          Catch a thrown exception<br />          catch (Exception ioEx)<br />          {<br />               System.out.println("Exception error is: " +ioEx.getMessage());<br />          }<br /><br />          return cContent;<br />     }<br /><br />I can generate the WSDL correctly when i hit the AdobeFSService,<br />but when I run this program, I get an error <br /><br />RenderFormException error is: operation style: "rpc" not supported<br /><br />Can somebody please give me some insight or suggestions<br /><br />Thanks,<br />Kevin

    Got it to work, There was a problem with the libs I used in the CLASSPATH.
    I then changed it to use libraries from JBoss 3.2.5's jaxrpc,saaj,..., the jars in the client dir, and Axis 1.4's libs
    Works like a charm.

  • I keep getting this error message "Your operating system does not support the 64-bit version of Silverlight" even though I have a 64 bit system?

    Netflix requires Microsoft Silverlight plug in to view their videos. Every time I try to load it I get the following error message...Your operating system does not support the 64-bit version of Silverlight. I have a 64bit system with Windows Vista Home Premium. Firefox 33.0 is installed.
    Any suggestions?

    Your User Agent: Mozilla/5.0 (Windows NT 6.0; '''WOW64'''; rv:33.0) Gecko/20100101 Firefox/33.0
    As said Firefox for Windows from mozilla.org is a 32-bit application. The WOW64 in UA means it is a 32-bit application on 64-bit Windows.
    Before you ask if there will be a Win64 version of Firefox. If all goes well the first phase of having Win64 for Release may be as early as Firefox 37.0
    https://wiki.mozilla.org/Firefox/win64

  • Getting error when installing OBIEE 11.1.1.6 "Operating system does not support IPV4".

    HI,
    I am trying to install OBIEE 11.1.1.6 on Windows 7 .
    Have created repository successfully ,using the RCU 11.1.1.6 and now tring to install
    OBI. I am getting the below error
    "Operating system does not support IPV4".
    Can anyone please suggest why i am getting this error or
    how should i get rid with this error??
    Manoj.

    Just in case check this Doc ID 1410233.1
    ~ http://cool-bi.com

  • Why do I get the message that my operating system is not supported?

    My computer is running Windows 7 - 64-bit. I have the latest softwear on both my iPhone and my iPad. I have installed Edge Inspect on these devices and have the Google Chrome edge inspect extension installed. I have been able to enter my passcodes for both devices in the Chrome extension. Why do I get the message that my operating system is not supported just yet?

    This is VERY interesting ... even though I got that strange message, once I linked my iPhone and my iPad to the Google extension, it worked! Whatever I display in Google Chrome automatically displays in the Edge Inspect app on the small devices. This is neat! The only problem that I can see is that Adobe needs to replace the error message with information about how to use the application.

  • Operation style: "rpc" not supported - HELP

    Hi all,
    i have written a web service with a method called createNews which has an int value in input and get a vector in output.
    when i invoke the methos call.invoke e i get the error : operation style: "rpc" not supported !
    The code of the JSP file from where i call the web service is:
    String qnameService = "NewsService";
    String qnamePort = "NewsEndPointIF";
    String BODY_NAMESPACE_VALUE = "urn:News";
    String ENCODING_STYLE_PROPERTY = "javax.xml.rpc.encodingstyle.namespace.uri";
    String NS_XSD = "http://www.w3.org/2001/XMLSchema";
    String URI_ENCODING = "http://schemas.xmlsoap.org/soap/encoding";
    String webServiceAddress = "http://localhost:8080/news-jaxrpc/news";
    // Vector contenente le News da visualizzare
    Vector news = new Vector();
    try {
    ServiceFactory factory = ServiceFactory.newInstance();
    Service service = factory.createService( new QName(qnameService));
    QName port = new QName (qnamePort);
    Call call = service.createCall(port);
    call.setTargetEndpointAddress(webServiceAddress);
    call.setProperty(Call.SOAPACTION_USE_PROPERTY, new Boolean(true));
    call.setProperty(Call.SOAPACTION_URI_PROPERTY,"");
    call.setProperty(ENCODING_STYLE_PROPERTY,URI_ENCODING);
    QName QNAME_TYPE_VECTOR = new QName(NS_XSD,"vector");
    QName QNAME_TYPE_INT = new QName(NS_XSD,"int");
    call.setReturnType(QNAME_TYPE_VECTOR);
    call.setOperationName(new QName(BODY_NAMESPACE_VALUE,"createNews"));
    call.addParameter("int_1",QNAME_TYPE_INT,ParameterMode.IN);
    Integer params[] = new Integer[1];
    params[0] = new Integer(10);
    news = (Vector)call.invoke(params);
    } catch (Exception e) {
    out.println(e.getMessage());
    COULD YOU HELP ME ?
    Cheers.
    Stefano

    Hi..
    well i am working with quite identical code...When i tried to run it via some editor (IntelliJ Idea) i also encountered the same problem but running it directly from command line worked for me...
    asant build
    asant run
    worked...so my guess is that just try calling this method in different ways..might be just the calling cliend should also has to be capable of RPC calls
    Ankur
    ps. Do tell if u get hold of the real problem

  • OWB 9.0.4 :SQL*Loader: Operator POSTMAPPING does not support

    Hi,
    While trying to poulate Analytical Workspace using WB_LOAD_OLAP_CUBE, I got the following validation error
    The analysis of the mapping is not successful under all supported languages and operating modes. Detail is as follows:
    SQL*Loader: Operator POSTMAPPING does not support SQL*Loader generation.
    ABAP: Operator AWPARAMS does not support ABAP generation.
    I dont know what that means. Your help will be appreciated. Do I need apply some post 9.2.0.3 patch?. If yes, please let me know the patch number if available.
    FYI: I am using Oracle9i with 9.2.0.3 patch
    Thanks
    Panneer

    Panneer,
    Does the regular process load from a flat file into a table? This would be implemented as SQL loader mapping... in which case a PL/SQL call cannot be implemented.
    What you could do:
    - Use an external table to read from the flat file.
    - Use the transformation in a process flow. I.e. you first execute the SQL loader mapping and then execute the transformation.
    Mark.

  • Inst-08072 operating system does not support ipv4

    While installing obiee 11g, I get "inst-08072 operating system does not support ipv4" error. I changed hosts file and defined a loopback adapter.
    But still it is not working. Do you have any supposal for the problem?

    what is your OS? which version of OBIEE are you trying to install? did you install loopback adapter? generally this will occur in 2 cases which i have seen personally, if the right  loopback adapter is not installed or not configured and hosts files is not configured properly. i would suggest you to re-visit them once again and see.
    you can also try to install loopback adapter from here https://technet.microsoft.com/en-us/library/cc708322(v=ws.10).aspx  for configuration follow this https://technet.microsoft.com/en-us/library/cc708341(v=ws.10).aspx 
    how does your hosts file look? can you paste the contents here for eg: xxx.xxx.xx.xxx hostname localhost

  • I have i phone 3g with 3.1.3 software today i update it with os 4 but now it is problem like SIM not supported, now what i do, how can i reistall my old version software

    I have i phone 3g with 3.1.3 software today i update it with os 4 but now it is problem like SIM not supported, now what i do, how can i reinstall my old version software

    Unfortunately, you cannot downgrade to the old iOS. 
    Although, you may find this article helpful.
    http://www.thedailybuggle.com/iphone-sim-card-not-supported/.

  • I am experiencing error while downloading Photoshop. It says that the operating system does not support photoshop

    i am experiencing error while downloading Photoshop. It says that the operating system does not support photoshop

    Since you have not provided any actual system info not told us what version of Photoshop, we can't really know what is going on.
    Mylenium

  • I cannot download illustrator because my operating system is not supported.

    I bought illustrator but when I started downloading it said my operating system was not supported. Is there a solution?

    Aside from upgrading your operating system, if you wish to see about returning the purchase, which you choose below will depend on which version you purchased....
    Creative Cloud support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html ( http://adobe.ly/19llvMN )
    Get chat help with orders, refunds, and exchanges (non-CC)
    http://helpx.adobe.com/x-productkb/global/service-b.html ( http://adobe.ly/1d3k3a5 )

  • I just purchased creative cloud, but my operating system does not support download. How can this be updated?

    I just purchased creative cloud, but my operating system does not support download. How can this be updated?

    Swelte82 what operating system are you using?  You will need to meet the minimum system requirements in order to install.  You can find the system requirements at System requirements | Creative Cloud.

  • Since installing maverick, my c cleaner program says my operating system is not supported

    Installed Maverick.  My cleasning program says my operating system is not supported.

    Hello,
    The CCleaner Program form Priform does not support OSX Mavericks.
    I personally feel that you do not need a 3RD party cleaning software on your apple computer, due to the fact that the computer performs these tasks automatically.
    here are some links to other Apple Discussions of the same topic:
    https://discussions.apple.com/message/22934635#22934635
    Thanks,
    Matt

  • I am getting lots of messages that say that my browser/operating system is not supported.  I am a Version 10.6.8.  Do I have to upgrade?  Does this cost money?

    I am getting lots of messages that say that my browser/operating system is not supported.  I am a Version 10.6.8.  Do I have to upgrade?  Does this cost money?

    1. No. You can switch to another browser, such as Firefox, instead.
    2. If your computer supports Yosemite, no. If it doesn’t but supports Lion, yes. If it doesn’t support either of them, it isn’t possible to upgrade.
    (120272)

Maybe you are looking for

  • Customer Support Portal to report problems is not working

    The Customer Support Portal at: https://www.adobe.com/cfusion/support/index.cfm?event=portal&loc=en_us Is not working. I called into installation help.  The person said he could not help me and I needed to report the problem through the Customer Supp

  • Ageing analysis in Accounts Payable

    I am doing AR ageing for open items for 30days, 60 days etc. based on document date in BEX. The value comes correct for the present date but if I want to take open item ageing say till November'05, no values are coming as some of the open items have

  • Is This Display A Virus or A Hack?

    It comes up on my display after i turn on my MacBook " Important Update" "Please run InstallMac compatibility test and updates for the upcoming Mac OS X. Click to proceed . I agree to set my search to searchbenny" Is this a Scam or What?

  • Spontaneous shut down

    I am not sure which forum to post this in, since I don't know if it is a hardware or software issue, not whether it is only with iBook, etc. My wife's ibook with 10.4.2 had a series of shutdowns, for no apparent reason the computer would just turn of

  • How to configure a Sun Type 7 Keyboard (Solaris 10 11/06)

    Hi. I bought a Sun Type 7 (UNIX) keyboard. I plugged it in and configured Xorg's kbd driver to use this kind of keyboard. The problem is that some keys, such as the 3 volume keys, the sleep key, the composite key, doesn't appear to work. In the offic