Please help me on this palindrome program

import java.io.*;
public class lab16b2
public static void main (String args[]) throws IOException
          BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
          boolean finished = false;
          clearScreen(31);
          do
               System.out.print("Enter a string  ===>>  ");
               Palindrome p = new Palindrome(input.readLine());       
               p.displayData();
               System.out.print("\nDo you wish to repeat this program [Y/N]?  ===>>  ");
               String repeat=input.readLine();
                boolean right=(repeat.equals("Y") || repeat.equals("yes")||repeat.equals("y")||repeat.equals("YES"));
                if (right)
                  System.out.println();
               else
               System.out.println();
                  finished = true;
          while (!finished);
     public static void clearScreen(int numberoflines)
            for(int i=0;i<numberoflines;i++)
                 System.out.println();
class Palindrome
   private String s1;          // stores original string entered at the keyboard
   private String s2;          // stores s1 with punctuation and spaces removed
   private boolean palindrome;
   private boolean almostPalindrome;
   private boolean isPal(String s)
        System.out.println("String:" + s1);
   s2=s1.toLowerCase();               
   int a=0;
    int b=s2.length()-1;
    while (a<b)
      if(s2.charAt(a) != s2.charAt(b))
        return false;
      a++;
      b--;
    return true;           
   private boolean isAlmostPal()
        s2=s1.toLowerCase();
   s2=s2.replaceAll("[^a-zA-Z0-9]+", "");     
    int a=0;
    int b=s2.length()-1;
    while (a<b)
      if(s2.charAt(a) != s2.charAt(b))
        return false;
      a++;
      b--;
   return true;
   public void checkData()
       if(isPal(s1)==true)
            almostPalindrome=false;
       else
     almostPalindrome=true;
   public Palindrome(String s)
        s1=s;
        s2="";
   public void displayData()
         if (isPal(s2))
      System.out.println("Palindrome: true");
    else
      System.out.println("Palindrome: false");
    if(isAlmostPal())
      System.out.println("Almost Palindrome: true");
    else
      System.out.println("Almost Palindrome: false");
The output is supposed to be:
Enter a string ===>> Racecar
String: Racecar
Palindrome: true
Almost Palindrome: false
Do you wish to repeat this program [Y/N]? ===>> y
Enter a string ===>> Aardvark
String: Aardvark
Palindrome: false
Almost Palindrome: false
Do you wish to repeat this program [Y/N]? ===>> y
Enter a string ===>> A man, a plan, a canal, Panama
String: A man, a plan, a canal, Panama
Palindrome: false
Almost Palindrome: true
Do you wish to repeat this program [Y/N]? ===>> n
While on the other hand, my output is:
Enter a string ===>> Racecar
String: Racecar
Palindrome: true
Almost Palindrome: true<--SUPPOSED TO BE FALSE
Do you wish to repeat this program [Y/N]? ===>> y
Enter a string ===>> Aardvark
String: Aardvark
Palindrome: false
Almost Palindrome: false
Do you wish to repeat this program [Y/N]? ===>> y
Enter a string ===>> A man, a plan, a canal, Panama
String: A man, a plan, a canal, Panama
Palindrome: false
Almost Palindrome: true
Do you wish to repeat this program [Y/N]? ===>> n
I don't know how to change it without altering the other palindromes. Help will be greatly appreciated!

