Dereferencing in a method

Hello,
If I create these simple object types :
create type Article_t as object
( artno integer
, title varchar2(100)
, price           Money_t
create type OrderItem_t as object
( article     REF Article_t
, qty          integer
, member function subtotal (cur in varchar2) return Money_t
The method 'subtotal' could look like :
create type body OrderItem_t as
member function subtotal (cur in varchar2) return Money_t is
m Money_t
begin
m := article.price ;
... --- compute the article price
return m ;
end subtotal ;
end;
But the instruction 'm := article.price' is subject to a compilation error ! Does it mean that I cannot use the dereferencing operator in a procedural statement ???
Must I use a select statement ???
Thanks,
Rigis

Regis,
You cannot navigate through refs within PL/SQL procedural statements. Instead, you must use the function DEREF in a SQL statement. For more information, check out the documentation at http://download-west.oracle.com/otndoc/oracle9i/901_doc/appdev.901/a89856/10_objs.htm#8348.
Regards,
Geoff
Hello,
If I create these simple object types :
create type Article_t as object
( artno integer
, title varchar2(100)
, price           Money_t
create type OrderItem_t as object
( article     REF Article_t
, qty          integer
, member function subtotal (cur in varchar2) return Money_t
The method 'subtotal' could look like :
create type body OrderItem_t as
member function subtotal (cur in varchar2) return Money_t is
m Money_t
begin
m := article.price ;
... --- compute the article price
return m ;
end subtotal ;
end;
But the instruction 'm := article.price' is subject to a compilation error ! Does it mean that I cannot use the dereferencing operator in a procedural statement ???
Must I use a select statement ???
Thanks,
Rigis

Similar Messages

  • Error in code....

    hello friends....
    i was implementing this code given in my book....
    but its showing two errors....
    1)*cannot find symbol- variable get* this is in method acton & handleEvent
    2)*double cannot be dereferenced* in addRecord method in line dout.writeDouble(d.doubleValue());
    import java.io.*;
    import java.awt.*;
    class StudentFile extends Frame
         TextField number, name, marks;
         Button enter, done;
         Label numLabel, nameLabel, marksLabel;
         DataOutputStream dout;
         public StudentFile()
              super("Create Student File");
         public void setup() throws IOException
              resize(400,200);
              setLayout(new GridLayout(4,2));
              number=new TextField(25);
              numLabel=new Label("Roll Number");
              name=new TextField(25);
              nameLabel=new Label("Student's Name");
              marks=new TextField(25);
              marksLabel=new Label("Marks");
              enter=new Button("ENTER");
              done=new Button("DONE");
              add(numLabel);
              add(number);
              add(nameLabel);
              add(name);
              add(marksLabel);
              add(marks);
              add(enter);
              add(done);
              show();
              dout=new DataOutputStream(new FileOutputStream("student.dat"));
         public void addRecord() throws IOException
              int num;
              double d;
              num=(new Integer(number.getText())).intValue();
              dout.writeInt(num);
              dout.writeUTF(name.getText());
              d=new Double(marks.getText());
              dout.writeDouble(d.doubleValue());
              //clear the text fields
              number.setText("");
              name.setText("");
              marks.setText("");
         public void cleanup() throws IOException
              if(!number.getText().equals(""))
                   addRecord();
              dout.flush();
              dout.close();
         public boolean action(Event event,Object o)
              if(event.get instanceof Button)
                   if(event.arg.equals("ENTER"))
                        addRecord();
                        return true;
              return super.action(event,o);
         public boolean handleEvent(Event event)
              if(event.get instanceof Button)
                   if(event.arg.equals("DONE"))
                        cleanup();
                        System.exit(0);
                        return true;
              return super.handleEvent(event);
         public static void main(String[] args)
              StudentFile stud=new StudentFile();
              stud.setup();
    }plz help me to rectify these....
    thanks...

    rohan_arora wrote:
    how will i remove the error with the get varaiable.....??I don't know, because I have no idea what you're trying to do. This is the API for the Event class: [http://java.sun.com/j2se/1.4.2/docs/api/java/awt/Event.html]
    It doesn't have a field or method named 'get'. I'd check your book again...if that's what they put, then your book is stupid. I'm guessing you just misread something.
    Edited by: newark on Jul 18, 2008 10:12 AM

  • Calling another method in the class from within the body of a method Im wri

    Hello out there.
    I have a question. I keep getting an error that reads as follows:
    1 error found:
    File: /Users/matthieubell/Academia/University of Waterloo/CS 125/L06/CreditCard.java [line: 80]
    Error: double cannot be dereferenced
    I think it is occuring because I am trying to call a method on an instance variable, which is not an object. But how do call a method I have already written, on another method I am writing in the general sense. I could make a particular object, but Im not shure that would get me the same result. I want to be able to call the method calcMinPayment on the instance variable currentBalance to wirte the method makePayment.
    I have a class CreditCard
    with the instance variables "private double currentBalance = 0; "
    public double calcMinPayment()
    // Add code here
    double minimumPayment;
    if (currentBalance < 50)
    minimumPayment = currentBalance/10;
    else
    minimumPayment = 50;
    return minimumPayment; // Replace this statement
    * This method will decrease the current balance on the credit card if
    * this payment meets or exceeds the minimum payment amount.
    * pre: paymentAmt > 0
    * post: The current balance should be decreased by paymentAmt if
    * paymentAmt >= the minimum payment amount. Otherwise, the payment
    * will not be recorded and an appropriate error message should be
    * displayed.
    public void makePayment(double paymentAmt)
    // Add code here
    double minimumPaymentAmount;
    minimumPaymentAmount = currentBalance.calcMinPayment();
    if (paymentAmt < minimumPaymentAmount)
    System.out.println("Sorry, but your payment must exceed the minimum payment amount.");
    System.out.println("This payment has not been recorded, please try again.");
    else
    this.currentBalance = currentBalance - paymentAmt;
    thanks for youre help
    -Matthieu

    'calcMinPayment' takes no arguments, uses a member variable (currentBalance) to compute a local variable 'minimumPayment' which it returns, ie, sends back to the caller. So you can call 'calcMinPayment' at any time.
    minimumPaymentAmount = calcMinPayment();

  • Dereferencing the NULL reference while saving a Survey

    While saving a survey first time, I am getting an error message "Dereferencing the NULL reference".
    More details as follows:
    Exception: Class CX_SY_REF_IS_INITIAL
    Program: CL_SVY_H_SVYDETAIL_IMPL=======CP
    Include: CL_SVY_H_SVYDETAIL_IMPL=======CM001
    ABAP Class: CL_SVY_H_SVYDETAIL_IMPL
    Method: DO_PREPARE_OUTPUT
    Line: 26 
    Long text: An attempt was made to execute a dynamic method callon an initial(NULL-) object reference. The reference must refer to an object.
    I opened the Survey creation page in crm ui, and filled in the ID, Application as Marketing and  selected CSS Style Sheet as CRM_SVY_OPP_WINLOSS.CSS
    I am very new to CRM module.
    Regards,
    Harsh

    Are you using internal CATT Server? If yes then you might need to turn on the CATT server again, see below:
    JTS based internal CATServer:
    Execute method SET_CATSERVER_JTS of class CL_SURVEY_CATSERVER. Leave parameter USER empty.
    ABAP based internal CATServer:
    Execute method SET_CATSERVER_ABAP of class CL_SURVEY_CATSERVER. Leave parameter USER empty.
    Cherrs,
    Ankur

  • Accessing Custom Controller from setter and Getter methods

    Hi Gurus
    How can we access the custom controller from setter and getter methods,is there any way to do that.
    Thanks & Regards
    Rajasekhar

    Hi Steve.
    Thanks very much for valuable information,  the main controller class is getting tracked in mo_owner which is declared as  CL_BSP_WD_VIEW_CONTROLLER, and I'm getting the reference through
    mo_owner ?= owner. (since mo_owner = owner is not getting converted of type mo_owner ). After doing this on whatever the contexnode class (say zl_xxxx_xxx_cnxx) the corressponding context node values are getting turned as  <#ERROR IN METADATA.
    I mean when I'm checking the configuration in bsp_wd_cmpwb configuration tab -> Available Fields->Enlarge the contex node->BTSTATUS (say for Example) there the values are showing as <#ERROR IN METADATA , After executing the above procedure
    I cross checked several times before and after redefining the context node method IF_BSP_MODEL~INIT, before redefining this method UI is working fine, after redefintion UI is throwing below error .
    Exception Details
    CX_SY_REF_IS_INITIAL - Dereferencing of the NULL reference
    Method: CL_BSP_MODEL=>IF_BSP_MODEL_BINDING~IS_ATTRIBUTE_VALID
    Source Text Row: 13
    Thanks & Regards
    Rajasekhar

  • Float cannot be dereferenced

    Hi,
    I get the following compilation error message:
    "float cannot be dereferenced"
    and i don't know what it meens.
    My code was compiling until i add the intValue methode in the last line.
    Here is the part of code :
    Dimension d,i;
    d = getSize(); // i get the size of the frame
    i = _imPanel.getSize();       // i get the size of an element in this frame
    float hp = i.height/d.height; // i calculate a ratio between those 2 size
    float wp = i.width/d.width; // for each dimansion
    _imPanel.setPreferredSize(new Dimension((getWidth()*wp).intValue(),(getHeight()*hp).intValue())); 
    // and i apply a new dimension to the element int the frame using the ration and the new size of the frame.
    As the ratio is a float and Dimension needs int in parameters, i decided to use the intValue methode to cast the float into int.
    That's it.

    Hello,
    Your problem is that you are trying to use a primitive type as if it were an object!
    You cannot call methods on the primitive types (int, float, double, etc.). Therefore, your line should be converted from:
    Dimension((getWidth()*wp).intValue(),(getHeight()*hp).ntValue()));to Dimension(new Float(getWidth()*wp).intValue(), new Float(getHeight()*hp).intValue()));Which could be done better by directly casting the values:
    Dimension((int)(getWidth()*wp), (int)(getHeight()*hp));Manuel Amago.

  • Error when executing a work item (cannot execute a method, biding problem?)

    Hello,
    I created a specific workflow, triggered by an event, from a class I also created.
    From this event, I get some data about a Document (CV01/02/03N...).
    The first step is a task which refer to a method (from the same class above).
    The binding Task <=> Method is the data about the Document and the Workflow ID.
    After I start the workflow, I execute the work item in SWI1, with a breakpoint in the method.
    I can't go in debug, and the work item is in error (in Workflow log) :
    - "Work item 000000590208: Object ZCL_SA3_WF_GED_RECL_FOURN method UPDATE_FID cannot be executed"
    - "EXECUTE_METHOD_OBJECT_SYNC : Dereferencing of the NULL reference".
    Note: The task is not in background processing, in the aim of debugging the source code.
    I did SWU_OBUF and quit/relog SAP.
    Do you have any ideas to solve this problem ?
    I think it's a biding problem, because I can' t even go in debug mode...
    Thanks.
    Regards
    (sap version: ECC 6.0)

    Hi
    Looking at the error message I feel like there is something wrong in the task object and object method. You are using a class in the task make sure that class has the IF_WORKFLOW. Mak sure the task is enabled with synchronous task method check box.
    Regards
    Pavan

  • Error : char cannot be dereferenced

    I wrote this program for my test in high school. I am getting 1 error and cannot fix it. can any1 please tell me how to fix this error. The following is the program and the rror message "-
    I AM NEW HERE so i would really BENEFIT from ANY HELP !
    class testing
              static int[] search(char list[], char target) {
                   int brand[] = new int [list.length];
                   for (int i=0; i<list.length; i++) {
                        if (list[i] == target)
                        brand[i] = target.positionOf();
                   return brand;
              } // end method
              public static void main (String str[]) {
                   char list[] = {'M', 'B', 'A', 'J', 'P', 'J','M', 'J'};
                   char target = (str[0].charAt(0));
                   System.out.print ("The list = ");
                   for (int i =0; i<list.length; i++)
                        System.out.print(list[i] + ", ");
                   System.out.println();
    System.out.println ("Target letter " + target + " has been found in position " + search(list,target) + ".");
              } // end main
         } // end class     
    Error :
    C:\JPadPro\MyProjects\testing.java:14: char cannot be dereferenced
         brand[i] = target.positionOf();
    ^
    1 error
    Finished

    My program question was --> Write a program to find a symbol from a list of symbols. Your search method should return all positions in which the target symbol is found.
    According to your solution I changed to indexOf() but still i get the same error.
    class testing
              static int[] search(char list[], char target) {
                   int brand[] = new int [list.length];
                   for (int i=0; i<list.length; i++) {
                        if (list[i] == target)
                        brand[ i ] = (list[ i ].indexOf(target));
                   return brand;
              } // end method
              public static void main (String str[]) {
                   char list[] = {'M', 'B', 'A', 'J', 'P', 'J','M', 'J'};
                   char target = str[0].charAt(0);
                   System.out.print ("The list = ");
                   for (int i =0; i<list.length; i++)
                        System.out.print(list[i] + ", ");
                   System.out.println();
                   System.out.println ("Target letter " + target + " has been found in position " + search(list,target) + ".");
              } // end main
         } // end class     
    Error =
    The current directory is: C:\JPadPro\MyProjects
    C:\JPadPro\MyProjects\testing.java:14: char cannot be dereferenced
              brand[i] = (list.indexOf(target));
    ^
    1 error
    Finished

  • How to use the substring and can i class method for the primitive type

    MY COMPILER
    public class StringLine
    public static void main(String[] args)
    String sentence;
    char letter;
    char name;
    int position;
    System.out.println("Enter a line of text. No punctuation please");
    sentence = MyIO.readLine();
    System.out.println("I have rephrase that line to read:");
    position = sentence.indexOf(" ");
    name = sentence.charAt(postion, position+ 1);
    name = name.toUpperCase();
    letter = sentence.charAt(0);
    letter = letter.toLowerCase();
    sentence = name + sentence.substring(position + 2)
              + letter + sentence.substring(1, position);
    //////////////// I got 3 errors following:
    StringLine.java:16: cannot resolve symbol
    symbol : variable postion
    location: class StringLine
    name = sentence.charAt(postion, position+ 1);
    ^
    StringLine.java:17: char cannot be dereferenced
    name = name.toUpperCase();
    ^
    StringLine.java:20: char cannot be dereferenced
    letter = letter.toLowerCase();
    ^
    3 errors
    }

    position = sentence.indexOf(" ");
    name = sentence.charAt(postion, position+ 1);
    name = name.toUpperCase(); two error here:
    1. as stated above postion is mispelled...should be position
    2. you cannot perform a chatAT(int, int)
    I think you want to perform a substring
    String name;  // should be a string instead of a char..(char is a primitive and all primitive have no method)
    position = sentence.indexOf(" ");  
    name = sentence.substring(position, position + 1).toUpperCase();
    [./code]
    better yet..you should check if the sentence does contain a spaceString name;
    position = sentence.indexOf(" "); // return a negative value if the search string is not part of the string
    if (position != -1)
    name = sentence.substring(position, position + 1).toUpperCase();
    else
    System.out.println("The sentence does not contain a space);
    [./code]
    String letter;
    letter = new String(sentence.charAt(0));
    letter = letter.toLowerCase();
    // or
    char letter;
    letter = sentence.toLowercase().charAt(0);

  • Error accessing class from method

    I am trying to write a method that accesses a class called circle where the user inputs the radius of a circle and the program prints the area, radius and circumference.
    My class is as follows.
    public class Circle
    private double Radius;
    private double PI = 3.14159;
    public void setRadius(double rad)
    Radius = rad;
    public void setPI(double pi)
    PI = pi;
    public double getRadius()
    return Radius;
    public double getPI()
    return PI;
    public double getArea()
    return PI * Radius * Radius;
    public double getDiameter()
    return Radius * Radius;
    public double getCircumferance()
    return 2 * PI * Radius;
    I am not having any areas when compiling the class.
    The method is as follows.
    //IS 115
    //DED01
    //Method for Circle class
    //Larry Piatt
    public class CircleStats
    public static void main(String[] args)
    double number;
    Scanner keyboard = new Scanner(System.in);
    Circle Radius = new Circle();
    Circle Area = new Circle();
    Circle Diameter = new Circle();
    Circle Circumference = new Circle();
    System.out.println("What is the radius of the circle? ");
    number = keyboard.nextDouble();
    number.setRadius(number);
    System.out.println("The area of the circle is "
    + Area);
    System.out.println("The diamter of the circle is "
    + Diameter);
    System.out.println("The circumference of the circle is "
    + Circumference);
    The error that I am seeing are as follows
    ^
    CircleStats.java:28: double cannot be dereferenced
    number.setRadius(number);
    ^
    1 errors
    This is my first attempt at writting a method that calls a class. I am not understanding it very well yet. Any assistance would be greatly appreciated.
    Edited by: tooned on Mar 30, 2008 1:10 PM

    1) your error: You're trying to call a method, setRadius, on the variable, number, which is nothing more than a lowly double primative variable. Better to call the method on your Circle object which here you call "Radius" (please note the Java naming convention: objects should begin with a lower-case letter).
    Also, when posting your code, please use code tags so that your code will retain its formatting and be readable. To do this, either use the "code" button at the top of the forum Message editor or place the tag &#91;code] at the top of your block of code and the tag &#91;/code] at the bottom, like so:
    &#91;code]
      // your code block goes here.
      // note the differences between the tag at the top vs the bottom.
    &#91;/code]or
    {&#99;ode}
      // your code block goes here.
      // note here that the tags are the same.
    {&#99;ode}Your formatted code would look something like so:
    public class Circle
        private double Radius;
        private double PI = 3.14159;
        public void setRadius(double rad)
            Radius = rad;
        public void setPI(double pi)
            PI = pi;
        public double getRadius()
            return Radius;
        public double getPI()
            return PI;
        public double getArea()
            return PI * Radius * Radius;
        public double getDiameter()
            return Radius * Radius;
        public double getCircumferance()
            return 2 * PI * Radius;
    import java.util.Scanner;
    class CircleStats
        public static void main(String[] args)
            double number;
            Scanner keyboard = new Scanner(System.in);
            Circle Radius = new Circle();
            Circle Area = new Circle();
            Circle Diameter = new Circle();
            Circle Circumference = new Circle();
            System.out.println("What is the radius of the circle? ");
            number = keyboard.nextDouble();
            // number.setRadius(number);
            Radius.setRadius(number);
            System.out.println("The area of the circle is " + Area);
            System.out.println("The diamter of the circle is " + Diameter);
            System.out.println("The circumference of the circle is "
                    + Circumference);
    }

  • ERROR: int cannot be dereferenced

    hi everyone i am trying to copmile the following code
    public void refreshGUI() {
            MessageBoardQueries MBQ = new MessageBoardQueries();
            Date date = Calendar.getInstance().getTime();
            DateFormat df = new SimpleDateFormat("dd/MM/yyyy");
            String argDate = df.format(date).toString();
            int pNumber = MBQ.queryPending(argDate);
            int aNumber = MBQ.queryAccepted(argDate);
            int dNumber = MBQ.queryDeclined(argDate);
            pendingNumberField.setText(pNumber.toString());
            acceptedNumberField.setText(MBQ.queryAccepted(argDate));
            declinedNumberField.setText(MBQ.queryDeclined(argDate));
        }but i keep getting the error:
    int cannot be dereferenced on the line
    pendingNumberField.setText(pNumber.toString());
    does anyone know why?

    because int is a primitive datatype, hence doesn't inherit from java.lang.Object, and as such doesn't have a toString method
    try Integer.toString(pNumber) or String.valueOf(pNumber). either is equally valid

  • Boolean cannot be dereferenced

    Hi all any help would be great:
    Im getting these errors:
    KhanAccount.java:41: boolean cannot be dereferenced
    for(int i = 0; i < passwd.length(); i++)
    ^
    KhanAccount.java:42: boolean cannot be dereferenced
    if (Character.isDigit(passwd.charAt(i)))
    ^
    KhanAccount.java:45: boolean cannot be dereferenced
    if (passwd.length() >= 6 && hasDigit)
    ^
    3 errors
    This is the code:
    (main method)
    import java.text.*;
    import javax.swing.*;
    public class KhanPassword
    public static void main (String [] args)
    KhanAccount oneacct = new KhanAccount ();
    inputacct (oneacct);
    System.exit(0);
    public static KhanAccount inputacct (KhanAccount aacct)
    /* If an invalid password is entered (or the two entries do not match),
    the user should be prompted to try again. */
    /* Continuously reads a pair of passwords until the two match.*/
    do { // Continuously reads the password until it is a valid one.
    do {
    String password = JOptionPane.showInputDialog("Enter password:\n"
    + "(must be at least six characters long and have at least one digit)");
    aacct.setusername(un);
    /* display a message indicating whether it is valid or not */
    if (!aacct.setPassword(passwd))
    JOptionPane.showMessageDialog(null, "Invalid password!");
    else {
    JOptionPane.showMessageDialog(null, "Valid password!");
    break;
    while (true);
    /* The password should be prompted for twice */
    String reenter = JOptionPane.showInputDialog("Re-enter password:");
    /* the entries should match or a message provided to the user. */
    if (!passwd.equals(reenter))
    JOptionPane.showMessageDialog(null, "Two passwords don't match!");
    else
    JOptionPane.showMessageDialog(null, "Two passwords match!");
    } while (!passwd.equals(reenter));
    return aacct;
    (called method)
    public class KhanAccount
    public String username;
    public boolean password;
    public String reenter;
    public boolean passwd;
    public static void KhanAccount (){};
         public String getusername()
         return username;
         public boolean getpassword()
         return password;
         public void setusername (String un)
         username = un;
    public boolean setPassword()
    password = passwd;
    /* check if contains digit*/
    boolean hasDigit = false;
    for(int i = 0; i < passwd.length(); i++)
    if (Character.isDigit(passwd.charAt(i)))
    hasDigit = true;
    if (passwd.length() >= 6 && hasDigit)
    password = passwd;
    return true;
    } else
    return false;
    }

    Btw, isn't better to initiate hasDigit to true and then when
    a character is wrong set hasDigit = false and quit loop
    with break or so?
    And methods called set.. often returns nothing if they return
    boolean they are often named with is... or so isPasswd
    I've learned basic methods should be divided into three types:
    constructors starts with make..
    modifiers , set..
    predicats , is..
    //jF
    /* check if contains digit*/
    boolean hasDigit = false;
    for(int i = 0; i < passwd.length(); i++)
    if (Character.isDigit(passwd.charAt(i)))
    hasDigit = true;
    if (passwd.length() >= 6 && hasDigit)
    password = passwd;
    return true;
    } else
    return false;
    }

  • Workflow issue- Dereferencing of the NULL reference

    Hello All,
    I have an issue with sending mails to external e-mail ids through a workflow process. I am using the FM SO_DOCUMENT_SEND_API1 for sending mails. However, because of the latest Basis version I need to call this FM in a seperate task when the process is in BACKGROUND mode.
    The current scenario is, my workflow will trigger a method, which internally call this FM in a seperate TASK. When I run the workflow/process I get an error in the method, which triggers this FM. The erro says "Dereferencing of the NULL reference"
    Is this because of calling the FM in a seperate task, as the workflow already has a pre-defined TASK? if yes, how do we go about this?
    Thanks,
    Anil

    Hello Anil,
    I am facing a similar message when i am running the SAP standard workflow 18900044 for leave encashment. I am calling a class CL_HRPBSIN_HANDLE_LEREQ_WF and the method CALL_WORKFLOW.
    Can you please tell me how you managed to solve your issue.
    Regards,
    Ritwik

  • "int cannot be dereferenced" error.. help me please

    I'm working with an array list class called PersonList and it uses attributes from a normal class called Person.
    I would like to make this method PrintPerson inside the PersonList class that should search for a specific Person given the ID as parameter to the method. the method should print all info of the Person if found, otherwise a message saying id is not valid.
    I solved it like this:
    public void PrintPerson(int id)
              System.out.println("Enter ID of the person ");
              id = Stdin.readInteger();
              //search the ID if it is in the List
              int i=0;
              while
              ((i<next)&&(!(list.getID().equals(id))))
              i++;
              //if found
              if (i<next)
                   list[i].OutputWindow();}//display the object ouput of this ID
                   else{
                   System.out.println("The following ID: " id "is not valid!");
              }//end if
         }// end of method
    my problem is with this code:
    ((i<next)&&(!(list.getID().equals(id))))
    I get this error "int cannot be dereferenced"
    what should I do? help me please
    -- Matt

    list.getID() == id                                                                                                                                                                                                                               

  • Random Number Generator setSeed(); method???

    I've searched and can't get a good understanding of the setSeed() method. I am suppose to use the loop control variable to seed the random number generator inside the loop. I need to use the same input everytime I use the random generator. When I compile it says int cannot be dereferenced.
    for(int i = 0; i < array.length; i++)
    int randnum = generator.nextInt(100);
    randnum.setSeed(i);
    array[i] = randnum;
    If anyone can explain the setSeed() method that would be greatly appreciated. Thanks!

    badbro wrote:
    Thanks for your help, but leave the smart comments to yourself. They are not needed. Thats what this forum is for.All of Paul's comments were dead spot on, and if you listen to him and take his advice to heart, it will only help you. If they make you upset, well then that's your problem, isn't it? My advice: grow up.

