Validating Char. & Strings

Hello,
I am a novice programmer and my program does not check for strings and numeric characters. Below is my program, please give me some feedback, as soon as possible. Thanks a lot
Martin
import javax.swing.JOptionPane;
import java.text.DecimalFormat;
public class GradeWatch6{//start of class definition GradeWatch
     public static void main ( String args[] ) {//start of main method
          //string declarations
          String firstname="";
          String secondname;
          String studentid;
          String midtermgrade;
          String finalgrade;
          String listings="";
          String option;//variable used to receive user's option <-1>//<0>
          //character declarations
          char actualgrade;//letter grade assigned to total points earned
          char lettergrade=0;//assignment of a letter grade
          //integer declarations
          int loop=0;//(this will be converted fr. option//will compare result)
          int studentid_int;
          int midterm_grade=0;
          int final_grade=0;
          double midterm_gradevalue=0;//point calculations
          double final_gradevalue=0;//point calculations
          double total_gradevalue=0;//total points possible out of 100
          do
          //input dialogs (5)
          boolean firstnamecheck=true;
          while (firstnamecheck=false){
          firstname = JOptionPane.showInputDialog("Enter The Student's First Name: ");
          if (!Character.isLetter(firstname.charAt(0)))
               firstnamecheck=false;
          for (int j=1;j<firstname.length();j++)
               if (!Character.isDigit(firstname.charAt(j)))
                         firstnamecheck=false;
                         System.out.println(""+firstnamecheck);//printing on black screen
                         secondname= JOptionPane.showInputDialog ( "Invalid Entry!" );
          secondname = JOptionPane.showInputDialog("Enter The Student's Last Name: ");
          studentid = JOptionPane.showInputDialog("Student Id is the Student's Social Security Number.\nEnter The Student's ID #: ");
          studentid_int= Integer.parseInt(studentid);
          /*Validates student id so that it can only receive a 9 digit number,
          no negative values, and only alows integer input/
          while ( (studentid.length()!=9) ||(studentid_int<0) )
                    studentid= JOptionPane.showInputDialog ( "Invalid Entry! \n Student Id is the Student's Social Security Number.\nPlease Re-Enter Student Id: ");
                    studentid_int= Integer.parseInt(studentid);
          midtermgrade = JOptionPane.showInputDialog("This is worth 40% of Student's Grade.\nEnter Mid-term Grade: ");
          midterm_grade = Integer.parseInt( midtermgrade);
          while ( (midterm_grade < 0) || (midterm_grade > 100) )
                    midtermgrade=JOptionPane.showInputDialog ("Invalid Entry!\nA grade entered must be between (0-100).\nPleae Re-Enter Mid-term Grade: ");
                    midterm_grade = Integer.parseInt( midtermgrade);
          finalgrade = JOptionPane.showInputDialog("This is worth 60% of Student's Grade.\nEnter Final Grade:");
          final_grade= Integer.parseInt( finalgrade);
          while ( (final_grade<0) || (final_grade > 100) )
                    finalgrade= JOptionPane.showInputDialog ("Invalid Entry!\nA grade entered must be between (0-100).\nPleae Re-Enter the Final's Grade: ");
                    final_grade= Integer.parseInt( finalgrade);
          DecimalFormat twoDigits = new DecimalFormat( "0.00");
          //calculations for grades
               //midterm is worth 40% of grade
          midterm_gradevalue = midterm_grade * .4;
               //final is worth 60% of grade
          final_gradevalue = final_grade * .6;
               //calculates the final grade for the student in class
          total_gradevalue = midterm_gradevalue + final_gradevalue;
          //if else statement for grade allotment
          if (total_gradevalue>=90)
               lettergrade='A';
          else if (total_gradevalue>=80)
               lettergrade='B';
          else if (total_gradevalue>=70)
               lettergrade='C';     
          else if (total_gradevalue>=60)
               lettergrade='D';     
          else if (total_gradevalue>=50)
               lettergrade='F';          
          //Shows Output of Information Entered (5) of one student               
          JOptionPane.showMessageDialog
               (null, "Student: " + secondname + " , " + firstname +
                    "\nMid-Term Points Earned: " + midterm_gradevalue +
                    "\nFinal Points Earned: " + final_gradevalue +
                    "\nTotal Points Earned: " + total_gradevalue +
                    "\nGrade Assigned: "+ lettergrade,
                    "\n STUDENT ID #: " + studentid,
                    JOptionPane.PLAIN_MESSAGE);
          /*Askes user whether or not to input an additional student*/
          option = JOptionPane.showInputDialog("Enter < 0 > to input a student. \nEnter < -1 > to quit. ");
          //converts string input into integer loop     
          loop = Integer.parseInt( option );
     listings +="Student ID #: " + studentid +
               "\n [ " + secondname + ", " + firstname + " ] " +
               "\n Midterm Points Earned: " + midterm_gradevalue +
               "\n Final Points Earned: " + final_gradevalue +
               "\n Total Points Earned: " + total_gradevalue +
               "\n**********Grade Assigned: "+ lettergrade + "\n";
          } while ( loop !=-1);     
          JOptionPane.showMessageDialog(
               null, listings,
               "Class Results: ",
               JOptionPane.PLAIN_MESSAGE);
          System.exit ( 0 );
     }//end of programming method
}//end of class definition