Try this:
import java.io.*;
public class lab16b2 {
   public static void main (String args[]) throws IOException {  
      BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
      boolean finished = false;
      clearScreen(31);
      boolean right;
      do {
         System.out.print("Enter a string  ===>>  ");
         Palindrome p = new Palindrome(input.readLine());       
         p.displayData();
         System.out.print("\nDo you wish to repeat this program [Y/N]?  ===>>  ");
         String repeat = input.readLine();
         right = (repeat.equals("Y") || repeat.equals("yes")
               ||repeat.equals("y")||repeat.equals("YES"));
         System.out.println();
      } while(right);
   public static void clearScreen(int num) {
      for(int i=0; i < num; i++) System.out.println();
class Palindrome {
   private String data;
   public Palindrome(String s) {
          data = s;
      /** Returns true iff s is a palindrome. */
   private static boolean isPal(String s) {
      int a = 0;
      int b = s.length() - 1;
      while(a < b) {
         if(s.charAt(a) != s.charAt(b)) return false;
         a++;
         b--;
      return true;           
   public boolean isPalindrome() {
        return isPal(data.toLowerCase());
   public boolean isAlmostPal() {
      String toTest = data.toLowerCase().replaceAll("[^a-zA-Z0-9]+", "");
      return !isPalindrome() && isPal(toTest);
   public void displayData() {
      System.out.println("Palindrome: " + isPalindrome());
      System.out.println("Almost Palindrome: " + isAlmostPal());
}

Similar Messages

  • HT201487 i have a problem with xcode programming app when i lunch to it it asking me to enter my password and when i enter it the program show that it is wrong but am 100% sure it's wright so please help me with this issue thanks

    i have a problem with xcode programming app when i lunch to it it asking me to enter my password and when i enter it the program show that it is wrong but am 100% sure it's wright so please help me with this issue thanks

    That's not very intuitive
    Check your mail server setup (mail>preferences>accounts>) choose your MobileMe account and select Outgoing Mail Server (SMTP) dropdown box, select Edit SMTP server list, verify that each instance of the me server has a password, if there are more than one and you only have one account then delete the one without a password.

  • SoundFonts - small problem. Please help me because this is very important to

    Hello everyone. I have just upgraded from a SoundBlaster Audigy, to a SoundBlaster X-Fi Music edition.
    I have a collection of soundfonts which I used to use on my Audigy. They worked fine. Now that I'm using the X-Fi, they all work well, apart from one, and the one that doesn't work is my most used, most important soundfont.
    Description of problem:
    When I run my midi file, it starts playing the music using the new soundfont, but after about 0 seconds or so, the sound stops - even though the music is still playing. I then can occasionally hear a note or two, but its no longer playing properly. All my other soundfonts work perfectly, so I really dont understand why this one would cause troubles. They are all .SF2 files.
    Other Information:
    ) I am using "SoundFont Bank Manager" to load the soundfonts. They all work great apart from the main one I want to use. It worked fine on my Audigy. The Cache part says 7.3mb Used/ 229.8mb Free.
    2) I am on Windows XP Professional - Service pack 2.
    3) The rest of my computer is very powerful. Its a core2duo, 2gig of RAM, 320gig seagate barracuda hard dri've etc. Regularly defragged.
    4) I have the latest soundcard drivers (And direct X, video drivers, bios drivers, etc.).
    5) I have no other problems with the computer.
    6) My Midi program is Guitar Pro, which plays special midi files. It is set up properly, and it plays everything perfectly - using all my soundfonts, except the one I most want to use..
    Please help me get this working. It is very important to me, and I need to get it working as soon as possible. I'll keep searching this thread incase I need to give any more information.
    Thanks in advance.Message Edited by acrobat on 02-09-200705:0 AM

    Why do you have two threads dealing with the exact same issue. That makes it confusing and hard to follow your issue to help you.
    Who is your carrier, I asked in the other thread?
    Have you tried YOUR sim card in another device, what happens?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Please help me transform this C++ code to java code....

    guys...please help me transform this C++ code to java code....please try to explain the code..thanks
    [program]
    #include <stdio.h>
    #define ALIVE 1
    #define DEAD 0
    #define SZ 33
    int stschk (int ,int );
    main()
    int s[SZ][SZ], i, j;
    for (i=0; i<sz; i++ ) s[0] = DEAD;
    for (j=0; j<sz; j++ ) s[0][j] = DEAD;
    s[0][1] = ALIVE;
    for (i=0; i<sz-1; i++) {
    for ( j=1;j<sz;j++ ) {
    s[i][j] = stschk(s[i][j-1],s[i+1][j];
    if(s[i][j-1]==ALIVE) printf("*");
    else printf(" ");
    printf("\n");
    int stschk(int s1,int s2)
    if(((s1==DEAD)&&(s2==ALIVE))||
    ((s1==ALIVE)&&(s2==DEAD))) return ALIVE;
    else return DEAD;

    Being picky, that's not C++, that's C. Standard headers in C++ dont' have .h after them, loop variables are scoped with the for, you use constants rather than #defines, etc..
    C and C++ both don't initialise arrays by default; you'd have to write an initialiser to get it to zero out the array:
        int s[sz][sz] = {};gcc will insert a call to memset to zero the array.
    If the author was assuming that the array was zeroed out, there would be no point zeroing the first row and column.
    The code reads values which haven't been initialised. If you mark such values explicitly undefined, and change the program to report an error when undefined, then you get several cases where the program makes such report.
    So either it' s a primitive random number generator (some random number generators use uninitialised memory as a source of randomness), or it's buggy, or it's processing undefined data and throwing away the result. Either way, it cannot be directly be ported to Java if the undefined values (which are limited to a small area of the ouput) are significant.

  • Been stuck for over  a year, please help me do this

    so i have this laptop with 8gb ram and core i7 as well as 2 hdd (no raid).
    Now i heard about premiere (cs4) and my laptop is ready to take most of the advantage but the hard drive is the bootleneck.
    Basically, all i want is to do few cuts in a video that was filmed by sony hdr-sr11 camcoder in hd 1080 60i settings. Now i heard i need 3 hard drives etc, but at the moment, i only have 2.
    So is there anyway i can do simple cuts in premiere without losing any quality and slowdown in fps or is there any other software that can be better? I really don't want to lose any quality or fps with the g73jh-a2 asus laptop i have?
    i also have ati 5870 video card

    The lowest was 19mb, but was floating arond 30mb. Still that aint good..
    I can't afford the partition magic and i heard its not good to partition after installing windows. I am thinking of fresh install, but if there is a workaround, it would save me tons of time as not installing apps etc.
    For the setup
    1)Can i have the programs in secondary drive? What about just a game or 2?
    2)By projects, do you mean the videos that im going to edit?
    3)what is scratch?
    4) By media, do you mean videos im going to edit?
    Lastly, what about a bit of data? Like <50gb.. Pictures documents etc
    Like, truly anonymous
    Date: Fri, 30 Apr 2010 17:16:10 -0600
    From: [email protected]
    To: [email protected]
    Subject: been stuck for over  a year, please help me do this
    i did hdtune and was the os drive was 100mb-19mb in the end and the
    secondary one was 105-45~mbps
    Those figures are disturbing. For any reasonably modern 7200 RPM disk these figures should be around 120 - 60 MB/s. If it goes down to below 20, something is seriously wrong. Now that may be caused by your partitioning or something else, hard to discern from here, but these results are worrisome.
    Maybe Partition Magic can help you get rid of all these partitions, otherwise a complete reformat and fresh install of OS & programs is all that is left.
    Setup should be something like this:
    C: OS & programs & projects
    D: Pagefile, scratch and media
    It depends a bit on the nature of your projects, your workflow, but in general you set up your disks in such a way that disk accesses are spread over the available disks as much as possible.
    >

  • PLEASE HELP ME REGARDING THIS PROBLEM

    Hi friends,
    I got a step by step guide for BSP and followed the steps and successfully created the Program .But while Testing the BSP Application its showing normal
    " page cannot be displayed" error is coming .I checked whether server is working or not by ping on Server in command prompt . Its showing connection between my work machine and server succesfully.
    What may be the error.How to check our server port on which our program reside.
    Please help me in this regard.

    Hi Deepu,
        I am getting error while double clicking on
    BSP--> (ur namespace  folder)
    and suddenly sap is terminated.
    Detailed stack dump:
      7C59BC81:  KERNEL32.dll!  RaiseException + 86 bytes () // ?
    =>5B9CE4DC:  sapfront.dll!  ExitSapInstallCheck + 21948 bytes () // symbols not found
      7C34D5D2:   MSVCR71.dll!  __security_error_handler + 45 bytes () // symbols not found
      60DF113F:   wdttree.ocx!  DllUnregisterServer + 106810 bytes () // symbols not found
      60DD2D0E:   wdttree.ocx!  <no symbol> () // symbols not found
      60DC0D00:   wdttree.ocx!  <no symbol> () // symbols not found

  • Please help me in this error

    Hi all,
    I am new to solaris platform. I am using List template in my program. I wrote a makefile to compile this program. While compiling it is giving the following errors. I am struggling with this error for the past 3 days.
    errors
    "/opt/SUNWspro/SC5.0/include/CC/Cstd/rw/rwdispatch.h", line 63: Error: RWis_integral_type(int) already had a body defined.
    "/opt/SUNWspro/SC5.0/include/CC/Cstd/rw/rwdispatch.h", line 121: Error: Multiple declaration for _RWdispatch<int>.
    Anybody please help me in this regard. I will be thankful to you.
    My platform Forte Developer 6 update 2.
    Thanks
    venkat

    Get the latest patches for the compiler and see if that fixes the problem.
    http://developers.sun.com/prodtech/cc/downloads/patches/

  • I have a red vertical line on the right side of my screen and it will not go away tried restarting my computer and that didn't help at all, please help me with this problem it is kind of annoying

    I have a red vertical line on the right side of my screen and it will not go away tried restarting my computer and that didn't help at all, please help me with this problem it is kind of annoying

    If it's a thin 1 pixel wide vertical line it's highly likely it could be caused by a defective LCD.
    One quick basic way to check is to note the position of the line. Then go to System Preferences, Displays, and lower the resolution. If ther line moves it's on the video and the logic board or video card if fitted is likely to be defective. If the line stays in the same position it's likely to be an LCD fault. Either way to have it repaired you'll need to visit an Apple store or AASP.
    The worst offender for this problem is the Late 2006 17" iMac. FOC replacement of the LCD used to be covered by a quality program, but it's now ended.
    Steve

  • I have comcast internet. Now I cannot open any of my e-mails.Please help me correct this problem. Comast is not the problem.

    I upgraded to a newer version of firefox. My ISP is Comcast.
    I tried opening up my e-mails they will not open up.I contacted Comcast ,they told me there customers have no problems opening their e-mails.Please help me with this problem asap.
    The problem started after I upgraded to the higher version.
    Thank you,
    Arnold
    My phone is: 313 882-9785

    If it's a thin 1 pixel wide vertical line it's highly likely it could be caused by a defective LCD.
    One quick basic way to check is to note the position of the line. Then go to System Preferences, Displays, and lower the resolution. If ther line moves it's on the video and the logic board or video card if fitted is likely to be defective. If the line stays in the same position it's likely to be an LCD fault. Either way to have it repaired you'll need to visit an Apple store or AASP.
    The worst offender for this problem is the Late 2006 17" iMac. FOC replacement of the LCD used to be covered by a quality program, but it's now ended.
    Steve

  • Seniors please help me in this Report

    Hi Seniors,
    PLEASE HELP ME WITH THIS REPORT.
    I KNOW THE FUNTIONALITY OF THE REPORT AND I AM NOT ABLE TO PUT
    IT IN TO THE ABAP PROGRAM..
    REPORT NAME : CUMULATIVE   BILL
    FUNCTIONAL AND TECHNICAL SPECIFICATIONS
    SELECTION-SCREEN  FIELDS
    WERKS      -
    TABLE: EKPO---  PLANT
    LGORT       -
    TABLE: EKPO--- STORAGE LOCATION
    EBELN       -
    TABLE: EKPO…..   PURCHASING DOCUMENT NUMBER
    NOTE : FOR THIS EBELN NUMBER SELECTED IN THIS FIELD THE NEXT FIELD SHOULD BE  REACTED. MEANS FOR THE PURCHASING DOCUMENT SELECTED HOW MANY INVOICE ARE MADE SHOULD ONLY DISPLAY FOR THE BELOW FIELD.THE NEXT FIELD IS GIVEN BELOW.
    BELNR       -
    TABLE: RBKP---  Document number of an invoice document
    THE ABOVE FIELD BELNR SHOULD DIPLAY ON THE BASIS OF  NUMBER SELECTED IN EBELN.
    FUNTIONAL EXPLINATION : FOR A PARTICULAR PURCHASE ORDER(EBELN) HOW MANY INVOICES(BELNR) ARE MADE SHOULD BE DISPLAYED.
    OUTPUT SCREEN FIELDS
    TOP BOX SHOULD DISPLAY IN THIS FORMAT.
    PLANT       -WERKS-EKPO….                                   BILL NO:-XBLNR--
    PROJECT   -POST1---TABLE -PROJ……               DATE     : BUDAT--
    VENDOR   -NAME1-TABLE -LFA1…….               WO NO  :BELNR--
    ADDRESS -
    STREET—TABLE-ADRC--
    OUTPUT FIELDS IN THE FUNTIONAL SPEC….
    1)SLNO--2) DESCRIPTION-3) QTY UP TO PREVBILL---4) AMOUNT UPTO PREVIOUS BILL -5)CURRENT QUANTITY6)CURRENT RATE-7) CURRENT
    AMOUNT -
    8)CUMILATIVE QUANTITY----9)CUMILATIVE AMOUNT.
    THESE ARE THE FIELDS THAT SHOULD BE DISPLAYED IN THE OUTPUT IN A ROW…..
    ELOBORATING FIELDS RELATED TO THE OUTPUT SCREEN.
    1) DESCRIPTION :  TXZ01 ---EKPO
    2) QTY UPTO PREVIOUS BILL.-----
    3) AMOUNT UPTO PREVIOUS BILL---
    4) CURRENT QUANTITY –FIELD NAME : MENGE----- NOTE: THIS FIELD SHOULD GET THE QTYS OF THE PARTICULAR  INVOICE SELECTED IN THE SELECTION SCREEN THAT
    IS BELNR.
    5) CURRENT RATE------NETPR ---FOR THAT QTY MENTIONED IN WORK ORDER
    TABLE EKPO
    6) CURRENT AMOUNT------ MULTIPLYING THE PREVIOUS 2 FIELDS THAT IS CURRENT QUANITY AND CURRENT RATE (GIVE THIS FIELD CURRENT AMOUNT
    7) CUMULATIVE QUANTITY----- SHOULD BE DONE BY ADDING THE FIELDS
    QTY UPTO PREVIOUS BILL AND CURRENT QUANTITY .
    8) CUMILATIVE AMOUNT-----WE GET IT BY MULTIPLYING CURRENT RATE WITH CUMILATIVE QUANTITY.
    EXPLANATION FOR THE 2ND AND 3RD FIELDS
    2) QTY UP TO PREVIOUS BILL : SHOULD GIVE THE QTY ACCORDING TO THE SELECTION-SCREEN FIELD ….BELNR …IF BELNR IN THE SELECTION SCREEN CONTAINS 10 INVOICE FOR A PARTICULAR WORKORDER…EBELN
    SELECTED..
    AND WE SELECT ONE INVOICE FOR EXAMPLE 6TH INVOICE…….
    IT CONTAINS SOME MATERIALS AND QTY FOR THAT METERIALS …
    BUT IN THE FIELD OF QTY UP TO  PREVIOUS BILL THE QTY OF THE PREVIOUS INVOICE OF THAT PARTICULAR WO SHOULD BE DISPLAYED..
    THE  IS QTY OF THE PREVIOUS INVOICES OF 12345 = QTY UP TO PREVIOUS BILL + CURRENT QTY GIVES CUMILATIVE QTY FIELD…..
    OR
    ADDING OF 12345+6 = CUMULATIVE QTY – OF CURRENT QTY GIVES
    QTY UP TO PREVIOUS BILL.
    EITHER WAY WE CAN GET THE OUTPUT…….
    PLEASE HELP WITH THE ENTIRE  PROGRAM OR LOGIC……….
    PLEASE SEND ME THE CODING TO MY MAIL [email protected]

    Nalini,
    Take the step by step directions try to build  your program... if you find any difficulty in the middle just pose the question at that time.... every one will be ready to answer your questions....
    eg:
    take the first line...
    REPORT NAME : CUMULATIVE BILL
    design a report program with the above given name in se38...
    then second line.....
    SELECTION-SCREEN FIELDS
    WERKS -
    TABLE: EKPO--- PLANT
    LGORT -
    TABLE: EKPO--- STORAGE LOCATION
    EBELN -
    TABLE: EKPO….. PURCHASING DOCUMENT NUMBER
    build select-options: with the above mentioned 3 fields
    3rd direction.....
    NOTE : FOR THIS EBELN NUMBER SELECTED IN THIS FIELD THE NEXT FIELD SHOULD BE REACTED. MEANS FOR THE PURCHASING DOCUMENT SELECTED HOW MANY INVOICE ARE MADE SHOULD ONLY DISPLAY FOR THE BELOW FIELD.THE NEXT FIELD IS GIVEN BELOW.
    work accordingly....
    If you devide the spec like this... it would be easy for you to build the program...
    try it once... you can do it nalini....don't fear with that spec...
    gud luck nalini...

  • Please help! I have pixilated program windows and functions on my recent installation throughout all programs?

    Just installed my software on a new mac (second installation). The program functions and windows are all pixilated. I can't work with this! It needs to be crisp quality! There was no installation issues! Please help!

    version 10.10.3
    Adobe Creative Suite 6
    Design & Web Premium
    Please please please help me fix this!

  • Please help me translate this to english

    I am trying to create a class Savings Account, I have done it except this portion. I have been doing a hole bunch of diferent programs for the last 4 days and I know this is not hard I just cannot get it.Please help me translate this to easier terms. This is only part of a bigger program to help me learn inheritence. Any help would be appreciated.
    Add a public method for calculating interest. Call it "calcInterest". Have it take one parameter, an inter which represents the numberof months to calculate the interest for. This method should return a float, the result of the interest calculation. For example, if 30 months areentered as a parameter, then 2 and one/half years of interest on the balance are calculated and returned.

    I understand that, I should have been more specific, I need help with the math part,example, If when i write my main method i put in 5 percent interest , i have to figure this in with the calcInterest method, would it be interestAmount=months*(interest*what goes here)
    i have to change it to a percent would it be *.01?

  • I am not able to launch FF everytime i tr to open it, it says FF has to submit a crash report, i even tried doing that and the report was submitted too, but stiil FF did not start, and the problem still persists, please help me solve this issue in English

    Question
    I am not able to launch FF everytime i try to open it, it says FF has to submit a crash report,and restore yr tabs. I even tried doing that and the report was submitted too, but still FF did not start, and the problem still persists, please help me solve this issue
    '''(in English)'''

    Hi Danny,
    Per my understanding that you can't get the expect result by using the expression "=Count(Fields!TICKET_STATUS.Value=4) " to count the the TICKET_STATUS which value is 4, the result will returns the count of all the TICKET_STATUS values(206)
    but not 180, right?
    I have tested on my local environment and can reproduce the issue, the issue caused by you are using the count() function in the incorrect way, please modify the expression as below and have a test:
    =COUNT(IIF(Fields!TICKET_STATUS.Value=4 ,1,Nothing))
    or
    =SUM(IIF(Fields!TICKET_STATUS=4,1,0))
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Hello, i restored and updated my iphone 4 to the latest version of 5.1.1 and after that when i connect my mobile to i tunes all i see is a big rectangle and a apple logo on left and a small lock on right side please help me fix this problem.

    hello,
    i restored and updated my iphone 4 to the latest version of 5.1.1 and after that when i connect my mobile to i tunes all i see is a big rectangle and a apple logo on left and a small lock on right side please help me fix this problem.

    I sloved this issue by resting my phone from settings>general>reset>reset all settings...the problem will be fixed

  • I bought a movie the movie Godzilla 2014 recently but it didn't show up in my library. I went check the itunes store and it wants me to buy it again. Please help me with this problem.

    I just bought this movie "Godzilla 2014" but it won't show in my Movie Library. I closed my Itunes and put it back on again but still won't show up. I checked my purchased list and it shows that I recently bought the movie but when I checked the itunes store it wants to buy the movie again. Please help me with this right away Apple.

    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support: Contacting Apple for support and service - this includes
    international calling numbers..
    For Mac App Store: Apple - Support - Mac App Store.
    For iTunes: Apple - Support - iTunes.