Maybe you are looking for

  • Error message: Entry 1 WC 99 does not exist in T508A (check entry)

    Can anyone please tell me what does the error message Entry "1 WC 99" does not exist in T508A (check entry) means? I was trying to 'generate work schedule manually' when got this error.  In the above error message, 1 means employee subgroup grouping.

  • Win 7 and Arch dual boot [SOLVED]

    There are other help threads about this, but I didn't want to hijack somebody's elses thread.  Sorry for the long post, I just want to provide as much detail as possible: I am trying to use Grub (not Grub2) to dual boot between Arch Linux and Windows

  • Document Upload in ADF protocol using Open script

    Hi , My transaction is to upload a document into a portal. I have recorded this transaction in OPEN SCRIPT using ADF protcol. When i playback the script, it uploads a document with no contents in it. if i open the uploaded file it has only "Null". Th

  • Lenovo Thinkpad T400 takes too long to turn on

    Hi guys, I need your help to fix this computer. I have experience as a technician, but I'm stuck trying to fix this laptop. When I turn on the laptop, it does not matter if it's on battery only, plugged it (with or without battery), it only turns the

  • In FM - MATERIAL_MAINTAIN_DARK -- field TRANC

    Hi All, I am using MATERIAL_MAINTAIN_DARK fm To upload material storage location. I am passing '000000001' to TRANC fields in mard_ueb table. What is TRANC field what is the meaning of 0000000001. Can i pass 000000000002 or 0000000003? Moderator mess