Issue with TableAdapter Configuration Wizard and CASE statements

I am having an issue with using any CASE statements in the select clause for the Table Adapter Configuration Wizard (TCW).  I can take any query without a CASE and it will run fine, but inserting any CASE statement in the Select such as:
SELECT
(CASE WHEN :ras_sort = 'D' THEN TO_CHAR(a.TRANS_DATE,'YYYYMMDD')
  WHEN :ras_sort = 'C' THEN  c.CLAIMDEP_NAME
  WHEN :ras_sort = 'A' THEN  TO_CHAR(a.ACCOUNT_NUMBER)
  END) sort1
FROM xxxx
causes the TCW to error with "error in list of function arguments, 'THEN' not recognized" and several other errors.  I have tried with and without parameters in the CASE and have tried both forms of the CASE statement.  I have tried multiple queries, all that run with no problem outside of TCW and ODP, but this seems to be a real issue
Is this a known problem and are there any workarounds that will allow use of the TCW?
Thanks,
Dave

Hi Ashish,
perhaps you launch the Web service wizard from the wrong location (i.e. not selecting the SEI you want to use). Did you strictly follow the steps described in the <a href="http://help.sap.com/saphelp_nwce10/helpdata/en/44/f36fa8fd1d41aae10000000a114a6b/frameset.htm">documentation</a> for creating the web service?