Maybe you are looking for

  • VF03 Profitability Analysis - Cost not capture in profitability

    HI SAPFans, I'm facing difficulty on profitability analysis on VF03. The problem is, my cost of sales is not capture on Value fields tab (refer attachment). [vf03|[IMG]http://i303.photobucket.com/albums/nn133/kerisnagasostro/vf03.jpg[/IMG]] is there

  • Error Number 82 in QUOTA

    Hi All, I am trying to generate annual leave quota, and i have configured all the nodes pertaining to it. Like generation rule for quota rule selection and  base entitlements etc. While running the TM04 from pt60(RPTIME00), ia m getting the error in

  • Xperia Z2 preview sms

    Right, I purchased my Z2 today and I've been looking into getting the sms messages from the standard app to be previewed on the lock screen. All over the internet people are saying to look for the preview option and tick it under the in-app settings

  • Saved PDF file issue...

    Once I create a PDF and save it to a file, I can no longer delete it by right clicking on it. Keep getting an error message saying file is open in another program.  Have Adobe closed and still get the same thing.  Am using x pro on a Win 8 operating

  • T500 with 2 monitors?

    Hi all, I have a T500 that is in use with a docking station and 2 graphic adapters: - ATI Mobility Radeon HD 3650 (Driver: 8.752.4.0 -> Provider: ATI Technologies Inc. ) - Mobile Intel(R) 4 Series Express Chipset Family (Driver: 8.752.4.0 -> Provider