You didn't indent your code, so that makes it hard to read, and there's a lot of it that has nothing to do with what your question might be. But you want feedback? Well you are "validating" the student's first name in a strange way. A letter followed by any characters that aren't digits -- for example, "a++?" would pass. And that validation will fail if an empty string is provided, because "charAt(0)" assumes there is at least one character. I would just check it isn't blank. And I would provide a meaningful error message. "Invalid Entry" is unhelpful as it doesn't tell the user what is wrong with the input.

Similar Messages

  • Is there anyway of validating a string so that it contains only char's

    is there anyway of validating a string so that it contains only char's,no special char's and no numaric values
    thanx in advance
    sudharshan

    It depends what you consider a long string. Running with various lengths I get the following results (Sun jvm 1.3.1, win NT 4):String length*iterations fixed as: 10000000      
    times totalled over 10 tests
    length  charAt  toCharArray   ratio
    1       8108    23798         293.51%
    2       6234    14000         224.57%
    4       5846    9045          154.72%
    8       5423    7608          140.29%
    16      5250    5719          108.93%
    32      5142    5249          102.08%
    64      5062    5000          98.78%
    128     5094    4875          95.70%
    256     5047    4797          95.05%
    512     5014    4782          95.37%
    1024    4923    4874          99.00%
    2048    5016    4766          95.02%
    4096    5015    4813          95.97%
    8192    5016    4843          96.55%
    16384   5000    4984          99.68%
    32768   5016    5141          102.49%
    65536   5232    5643          107.86%
    131072  5374    6266          116.60%
    262144  5703    12188         213.71%
    524288  5765    12313         213.58%
    1048576 5499    9141          166.23%
    2097152 4907    6906          140.74%
    4194304 4936    6220          126.01%
    8388608 4856    5972          122.98%So there does seem some advantange in using toCharArray for strings around 100 to 10000 characters long, which might imply that the charAt method isn't inlined in Sun's JVM. Most of the web pages recommending toCharArray run their benchmarks somewhere in this region.
    Pete

  • Bit char string...need help

    Hi I am trying to convert a bit char string to something useful.  Basically I have an activex tool that allows me acess to a serial port based scale.
    I send a weight request command and it sends me this gibberish:
    °®°° ìb ÇR
    Thank I try to do a tostring() and get this:
    \u00b0\u00ae\u00b0\u00b0, on line 1, column 21, is not a valid identifer name.
    Hmm.. anyone have to deal with bitchar strings coming from serioal ports or know what i am dealing with here?
    Thanks
    Frank

    Basically you need to access the string as a byte array - I think
    there's a method getBytes() that you can apply to a string.
    Mack

  • How can I get an unsigned char string with nulls from a dll into LabVIEW 6i?

    The following ethernet packet data is contained in an unsigned char * string returned from my dll (it's formatted on printing):
    Received A 230 Packet On Adapter 0x008F0070
    Ethernet Dest: 01.E0.BB.00.00.15 Src: 00.E0.BB.00.DD.CC Type: 0x8868
    000000: 01 E0 BB 00 00 15 00 E0 : BB 00 DD CC 88 68 48 41 .............hHA
    000010: 00 E0 BB 00 DD CC 80 B3 : 00 00 FF FF 00 02 00 01 ................
    000020: 01 00 F0 18 FF 7F 7F FF : FF 7F 7F FF FF 7F 7F FF ................etc., etc.
    However, when I read this string into LabVIEW 6i, I only get the following:
    01E0 BB
    Which is the data before the first NULL or 00 information. I found a "Remove Unprintable Chars.vi" but it
    just sees more data before the above string, nothing after, as seen here: 5C30 31E0 BB.
    Anybody have any suggestions for how to get the rest of the string? Is there something I can do to further reformat my dll? The dll I'm using is already a wrapper around another dll so I have some flexibility, but the bottom line is, the data I want is in the format of an unsigned char *.

    Excellent advice, this mostly works so I have some further questions:
    I am just reading network traffic off my ethernet card right now, but here is what I get using my C program to test:
    000000: 01 E0 BB 00 00 15 00 E0 : BB 00 DD CC 88 68 48 41 .............hHA
    000010: 00 E0 BB 00 DD CC 80 B3 : 00 00 FF FF 00 02 00 01 ................
    000020: 01 00 38 3C FF 7F 7F 7F : 7F 7F 7F FF FF 7F 7F FF ..8<............
    000030: FF 7F 7F FF FF 7F 7F FF : 7F 7F 7F FF FF FF FF FE ................
    000040: FE FF FF FF FF 7F 7F 7F : 7F 7E 7E 7F 7F 7E 7E FF .........~~..~~.
    000050: 7F 7F 7F 7F FF 7F 7F 7F : 7F 7F 7F FF FF 7F 7E 7F ..............~.
    000060: 7F 7F 7E 7F 7F 7E 7F FF : FF 7F FF FF FE FF FF FE ..~..~..........
    000070: FF FF FF FF FF 7F 7F FF : FF 7F 7F FF FF FF FF FF ................
    000080: FF 7F 7F FF FF 7F 7F FF : FF 7F 7F FF FF 7F 7F FF ................
    000090: FF 7F 7F 7F FF 7F 7F 7F : 7F 7F 7F FF FF 7F 7F FF ................
    0000A0: FF 7F 7F 7F 7F 7E 7E 7F : 7F 7F FF FF FF FF FF FF .....~~.........
    0000B0: FF FF 7F FF FF 7F 7F FF : 7F 7F 7F FF FF 7E 7F FF .............~..
    0000C0: FF FF 7F FF FF 7F 7F FF : 7F 7F 7F FF FF 7F 7F FF ................
    0000D0: FF 7F 7F FF FF 7F 7F 7F : 7F 7F 7F FF FF FF FF FE ................
    0000E0: FE FF FF FF 00 01 : ................
    And here is what I get using LabVIEW to call the dll:
    0015 00E0 BB00 DDCC 8868 4841 00E0 BB00 DDCC 80B3 0000 FFFF 0002 0001 0100 9600 7F7F 7F7E 7F7F 7F7F 7F7F 7F7F 7F7F 7F00 B405 4300 3300 0000 0000 0000 01E0 BB00 0015 00E0 BB00 DDCC 8868 4841 00E0 BB00 DDCC 80B3 0000 FFFF 0002 0001 0100 9600 7F7F 7F7E 7F7F 7F7F 7F7F 7F7F 7F7F 7F00 F405 1B04 0C04 0000 0000 0000 8000 0000 0000 0000 0800 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000
    The first thing I notice is that the first 4 bytes are chopped off, and after about 50 bytes, the data is corrupted until the sequence starts to repeat, but this time it starts with the missing 4 bytes and still corrupts after about 55 bytes.
    I am expecting the data in LabVIEW to look very similar to the C data because the network packets I am grabbing are pretty consistant, only a couple bytes will vary between them, not the number I am seeing in LabVIEW.
    Another side effect I'm seeing is that I can only run my labVIEW code once, if I try running it again it crashes with failures such as:
    memory could not be "read"
    For reference, I am opening and closing the network adapter inside the read function of my dll, but the pointer seems like it should be intact...
    Attachments:
    zListAdapters.vi ‏30 KB
    listAdapters.dll ‏201 KB
    Reading.dll ‏213 KB

  • Eliminating ###'s after hex reconversion to char string

    This is interesting.
    I was originally required to pass a segment to my subroutine. I had to do so using text literals. The   symbol is not recognizable by text literals. Therefore, I had to convert the entire string to hex.
    I then passed the hex segment to the subroutine, and reconverted it back to char string.
    After this I found a ton of unexpected # symbols in my segment. I tried doing a
    REPLACE '###' WITH '' INTO CHARSTRING.
    , but unsuccessfully. There is not much documentation on hex_to_char conversion, there are 2 FMs on 46, but I cannot get them to work. If anyone knows how to eliminate these unexpected # symbols please let me know.

    DATA: HEXSTRINGER(6000) TYPE 'X'.
    DATA: STRINGER(3000) TYPE 'C'.
    FIELD-SYMBOLS: <FSHEX>, <RECONVERT2>.
    CALL FUNCTION 'ARCHIVE_GET_NEXT_RECORD'
                   EXPORTING
                         ARCHIVE_HANDLE       = READ_HANDLE
                   IMPORTING
                         RECORD               = ARC_BUFFER-SEGMENT
                         RECORD_STRUCTURE     = ARC_BUFFER-RNAME
               MOVE ARC_BUFFER-SEGMENT TO SEGSTER.
               assign SEGSTER to <fsHEX> type 'X'.
               MOVE <fsHEX> to HEXSTRINGER.
    APPEND 'REPORT ZSUBR.' TO CODE.
    APPEND 'FORM DYN1 USING HEXSTRINGER.' TO CODE.
    APPEND 'DATA: SEGSTER2(3000) TYPE ''C''.' TO CODE.
    APPEND 'ASSIGN HEXSTRINGER TO <RECONVERT2> TYPE ''C'' .' TO CODE.
    APPEND 'MOVE <RECONVERT2> TO SEGSTER2.' TO CODE.
    APPEND 'WRITE:/ SEGSTER2.' TO CODE.
    APPEND 'ENDFORM.' TO CODE.
    I write out Segster2 and compare it to segster.
    I've done some variations of this where after I change the char string to hex string I replace 'C' with '7C' into hexstringer and then re-replace it in the subroutine, and then reconvert it to a char string- but actually I don't think that was a necessary step. I believe I can just convert it to hex, and then reconvert it back to hex in the subroutine.

  • Generate unique 10 char string

    Hi,
    i have to generate a unique 10 char string ( a string with length of 10 ) which has numbers and alphabets with no special characters, is there any code of doing it
    Ashish

    class UniqueString {
      private static final int NUM_CHARS = 10;
      private static int[] lastString = new int[NUM_CHARS];
      private static final String chars =
    "0123456789abcdefghijklmonpqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; 
      static String getUnique() {   
         char[] buf = new char[NUM_CHARS];   
         carry(lastString, buf.length-1);
         for(int i=0;i<buf.length;i++) {
           buf[i] = chars.charAt(lastString);
    return new String(buf);
    private static void carry(int[] ca, int index) {
    if(ca[index]==(chars.length()-1)) {
    ca[index]=0;
    carry(ca,--index);
    else ca[index]= ca[index]+1;
    public static void main(String[] args) {
    for(int i=0;i<10000;i++)
         System.out.println(UniqueString.getUnique());
    Guarenteed to be unique within one VM instance.
    matfud

  • One Char String - performance

    Hi-ya all
    Two questions, both performance related.
    1. What would be the fastest way to produce a one char string, is there anything faster than new String(char + "").
    2. What would be the fastest way to get an uppercase from a char, is there anything better than a switch and or set of if/elses, for example some sort of fiddle factor?
    thanks

    Character.toString(char)
    Character.toUpperCase(char)

  • How to replace mixed chars string

    Hi All,
    I want to replace mixed chars string from each row and want to replace with new string.
    Ex : The existing string might be in different cases like "Abc string", "abc string", "aBC string". I want to search for all these string types and want to replace with new string "Abc string".
    Could anyone give suggestions on this.
    Thanks,
    Prakash

    [url http://download.oracle.com/docs/cd/E11882_01/server.112/e26088/functions149.htm#i1305521]REGEXP_REPLACE supports case insensitive replacing.
    REGEXP_REPLACE(source_string,'abc string','Abc string',1,0,'i')The *'i'* specifies case insensitive replacing, so it will find all of "Abc string", "abc string", "aBC string" :-)

  • Char. strings w/o text elements will not be translated:

    Hi ,
    I have a few constants in my program.
    But when i declare them as
    text(12) type c value ' hello world',
    In the code inspector i encounter "Char. strings w/o text elements will not be translated:" error.
    Can somebody h

    Hi,
    Text elements are required for Translating purpose. You have declared a free string but haven't declared the corresponding text element for that string. Thus the error. Please double click on the string and create the text element to get rid of the error in code inspector. This is not a mandatory thing but should be done.
    Hope it helps.
    Regards,
    R

  • BI 7.0 Infoset query open problem: query_tech_name_Fxx is not a valid char.

    Our BASIS transport our BW 3.5 queries to BI 7.0 system.  We can open all queries on the BI 7.0 box without problem except Infoset queries.  The Infoset is composed of two ODSs and when openning it BI 7.0 query designer, can not see any design element in the panes of Rows, Columns, Free Char. and etc., instead the error msg shows (in between two dashed lines below):
    Terminate: query_technical_name_Fxx is not a valid characteristic for InfoProvider [A122(BRAIN)]
    Diagnosis
    Customer enhancement RSR00002 or the implementation of BAdI RSR_OLAB_BADI delivers query_technical_name_Fxx as the characteristic to be calculated. 1. is, however, not a valid key figure for InfoProvider .
    System Response
    The information from query_technical_name_Fxx is ignored.
    Procedure
    Check the exit.
    Procedure for System Administration
    We've checked the enhancement RSR00002 and it's components and find they are all the same as our BW 3.5 system.  query_technical_name_Fxx is Company Code InfoObj. in one ODS and it's one of the key to join these two InfoSets.
    Any idea?
    Thanks

    hi Kevin,
    check if helps following oss note
    Note 983449 - Termin A122 1COLUMN no valid characteristic of infoprovider
    Symptom
    Termination A 122 Brain occurs when you test and generate a query. The system does not recognise the characteristic 1COLUMN.
    Other terms
    Query, condition, COB_PRO
    Reason and Prerequisites
    This problem is caused by a program error.
    Solution
    SAP NetWeaver 2004s BI
               Import Support Package 10 for SAP NetWeaver 2004s BI (BI Patch 10 or SAPKW70010) into your BI system. The Support Package is available once Note 914304 "SAPBINews BI 7.0 Support Package 10", which describes this Support Package in more detail, has been released for customers.
    In urgent cases, you can implement the correction instructions.
    You must first implement Notes 932065, 935140, 948389, 964580 and 969846, which provide information about transaction SNOTE. Otherwise, problems and syntax errors may occur when you deimplement some notes.

  • How can I perform validation of String withing TableCell to get red outline

    I have two columns in a JTable, one is defined to be an Integer and one as a String, when they edit the Integer field add enter an non-integral value the DefaultCellEditor outlines the cell in red and prevents them leaving the cell until they have either entered a valid value or cancel the operation (by pressing 'Esc' on Windows).
    Where is this behaviour I cant find it in the Java source code, I want to replicate it for a String to do the same thing if the String does not match a regular expression. I have tried subclassing DefaultCellEditor, and and passing an InputVerifier to the text component used to in the construction of the editor degate, but this has had no effect. I also tried overiding stopCellEditing() this had the effect of preventing leaving the cell until they have entered a correct value, but it does not outline it in red
    public class ExcelRefCellEditor extends DefaultCellEditor
        public ExcelRefCellEditor(JTextField textfield)
            //@TODO seems to have no effect
            super(textfield);
            textfield.setInputVerifier(new ExcelRefInputVerifier());       
        public boolean stopCellEditing()
            if(!AQExcelRef.isValidForm((String)delegate.getCellEditorValue()))
                return false;
            else
                return delegate.stopCellEditing();
    class ExcelRefInputVerifier extends InputVerifier
        public boolean verify(JComponent input)
            return AQExcelRef.isValidForm(((JTextField)input).getText());
    class AQExcelRef implements Serializable
        public static boolean isValidForm(String cellRef)
            return cellRef.matches("[A-Z]+[1-9]+");
    tc.setCellEditor(new ExcelRefCellEditor(new JTextField()));

    Thanks that works perfectly
    But I would be interested to know how it it is done for Integer columns as I cant find any code to do this in the DefaultCellEditor, and I took a quick look at the plaf packages and suns internal packages as well.

  • Changing a char-string into decimal

    i have a problem:
    over my serial connection i just get strings in char but i need decimal numbers!
    can you help me!
    thx wiesi

    What do you mean "a normal number"? This is a number, 97, and it's inside an array. What do you expect this number to be? To extract it from the array you have various options, from using an index array function to using an auto indexed for loop.
    If your problem is with using the array, I suggest you read the LabVIEW user manual. Also, try searching this site and google for LabVIEW tutorials. Here is one you can start with. You can also contact your local NI office and join one of their courses.
    In addition, I suggest you read the LabVIEW style guide.
    Try to take over the world!

  • Looking for Regex library to generate valid/invalid String

    Hi-
    My project use MDA (domain object are specified from an XML file) and we generate the domain, transfer object, DAO, services and controllers, flex controller, flex services and flex .as files.
    Now we want to generate the Unit Test Case. Of course, we can't cover everything. What we can cover is most domain fields validation, such as length, max value, min value and perhaps regex matching.
    So, what I'm looking for is a library that allow me to generate a valid and invalid String based on a given Regex pattern. So far, I have found Google Xeger, which only allow me to generate valid String based on the Regex pattern. I'm also looking for a library that will allow me tpo generate invalid String for a given regex.
    Anyone know of such library. I really don't want to parse the Regex to come up with an invalid String (as I am not strong in Regex).

    T.PD wrote:
    915826 wrote:
    My project use MDA (domain object are specified from an XML file) and we generate the domain, transfer object, DAO, services and controllers, flex controller, flex services and flex .as files.
    Now we want to generate the Unit Test Case. What do you think you're going to check with a <b>generated UnitTest</b>?
    The only thing you can check is the that your Code Generator generates a bunch of Classes (the Tests) the same way like another bunch of Classes (the production code). So unless you wrote the Code Generator: What does a generated Test tell you about the corerectness of your Domain Model?
    IMHO generated tests are nothing more than a placebo...
    bye
    TPDYou are correct, but it probably doesn't matter. Plenty of people create (or in this wacky case: generate) unit tests because it is company policy that unit tests are there, not because you write them to support your development efforts.
    Example: the company I work for has a whole legion of "PL/SQL developers". In other words: people who write endless amounts of SQL procedures. Company policy goes in effect: all code should be covered by unit tests. Result: unit tests that insert a record and then check if the record is inserted. Unit test that updates a record and then checks if the record is updated. I try to explain to such people: you can be pretty sure the database works, you don't need to unit test it. Blank stares.

  • How to do number validation on String

    Hi,
    I need to validate value like
    String object=valueChangeEvent.getNewValue().toString();
    Integer in=Integer.parseInt(object);
    if(in>=50000){
    FacesContext fctx = FacesContext.getCurrentInstance();
    FacesMessage message =
    new FacesMessage("The Authorization Amount you entered is $50,000 or more. Please confirm the amount entered");
    message.setSeverity(FacesMessage.SEVERITY_WARN);
    fctx.addMessage(null, message);
    but here i am getting error when value as 54,99 or 54.99 i am getting error like number format exception how can achive this.

    If the number can have a decimal part in the UI you should use Double.parseDouble(object); and then do your validation. An integer can't have a decimal part so you get the number format error.
    Timo

  • Exporting char(string) to excel file using GUI_DOWNLOAD

    Dear Team,
    When i am trying to export Data of type Char(like 12345678987654321)  , after export it convert this data to Floating format(scientific n1E+n2) which is not my desired  output .i need to change it using excel cell format control.
    suggest me how can i handle this..
    Thanks in Advance*.

    Hello Santosh,
    Play with the below importing parameters in the function module "GUI_DOWNLOAD".
    WK1_N_FORMAT - Format for value columns in files of the type WK1
    WK1_N_SIZE - Column width for value columns in files of the type WK1
    WK1_T_FORMAT - Format for text columns for files of the type WK1
    WK1_T_SIZE - Column width for text columns for files of the type WK1.
    It might help you I guess. Also read the documentation of those importing parameters by clicking on the long text green icon after the description in the IMPORTING parameters tab of the function module.
    Regards,
    TP

Maybe you are looking for

  • How do I access money in my iTunes account

    I can't access money I have in my iTunes account to pay for apps, songs, books. How do I redeem ?

  • Purchase order item level messages EDI o/p control

    Hello, I need to create Item level message proposal...but when I tried to navigate from me22 Item->Morefunctions->Messages...It is disabled...How can I enable the messages @ item level...?How can I propose messages @ item level... Thanks, Larry

  • Graphic user interfaces

    Does oracle olap have graphic user interfaces like SQL Server Analysis Services?

  • Rman script in perl

    Hi, I want to ask if there is a way to write the rman commands in PERL such that I won't have to redirect the commands to an external file? Is there a module that can be used similar to DBI for sql statements? Thanks!

  • How to deal with the rule that do not use "object" class to declear a class

    I run my flex project in sonar. And there is a rule "Do not use Object class ". I just want to know how to deal with this problem. I mean, when I try to write a base class, I don't know which kind of class will be transfered in by reference, which ty