Similar Messages

  • I have been having issues with not receiving texts and voicemails daily, for a few months now. If I turn the phone completely off, when I turn it back on the messages will flood in from hours before. I can't be continually turning off my phone in case som

    I have been having issues with not receiving texts and voicemails daily, for a few months now. If I turn the phone completely off, when I turn it back on the messages will flood in from hours before. I can't be continually turning off my phone in case someone left me a message. How do I resolve this issue?

    Wifi:  my Cell phone will remember 10 wifi connections.  So delete any you don't use often and your home wifi and try to enter home wifi again.
    if it still won't connect to home wifi, call your internet provider for help.  You may need a newer router or different settings Or upgraded service.   Your phone seeks the best connection and will refuse lesser connections.
    last resort.  Backup the phone.  Do a full reset, then restore as new with the backup.
    if still not fixed, go back to apple and insist on repair or replacement.
    HOWEVER.   voicemail is not a wifi issue, it's a carrier function, which is why the SIM card is a suspect.

  • TableAdapter Configuration Wizard doesn't play nice w/explicit DataSource?

    I am having problems using the TableAdapter Configuration Wizard with a non-schema-owner account in a connection string that explicitly defines the data source. The following are the different combinations I've tried, some of which work, some of which do not:
    Scenario #1: If we define a connection string and specify the schema owner's username and password (which we do NOT want to do), and an explicit data source (which we DO want to do), such as the following:
    <add name="SchemaOwnerConnStr"
    connectionString="USER ID=THIS_SCHEMA_OWNER;PASSWORD=thisOwnerPassword;DATA SOURCE=(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = our.database.server.com)(PORT = 1521))(LOAD_BALANCE = yes)(CONNECT_DATA = (SERVER = DEDICATED)(SERVICE_NAME = the.service.name) ))"
    providerName="Oracle.DataAccess.Client" />
    ...then the TableAdapter Configuration Wizard works as expected:
    * I choose SchemaOwnerConnStr on the first screen of the Wizard
    * On the "Enter a SQL Statement" screen of the wizard, I can click on the "Advanced Options" button and mark the checkboxes for "Generate Insert, Update and Delete statements" and "Use optimiztic concurrency"
    * On the "Choose Methods to Generate" screen of the wizard, I can mark the "Create methods to send updates directly to the database" checkbox, so it will automatically create Insert, Update, and Delete methods for me.
    Scenario #2: If we define a connection string using Window's Authentication (which we DO want to do), and provide a TNS name (which we do NOT want to do) as the DataSource:
    <add name="MyTNSConnStr" connectionString="USER ID=/;DATA SOURCE=MyDB" providerName="Oracle.DataAccess.Client" />
    ...it works just fine:
    * I choose MyTNSConnStr on the first screen of the Wizard
    * On the "Enter a SQL Statement" screen of the wizard, I can click on the "Advanced Options" button and mark the checkboxes for "Generate Insert, Update and Delete statements" and "Use optimiztic concurrency"
    * On the "Choose Methods to Generate" screen of the wizard, I can mark the "Create methods to send updates directly to the database" checkbox, so it will automatically create Insert, Update, and Delete methods for me.
    Scenario #3: If we define a connection string using Window's Authentication (which we DO want to do), and provide an explicit DataSource (which we DO want to do):
    <add name="MyExplicitConnStr" connectionString="USER ID=/;DATA SOURCE=(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = our.database.server.com)(PORT = 1521))(LOAD_BALANCE = yes)(CONNECT_DATA = (SERVER = DEDICATED)(SERVICE_NAME = the.service.name) ))"
    providerName="Oracle.DataAccess.Client" />
    This does NOT work as expected:
    * I choose MyExplicitConnStr on the first screen of the Wizard
    * On the "Enter a SQL Statement" screen of the wizard, I can click on the "Advanced Options" button and mark the checkboxes for "Generate Insert, Update and Delete statements" and "Use optimiztic concurrency"
    * On the "Choose Methods to Generate" screen of the wizard, I can NOT mark the "Create methods to send updates directly to the database" checkbox -- it is greyed out!
    Scenario #4: If we define a connection string using a non-schema-owner's username and password (which under certain limited conditions we DO want to do), and provide an explicit DataSource (which we DO want to do):
    <add name="NonSchemaUser_ConnStr"
    connectionString="USER ID=OTHER_USERNAME;PASSWORD=thePassword;DATA SOURCE=(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = our.database.server.com)(PORT = 1521))(LOAD_BALANCE = yes)(CONNECT_DATA = (SERVER = DEDICATED)(SERVICE_NAME = the.service.name) ))"
    providerName="Oracle.DataAccess.Client" />
    This does NOT work as expected:
    * I choose NonSchemaUser_ConnStr on the first screen of the Wizard
    * On the "Enter a SQL Statement" screen of the wizard, I can click on the "Advanced Options" button and mark the checkboxes for "Generate Insert, Update and Delete statements" and "Use optimiztic concurrency"
    * On the "Choose Methods to Generate" screen of the wizard, I can NOT mark the "Create methods to send updates directly to the database" checkbox -- it is greyed out!
    Scenario #5: I use the exact same connection string as in Scenario #4, expect I change it to use the TNS name for the Data Source:
    <add name="NonSchemaUser_TnsConnStr"
    connectionString="USER ID=OTHER_USERNAME;PASSWORD=thePassword;DATA SOURCE=MyDb"
    providerName="Oracle.DataAccess.Client" />
    ...this DOES work:
    * I choose NonSchemaUser_TnsConnStr on the first screen of the Wizard
    * On the "Enter a SQL Statement" screen of the wizard, I can click on the "Advanced Options" button and mark the checkboxes for "Generate Insert, Update and Delete statements" and "Use optimiztic concurrency"
    * On the "Choose Methods to Generate" screen of the wizard, I CAN mark the "Create methods to send updates directly to the database" checkbox, so it will automatically create Insert, Update, and Delete methods for me.
    The ONLY difference between Scenario #4 and Scenario #5 is that for #5 I used the TNS name for the data source. The explict data source defined in Scenario #4 is an exact cut-and-paste out of my tnsnames.ora file for the definition of "MyDb" -- so there should be absolutely no difference between #4 and #5 -- yet with #4, the checkbox is greyed out.
    I can get the same inconsistent results if I do the WinAuth connection string with again the only difference being the Data Source (explicit, or TNS name). So the problem doesn't have anything to do with using the "/" authentication method.
    Summary:
    Schema Owner Username/Pass + Explicit Data Source ....... Works
    Schema Owner Username/Pass +TNS Name Data Source ....... Works
    Non-Schema-Owner Username/Pass + Explicit Data Source ....... Does NOT work
    Non-Schema-Owner Username/Pass + TNS Name Data Source ....... Works
    "/" authentication + Explicit Data Source ....... Does NOT work
    "/" authentication + TNS Name Data Source ....... Works
    The two combinations that don't work are the two that we want to use!
    I can't for the life if me figure out what is possibly "wrong" with the combination that isn't working. As I said above, the explicit data source that does NOT work is an exact copy of the definition for the TNS name that DOES work. They should be functionally identical.
    What am I missing here!?
    Thanks.

    hi Michael!
    hmmm. it might be worth checking to see if at least one of the recognition problems is a drive letter issue:
    http://docs.info.apple.com/article.html?artnum=93499
    keep us posted.
    love, b

  • TableAdapter Configuration Wizard Bind Commands

    I am trying to use the TableAdapter Configuration Wizard to bind Insert and Update strored procedures to a Select stored procedure. When I choose the select stored proc, the list of data columns should appear on the list but nothing happens (it's not searching or anything). The select stored procs takes no other params (exept the Out sys_cursor) and returns 7 columns (string, string, string, datetime, string, int32, int32) nothing fancy. I want to do this to associate Insert and update parameters to specific columns for datagrids updates.
    I am using:
    VS 2010 Pro sp1
    Oracle Developer Tool for vs 11.2.0.2.0
    Oracle client 11.2.0.2.0
    Oracle database 11.2.0.2.0
    ODP version 11.2.0.2.1
    Note: When I drag the stored proc on the dataset gui, I get all the columns.
    Any help would be greatly appreciated.
    Thank you

    Hi Fabs,
    According to your description, this issue is related to MYSQL. I am afraid this is out of our support. I would suggest that you could ask this issue in their official forum. Here is the link,
    http://forums.mysql.com/
    Thanks for your understanding.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Lenovo G560 - Issue with won't boot and black screen after HDD upgrade

    Lenovo G560 - Issue with won't boot and black screen after HDD upgrade.
     What happen: My laptop was working fine, no blue screen issue, no funny business at all. I bought a new SSD Intel 120 GB and thought it would be a good idea to replace the HDD. I shutdown and disconnected the power adapter, waited a couple of minutes and removed the battery. I opened up the back case and replaced the HDD. And put all the screws back and put the battery back in.
    Problem: The very first time I turned the power on, nothing happens besides a black screen. I pressed the dvd drive it works and opens up and closes. I waited for about 30 mins and still has blac screen. When I mean black screen, no bios menu, no logo, just a black screen with the fan sound on.
    I have tried these:
    1. Unplugged everything - battery, adapter, and pressed the power on button for about 60 seconds, nothing, the laptop turns on with the LED display on for both on and battery LED's. But nothing but black screen, no sound of windows loading just the fan and black screen.
    2. I tried putting back my old 2.5" and nothing but black screen.
    Thoughts and suggestions?
    Solved!
    Go to Solution.

    Hi Autoexit173,
    Welcome to Lenovo Community!
     As per the query we understood that you are facing issue with system not booting in your Lenovo G560 laptop.
    As you have mentioned that the system not booting, please try to remove the RAM and  turn on the system and check if you can hear any beep sound. Also try to clean the RAM slots and check for the issue.
    Click here for the steps to remove the RAM and refer page number 40.
    Hope this helps. Do post back if issue persists!
    Best regards,       
    Ashwin.S
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Issues with Adobe PSE 12 and Premier Elements 12 plus DiskWarrior 4.4

    Since upgrading to the final version of OS X 10.10 Yoesemite I have issues with Adobe PSE 12 and Premier Elements 12 plus DiskWarrior 4.4. I don't recall their being any issues while I went through the Beta testing process.  The Adobe products (PSE and PE) give me a configuration message "error 16" and it tells me to uninstall and reinstall. I have done this a few times/  It seems to go through the whole install process until the startup where it crashes.  I downloaded PSE 11 and at least it starts up but I haven't used it to do anything.  Also DiskWarrior 4.4 does not load up from the hard drive anymore (error message) and when I boot it up from disk is doesn't give me the option of correcting permission when repairing files and folders.
    At lease all of otheother software including Photoshop Lightroom 5.6 seem to be working.
    Very sad

    Barbara,
    Yes, I accessed the "updates" menu from the Help pull-down menu.  I also accessed the updates using the Mac Terminal application with results shown in my original post.  Regardless of whether I used the Help menu or the Mac Terminal app, the AAM tool still responded with:
    Update Failed
       Updates could not be applied
       The error log file may help you in identifying the problem.  The, try updating again.  If the problems persist, contact customer support for further assistance.
      The error log file read as follows:
       Photoshop Camera Raw 8.5
       There was an error installing this update. Please quit and try again later. Error Code: U44M1I210
       Looking at the the output of the Mac Terminal app, it shows:
       ... hdiutil: attach failed - no mountable file systems
       Is this relevant?
    Regarding your follow-up message pointing to:
    Update 12.1 installation errors | Photoshop Elements, Premiere Elements,
    the files referenced in this link are present, are correctly named, and they are in the correct locations, so it would appear that these issues are not related to the ACR 8.5 update problem
    Thanks

  • Are there any known issues with Adobe Edge Animate and Yosemite? Experiencing performance issues since upgrading OS

    Are there any known issues with Adobe Edge Animate and Yosemite? Experiencing performance issues since upgrading OS. Animation I was working on that had been performing in browser fine suddenly stopped working, and was not related to any action I had done at that point. Also was working in it today and program stopped responding to key board short cut commands.

    I am having a whole slew of odd interface problems with a fresh 2014.1.1 on a fresh macbook pro with latest Yosemite. Program locks up, cursor selections don't show, things disappear. I have a mac mini also and the program runs fine on it. Is there possibly something related to the solid state hard drive in new macs?

  • Issue with JMS inbound Adapter  and Asynchronous BPEL

    Hi Gurus,
    I am facing the below issue with JMS inbound Adapter and Asynchronous BPEL .
    I have 2 JMS Queues one inbound and one outbound . The Composite has multiple BPEL Components around 4 on an average and i have 4 composites similar to that .
    Totally 4 Composites * 4 BPEL Components = 16 Services
    Propoesd Solution :
    I have used MessageSelector in the JMS Adapter for selecting the incoming message. The BPEL gets invoked if the message selector is true and proceses the Message and writes the response to the other Queue.
    Initially i had no problems but intermittantly the BPEL processes are getting invoked but they are not processing the data ( Bpel process is supposed to invoke an external service and get the response in a sync call) and each BPEL processe instance is in running state for ever . This remains even if i restart the servers .
    The message gets read by the JMS Adapter , BPEL instace gets created but it wont proceed futher and remains in the runnign state for ever.
    If i redeploy the Composite then messages get processed but the issue creeps up again ( i tried to checl the logs but ino cluea about the issue .
    Getting frustrated day by day tried the bpel.config.transaction, increased the JMS Adapter threads , inreased the worker threads but all in vein..
    please let me know if any one has faced similar issue .
    Anticipating a quick response from the gurus.
    Lakshmi.

    We are also facing this issue in 11.1.1.5.
    Breifly the issue is : The BPEL process which polls an inbound JMSAdater ( consume_message) either stays in running state forever ( whatever we do) or go to the recovery queue. It doesnt recover even if i try to recover it. This happens intermittently. Redeploying the application / restarting servers sometime solve the issue but as know we cant do that on prod systems .
    Can some one look into this on priority and help us giving a solution/workaround.

  • Is there an issue with Safari in Iphones and Ipads where it does not recognize option disabled="disabled" tag properly?

    Greetings everybody,
    I have run into a peculiar problem with the Safari browser on mobile platforms (IPad, IPod, IPhone) which I hope I can find a solution for in this community.
    I just launched a new website where I sell products with certain variations, for example please view this link: http://www.finerribbon.com/aegean-single-face-satin-ribbon.html
    On this particular product, the product variants are supposed to work in such a way where:
    If you select the value "1/8" from the "Choose Ribbon Width" field
    THEN
    The only options active and available to choose from in the "Choose Roll Size" field should be: 500 Yds, 20 Yds & Sample Swatch
    Now, if we browse to the above link in Safari using a desktop or a laptop, there are no problems at all, but if we browse to the above link using an IPhone or an Ipad, then we have a problem where all the options are available regardless of the values chosen, basically the above functonality does not work.
    I was told that there an issue with Safari in Iphones and Ipads where it does not recognize option disabled="disabled" tag properly, is this true? Can anyone advise me if there is a solution to this problem? I would sincerely apperciate it.
    Thank you very much for your time and help!

    Hi...
    I have run into a peculiar problem with the Safari browser on mobile platforms (IPad, IPod, IPhone) which I hope I can find a solution for in this community.
    Now, if we browse to the above link in Safari using a desktop or a laptop, there are no problems at all, but if we browse to the above link using an IPhone or an Ipad, then we have a problem
    At the top of this window you'll see the following:
    Apple Support Communities > Mac OS & System Software > Safari > Discussions
    This the Safari forum for the Mac OS X.
    Better that you post your topic here  > Developer Forums: Apple Support Communities
    I do see on my iPad what you are rreferring to. But you shoudl get the feedback you need in the developer forum.

  • TS1398 I have the ipad retina display version - I have a BIG issue with this when out and about that on about 50% of the time will it see my HTC mobile WiFi hotspot - rebooting either, or both devices doesn't cure the problem it drives me MAD!!!!

    I have the ipad retina display version - I have a BIG issue with this when out and about, that only about 50% of the time will it see my HTC mobile WiFi hotspot - rebooting either, or both devices doesn't cure the problem it drives me MAD!!!!
    The HTC hotspot works fine with everything else I connect to it.
    Also - ipad will not connect to my HTC via bluetooth. Again, I can connect to everything else with my HTC other than my ipad.
    I have to say this is my first venture into Apple products and I have always wanted to get away from my windows based laptop to get a MacBook, the problems I have had (flash player etc) & continue to have (as above) are putting me right off swapping over. I HATE technology that doesn't work and my ipad has been hard work!

    I stated my ipad as being an ipad2, but I now think it is a 3??? It was new Jan this year and is the 64gb retina display version.
    I really would like to get to the bottom on this problem wit mobile hotspots as it is sitting on my desk next to me now and I cannot get it to connect to my HTC mobile hotspot!!!! It might be taking a flying lesson soon at this rate!!! Grrrrrrr...........

  • Sync issues with iPhone 6 Plus and iTunes

    I'm having issues with syncing my iPhone and iTunes.
    I am running: Mavericks 10.9.3 | iTunes 11.4 | iOS 8.0.2
    Every time I try to sync my iPhone 6 Plus with iTunes, the sync process gets stuck on step 5 of 5 (waiting for changes to be applied).  The longest this has occurred for is 2hrs.  After this time I have stopped the sync and ejected my iPhone.
    I had another issue with my phone when playing music.  When going to play music, I was given the error message saying that the song could not be found.  I connected my iPhone to iTunes and went to the tab in summery page, 'on this iPhone'.  I found the song and could see that next to the song was a small what looked like dotted grey circle.  After Googling this, I found a video saying that if i was to remove all my music and then add it again, this should fix the problem with this song.  I did this and this was when the issue occurred again.
    I unticked the option to remove all music but the sync did not finish. So I cancelled the sync, ejected my iPhone and tried again.  This time, the summery page of my iPhone said there was no music on my iPhone and the 'on this iPhone'  tab, this all so said there was no music however, my music was still on my iPhone including the song that would not play.  All played ok.
    I have read lots in the Apple forums about lost of difference reason this may be happening.  Things like bugs in iOS 8, app updates being transferred during the sync process, the latest iTunes version has bugs and even a dodgy USB cable could cause it.  My iPod running iOS 5 syncs all ok but I get this problem as well on my iPad Air.
    I all so had this issue with my old iPhone 4S.  The problem occurred when running iOS 7 and 8 on the 4S.  When I had it on the 4S, I did a restore of the 4S 4 times and thought I had found the issue down too a dodgy app.  However, now that it has happened on my new iPhone and still not using that app, could this be an issue with my Mac/iTunes?
    I am in contact with Apple Care, but this is such a long process. 
    So if anybody could please offer any advice on this or steps to try to maybe solve the issue, it would be really helpful.   Or if anybody is experiencing the same problem, it would be good to know its not just my devices and Mac producing this sync problem.
    I will update my post with any information provided by Apple Care as and when I get it.
    Thanks for reading and thanks for your time.
    Mark. 

    Hi,
    Just wanted to updated my original post and give some more information on this issue that I'm having with my iOS devices running iOS 8.0.2 and iTunes 11.4.
    Firstly I just want to updated my details about what version of Mavericks I'm running.  I'm running 10.9.5 - I put the wrong version down in my original post.
    So over the last week, I have had a few phone calls with Apple Care an am dealing with a senior technical advisor about this issue.
    I have been given some instructions that I am currently working through to see if it solves the sync issue with iTunes and my iOS devices. 
    The Apple Care advisor has pointed out that a iTunes version issue with music that I have ripped to iTunes and the current iTunes version could be what is causing the problem.  For example, every song that I have purchased from iTunes since having an account, I was told are all exactly the same the same when it comes down the to data/information about that track/album that iTunes stores with the music but when it comes to music that I have added to iTunes myself from a CD,  this was added and encoded with the version of iTunes that was running at the time of adding the music.  So going through all the music that I added to iTunes over the last 10 years, you can imaging that there was lots of mixed version of iTunes linked to lots of different music.
    At the moment, I'm having to go through all my music and find any that I have added and create a new ACC version of that music and delete the old version.  However, due to the amount of music that I have, this is going to take a long time.  When I was on the phone to the Apple Care advisor, we did several albums as a test and they all synced over to my iPhone.  This may just have been luck though at that time.
    Now, I'm not saying that this will solve the problem that I have with the sync issue but I am going to try it and see how I get on.  The only down side to this fix as far as I can see at the moment, is  that when it's all done, I think I will have to fully restore all my iOS devices to get music on to them.
    I will of course updated this topic when I have got through all my music and tried to sync my iOS devices.
    Thank you all for your comments.

  • Issues with Bex query structures and Crystal Reports/Webi

    Hi experts,
    I'm having an issue with Bex Query structures and nulls. I've built a Crystal Report against a Bex query that uses a Bex Query structure. The structure looks like the following
    Budget $
    Budget %
    Actual $
    Actual %
    Budget YTD
    etc
    if I drag the structure into the Crystal Report detail section with a key figure it displays like this
    Budget $     <null>
    Budget %     <null>
    Actual $     300
    Actual %     85
    Budget YTD     250
    the null values are displayed (and this is what is required). However if I filter using a Record selection or group on a profit centre then the nulls along with the associated structure component are not displayed.
    Actual $     300
    Actual %     85
    Budget YTD     250
    Webi is also behaving similarly. Can anyone explain why the above is happening and suggest a solution either on the Bex side of things or on the Crystal Reports side of things? I'm confused as to why nulls are displayed in the first example and not the second.
    Business Objects Edge 3.1 SP2
    SAP Int Kit SP2
    OS: Linux
    BW 701 Level 6
    Crystal Reports 2008 V1
    Thanks
    Keith

    Hi,
    Crystal Reports and Web Intelligence will only show data which is in the cube. You could have an actual 0 or Null entry whithout grouping but by changing the selection / grouping in the report the data does not include such entry anymore.
    ingo

  • HT1349 Has anyone had issues with the iphone 4s and facebook.

    Has anyone had issues with the iphone 4s and facebook. I have downloaded the app and sometimes it will let me log in and then it will log me out and not let me back in. I have deleted and downloaded it several times and nothing is working. HELP!

    @razmee: rather unhelpful.
    @tata - we're having the same trouble, and the only solution we've found doesn't fix it.
    1) uninstall
    2) login on PC/MAC and change password
    3) reboot iphone
    4) install facebook app, reboot again
    5) login from iphone. 
    No joy.
    Safari works, but not for the apps.
    Of course, it's Facebook that has to fix this.

  • Diff b/w IF/ENDIF and CASE statement?

    Hi all,
    Plz let me know the difference between IF and CASE statements.Which one is better to be used in general...and are there any specific situations where we have to go for CASE insted of IF.
    Rgds,
    Reddy.

    Hi,
    Case statement is good for performance wise because here we declare cases
    and according to these cases program will be executed.
    When we use if statement then the cursur goes to in the loop, when ever
    the loop is not complete till then the programme will not execute.
    Thats by in performance basis the case statement is good.
    Let me try and explain using an example...
    1) For IF statement...
    Suppost you have a variable color..and you are checking it against color names.
    then your code will be
    IF COLOR == 'BLUE'.
        statements
    ELSEIF COLOR == 'BLACK'.
        statements.
    ...and so on....
    ENDIF.
    But if you use CASE Statement
    CASE COLOR.
    when 'BLUE'.
       statements.
    when 'BLACK'.
      statements.
    so follows that CASE is easy to use and performance wise is also better.
    Regards,
    Priyanka.

  • My wife has issues with her AOL email and was told to contact Apple about a virus scan. Has anyone else had a similar issue?

    My wife has issues with her AOL email and a tech rep told her to contact Apple for a virus scan. Has anyone else had a problem like this?

    You forgot to describe the 'issues' but there are no viruses that affect Apple OS X.
    You may find this User Tip on Viruses, Trojan Detection and Removal, as well as general Internet Security and Privacy, useful:
    https://discussions.apple.com/docs/DOC-2435
    The User Tip (which you are welcome to print out and retain for future reference) seeks to offer some guidance on the main security threats and how to avoid them
    Bear in mind that from April to December 2011 there were only 58 attempted security threats to the Mac - a mere fraction compared to Windows malware:
    http://www.f-secure.com/weblog/archives/00002300.html
    (I have ClamXav set to scan incoming emails, but nothing else.)

Maybe you are looking for

  • Font no longer legible in .pdfs: Please help!

    I have a question and I am not even sure I am asking in the correct forum, but I hope someone can either answer my question or direct me to right place.  For more than a year I have been creating documents in Office Publisher, saving them as a pdf fi

  • How do I enable Corel Clipbook in Firefox 26, it works in IE8 but not FF26?

    I am trying to get the Corel/Woodperfect utility CLIPBOOK (Version 16.0.0.427) to work in FF26. The utility is like windows clipboard but handles multiple entries and functions with most windows programs. It permits cut and paste between programs lik

  • Virtualize IE6 including Internet Explorer Developer Toolbar

    I tried to follow this thread http://forums.novell.com/novell-prod...h-plugins.html to virtualize IE6 including Internet Explorer Developer Toolbar As a result IE6 contains Internet Explorer Developer Toolbar button but it's not work on Win 7 machine

  • Compare two strings...

    Hi, I have something like this, where book.cost( ) is a string that already existes an pages is another string with the number the user inserts. And no, unfortunatly I cannot do it with integers... How can I copare the value of both? thanks if (book.

  • How to reinstall Lightroom for Creative Cloud from Application Manager

    Lightroom would not launch from the Lightroom icon, so I tried to locate Lightroom and start it start it from my list of programs. Seemed to be a problem and still wouldn't start. I then removed Lightroom from Control Panel by "Add, Remove Programs".