Somebody pleaes help me for sorting arrays...

Hello.
I have a problem like this. (http://www.sfusd.edu/schwww/sch697/depts/math/simon/ICTJAVA/WebLessons/APCSL27/APCSL27-1-7.html)
public class Item implements Comparable
private int myId;
private int myInv;
public Item(int id, int inv)
myId = id;
myInv = inv;
public int getId(){ )
public int getInv(){ }
public int compareTo(Object otherObject){ }
public boolean equals(Object otherObject){ }
public String toString(){ }
public class Store
private Item[] myStore;
public Store(String fileName) { }
public void displayStore()
public String toString(){ }
public void doSort() { }
private void quickSort(Item[] list, int first, int last)
private void loadFile(String inFileName)
The first line of file50.txt contains the number of id/inventory integer pairs listed on subsequent lines. The idea behind the data type item is the simulation of an item in a store, nearly all of which use a bar code for identification purposes. For every item in a store we keep track of an id value and an inventory amount. So file50.txt looks like this:
50
3679 87
196 60
17914 12
18618 64
2370 65
etc. (for 45 more lines)
Each id value in file50.txt will be unique.
Assignment:
Write a program that solves the following sequential events:
loads the data file, file50.txt, as a collection of Item types maintained in a Store object
sorts the data using quickSort
prints the data , now in increasing order based on the id field of an Item object
The printing should add a blank line after every 10 items in the output. Include a line number in the output. For example:
Id Inv
1 184 14
2 196 60
3 206 31
4 584 85
5 768 85
6 2370 65
7 3433 5
8 3679 87
9 4329 64
10 5529 11
11 6265 58
12 6835 94
13 6992 76
14 7282 73
15 8303 90
16 9267 68
etc.
You will need to complete the getId(), getItem(), compareTo(), equals() and toString() methods for the Item class.
You will need to complete the Store() constructor, displayStore(), loadFile(), quickSort() and toString() methods for the Store class.
That's the assigned project.
this is a side story. I'm a highschooler, and my teacher always hangs out on the internet, teaching nothing. and like this, he just print some problems from the internet and give it to the students. is there a handout about lesson? no. is this always been like this? yeah...
I have no idea how to right a method called getId(), getInv(), etc...
would anybody please... please help me?
p.s.
the file50.txt is
on http://www.sfusd.edu/schwww/sch697/depts/math/simon/ICTJAVA/WebLessons/APCSL27/file50.txt
quicksort is in
http://www.sum-it.nl/QuickSort.java here.
somebody please... help me out...

this is a side story. I'm a highschooler, and my
teacher always hangs out on the internet, teaching
nothing. and like this, he just print some problems
from the internet and give it to the students. is
there a handout about lesson? no. is this always been
like this? yeah...
I have no idea how to right a method called getId(),
getInv(), etc...
Well along with the F coming to you for your little assignment I also give you an F for creative writing. This is a shoddy attempt. Why not try something new. Like I live in a mountain town and could not get to school to attend class for three weeks because an avalanche closed the pass.. or my cat peed on my keyboard and I had to get a new one but I couldn't afford it so I don't have enough time left now to figure out myself.
I dunno. Lot's of ideas.
Nobody cares about your little sob story. If your teacher is in fact this bad then you should have taken it up with the school administration long ago. It might not be too late to do so. But truth or not it's not going to sucker somebody in to doing your homework for you.
If you want to learn then do the tutorials until you are capable of completing the assignment. If you have specific questions then help can be given. I don't know what I'm doing is NOT a specific question.

Similar Messages

  • Somebody please help me for sorting arrays!!

    Hello.
    I have a problem like this. (http://www.sfusd.edu/schwww/sch697/depts/math/simon/ICTJAVA/WebLessons/APCSL27/APCSL27-1-7.html)
    public class Item implements Comparable
    private int myId;
    private int myInv;
    public Item(int id, int inv)
    myId = id;
    myInv = inv;
    public int getId(){ )
    public int getInv(){ }
    public int compareTo(Object otherObject){ }
    public boolean equals(Object otherObject){ }
    public String toString(){ }
    public class Store
    private Item[] myStore;
    public Store(String fileName) { }
    public void displayStore()
    public String toString(){ }
    public void doSort() { }
    private void quickSort(Item[] list, int first, int last)
    private void loadFile(String inFileName)
    The first line of file50.txt contains the number of id/inventory integer pairs listed on subsequent lines. The idea behind the data type item is the simulation of an item in a store, nearly all of which use a bar code for identification purposes. For every item in a store we keep track of an id value and an inventory amount. So file50.txt looks like this:
    50
    3679 87
    196 60
    17914 12
    18618 64
    2370 65
    etc. (for 45 more lines)
    Each id value in file50.txt will be unique.
    Assignment:
    Write a program that solves the following sequential events:
    loads the data file, file50.txt, as a collection of Item types maintained in a Store object
    sorts the data using quickSort
    prints the data , now in increasing order based on the id field of an Item object
    The printing should add a blank line after every 10 items in the output. Include a line number in the output. For example:
    Id Inv
    1 184 14
    2 196 60
    3 206 31
    4 584 85
    5 768 85
    6 2370 65
    7 3433 5
    8 3679 87
    9 4329 64
    10 5529 11
    11 6265 58
    12 6835 94
    13 6992 76
    14 7282 73
    15 8303 90
    16 9267 68
    etc.
    You will need to complete the getId(), getItem(), compareTo(), equals() and toString() methods for the Item class.
    You will need to complete the Store() constructor, displayStore(), loadFile(), quickSort() and toString() methods for the Store class.
    That's the assigned project.
    this is a side story. I'm a highschooler, and my teacher always hangs out on the internet, teaching nothing. and like this, he just print some problems from the internet and give it to the students. is there a handout about lesson? no. is this always been like this? yeah...
    I have no idea how to right a method called getId(), getInv(), etc...
    would anybody please... please help me?
    p.s.
    the file50.txt is
    on http://www.sfusd.edu/schwww/sch697/depts/math/simon/ICTJAVA/WebLessons/APCSL27/file50.txt
    quicksort is in
    http://www.sum-it.nl/QuickSort.java here.
    somebody please... help me out...

    well you're really going to have to at least do a quick skim of:
    http://java.sun.com/docs/books/tutorial/getStarted/index.html
    And also how to use a browser and browse the API Docs
    especially for: Comparable
    You'll also get flamed for just posting a Homework assignment with no evidence of your own attempts to solve it, OR for not formatting the code with
    [ c o d e ] [ / c o d e ]
    I suppose you get some points if you answer some of the questions?
    Try the easy parts first:
    Complete the methods of the class Item
    Ignore the deliberate Typos in the assignment
    see how you have the class members defined already like:
    private int myId;                         // The guy couldn't be bothered to document his code
    private int myInv;                       // So you will have to.......document itlook at this:
    public int getId() {}As it is the compiler will just say : Missing method body, or declare abstract...
    Your job is to guess what it should do from the 'signature'
    It must return an int and that should be related to Id neh?
    So try things like:
         @return the value of the myId field.
    public int getId()
              return       this.myId;      // return myId would do as well
         Sets the value of myId field
         @param  newId   the new Id to set.
      public void setId( int newId )
           this.myId = newId;             // the old value is replaced with the new
      }do the rest of the simple obvious methods.
    You will get some marks and improve your confidence with simple Java
    Read The API doc on Comparable Interface:
    Decide Carefully how you want to "Order" Objects of type Item.
    In this case this will probably depend first on myId and then subsequently on myInv
    The Comparable interface helps Sorting methods decide qhich object comes first when sorting.
    you will need ssomething like this.
         Implements Comparable - Read the API
    public int compareTo( Object o ) throws ClassCastException, NullPointerException
        if( o == null )
             throw new NullPointerException("Blah blah blah");
       if( !( o instanceof Item ) )
              throw new ClassCastException("Apples and Oranges!");
      Item  item = ( Item ) o;  // Cast o to an Item so it can be checked
      if( this.getId()  < item.getId() )
             return -1;                         // Signal that "this"is less than o
      if ( this.getId() > item.getId() )
            return 1;
      // here both items have the same  myId field
    if( this.getInv() < item .getInv() )
             return -1;
    if( this.getInv() > item.getInv() )
           return 1;
      return 0;                     // they are at the same sort order
    }You use that method like:
      Item a;
      Item b;
      if( a.compareTo( b ) < 0 )
          //blah blah
      }To write the equals method read the API it is similar to compareTo()
    To Read The file : Search on this forum for reading a file line by line.
    Check the API.
    ALso if you have installed Java:
    There are many examples of how to do this in the demo directory
    Even one on QuickSort ---
    So plug away..................

  • I need help on a sorting array method()

    I'm working on a program that can do a calculation for a swimming event where there will be no more than 200 paticipants. The swimmers that signed up first for the race will be swimming in the last heat.They swim in a pool with 7 lines.The swimmer that signed up first ( and so has the lowest sign up time)swimms in line 4,the swimmer that signed up second ( and so has the second lowest sign up time)swimms in line 5, and the swimmer that signed up after that in line 3.
    Which meens that the lines are filled as follow:
    line 1 time 7
    line 2 time 5
    line 3 time 3
    line 4 time 1
    line 5 time 2
    line 6 time 4
    line 7 time 6
    When the last heat is filled, the heat before the last one is filled after the same pattern and so on, so that the first heat is filled last.
    Now, I have written a class that can sort the times from the lowest to the highest, but how do I write a method that can sort the swimmers into the heats and the right lines??
    public class SwimmingEvent
    private String name;
    private int birthYear;
    private int number;
    private double signUpTime;
    private Swimmer[] record;
    private int numberOfSwimmers;
    public SwimmingEvent()
    name = "No record";
    birthYear = "No record";
    number = "No record";
    signUpTime = 0;
    public SwimmingEvent(String initialName, int initialBirthYear,
    int initialNumber, double initialSignUpTime)
    set(initialName, initialBirthYear, initialNumber, initialSignUpTime);
    public void set(String newName, int newBirthYear, int newNumber, double newSignUpTime)
    name = newName;
    birthYear = newBirthYear;
    number = newNumber;
    signUpTime = newSignUpTime;
    public void readInput()
    System.out.print("Indtast sv�mmerns navn:");
    name = SavitchIn.readLine();
    System.out.print("Indtast �rgang:");
    birthYear = Savitch.readLine();
    System.out.print("Indtast l�bsnummer:");
    number = SavitchIn.readLine();
    System.out.print("Indtast tid for anmeldelse:");
    signUpTime = SavitchIn.readLineDouble();
    public void getFigures()
    System.out.println("Indtast antalet af sv�mmer:");
    numberOfSwimmers = Savitch.readLineInt();
    record = new Swimmer[numberOfSwimmers];
    int i;
    for (i = 0; i < numberOfSwimmers; i++)
    record[i] = new Swimmer();
    System.out.println("Indtast data for sv�mmer: " + (i+1));
    record.readInput();
    System.out.println();
    public static void sort(double[] a)
    int index, indexOfNextSmallest;
    for (index = 0; index < a.length - 1; index++);
    indexOfSmallestNumber = indexOfSmallest(index, a);
    interchange(index, indexOfNextSmallest, a);
    private static void interchange(int i, int j, int[] a)
    int temp = a[i];
    temp = a[i];
    a[i] = a[j] = temp;
    private static int indexOfSmallest(int startIndex, int[] a)
    int min = a[startIndex];
    int indexOfMin = startIndex;
    int index;
    for (index = startIndex + 1; index < a.length; index++)
    if (a[index] < min)
    min = a[index];
    indexOfMin = index;
    return indexOfMin;
    public void writeOutput()
    public String getName()
    return name;
    public int getBirthYear()
    return birthYear;
    public int getNumber()
    return number;
    public double getSignUpTime()
    return signUpTime;

    Now, I have written a class that can sort the times from the lowest to
    the highest, but how do I write a method that can sort the swimmers into
    the heats and the right lines??Once you have a working general sort algorithm, issues like this come down to how you make your comparisons between elements. So what you want to do is write your sort code so that the comparison code is modular. (for example, using a class to express comparisons, so you can swap out comparison classes). Then whatever your requirements for sorting elements are, you can achieve them by writing the right comparison code and leaving your sort alone.
    This is how Java's core libraries do it, by the way. See:
    http://java.sun.com/j2se/1.4.1/docs/api/java/util/Comparator.html
    I'm assuming this is your homework. If it's not, then you shouldn't be writing your own sort routines -- use the ones java provides. See the API.

  • Help needed for sorting contacts

    Long time User of Treos (Palm Versions) and I just purchased Treo 800W.  Love the speed and versatility however having problem sorting out contacts.  In the Palm Versions, I was allowed to use sub folders in my outlook however when contacting the help desk, I was notified I have to put my all my contacts in one folder (Contacts).  Needless to say when you have many contacts you will not be able to find them efficiently.  Need help in the best way to sort out contacts and have them filed accordingly.  Please advise and thanks.  
    Post relates to: Treo 800w (Sprint)

    Hi ..  Welcome to Palm forums.  In contacts on the 800w there is a option for catagories.  You can create different catagories as you wish.  You can also do the same in outlook.  Then on the device you will find a filter option and when selected will show only the catagory you select at the time, for instance business.  Now for searching if you type in the entire name it will take a long time to find the contact if it ever does.  The way to search is to enter the first initial space last initial.  To further specify you can add additional initials ie, first initial space last two initials.
    Post relates to: Centro (Sprint)

  • Sorting array list

    can u please give me the source code for:
    sorting array list for ascending and descending order

    You already have the source code.

  • TreeSet vs Collection.Sort / Array.sort for Strings

    Gurus
    I am pondering weather to use TreeSet vs the Collections.sort / Array.sort for sorting Strings.
    Basically I have a list of Strings, i need to perform the following operations on these Strings
    1) Able to list Strings starting with a Prefix
    2) Able to list Strings Lexically greater than a String
    Any help would be greatly appreciated!
    Thanks a bunch

    SpaceShuttle wrote:
    Gurus
    I am pondering weather to use TreeSet vs the Collections.sort / Array.sort for sorting Strings.
    Basically I have a list of Strings, i need to perform the following operations on these Strings
    1) Able to list Strings starting with a Prefix
    2) Able to list Strings Lexically greater than a String
    Any help would be greatly appreciated!
    Thanks a bunchBig-O wise, there's no difference between sorting a list of N elements or inserting them one by one in a tree-set. Both take O(n*log(n)). But both collections are not well suited for looking up string that start with a certain substring. In that case you had better use a Patricia tree (or Radix tree).
    Good luck.

  • Please help---merge function for two arrays.

    I am trying to create a merge function that merges two sorted arrays into a third array. I know what I am supposed to do, at least in theory, but I have been completely unsuccessful with actually getting the code to work. Since it is private, you can't directly access the arrays, you have to just reference them. could someone please help me out.
    import java.io.*;
    class OrdArray
    private long[] a;
    private int nElms;
    public OrdArray(int max)
    a = new long[max];
    nElms = 0;
    public int size()
    { return nElms;}
    public int find(long searchKey)
    int lowerBound = 0;
    int upperBound = nElms-1;
    int curIn;
    while(true)
    curIn = (lowerBound + upperBound) / 2;
    if(a[curIn]==searchKey)
    return curIn;
    else if (lowerBound > upperBound)
    return nElms;
    else
    if(a[curIn] < searchKey)
    lowerBound = curIn + 1;
    else
    upperBound = curIn - 1;
    public void insert(long value)
    int j;
    for(j=0; j<nElms; j++)
    if(a[j] > value)
    break;
    for(int k=nElms; k>j; k--)
    a[k] = a[k-1];
    a[j] = value;
    nElms++;
    public boolean delete(long value)
    int j = find(value);
    if(j==nElms)
    return false;
    else
    for(int k=j; k<nElms; k++)
    a[k] = a[k+1];
    nElms--;
    return true;
    public void display()
    for(int j=0; j<nElms; j++)
    System.out.print(a[j] + " ");
    System.out.println("");
    public void merge(OrdArray array, OrdArray array1)
    }//this is the start of the merge function. I am stuck and not real sure where to go from here.
    public long getElm(int index)
    return a[index];
    }//end class OrdArray
    class OrderedApp
    public static void main(String[]args)
    int maxSize = 100;
    OrdArray arr, arr1, arr2;
    arr = new OrdArray(maxSize);
    arr1 = new OrdArray(maxSize);
    arr2 = new OrdArray(maxSize);
    arr.insert(77);
    arr.insert(99);
    arr.insert(44);
    arr.insert(55);
    arr.insert(22);
    arr1.insert(88);
    arr1.insert(11);
    arr1.insert(00);
    arr1.insert(66);
    arr1.insert(33);
    arr2.merge(arr, arr1);
    arr.display();
    System.out.println("--------------------");
    arr1.display();
    System.out.println("--------------------");
    arr2.display();
    }

    If I use ArrayList<Long>, would I have to change private long[]a to ArrayList<long>, cause if so, I am not able to do that.
    I am supposed to add a merge() method to megre the two source arrays into an ordered destination array.
    public void merge(OrdArray array, OrdArray array1)
    mergeSize = array.nElems + array1.nElems;
    int i = 0;
    int j = 0;
    int k = 0;
    while (i = 0; i < array.nElems; i++) {
              if {array.getElm(i) < array1.getElm(j)
                                                              //how do you move to the next set of values
                                                              //and to move which variables are incremented
                                                              //how do you test if the flush loop should be      called, hint if( == )
                   while (j = mergeSize - array.nElems; j <= mergeSize; j++) { 
                                   this.a[j] = array1.a;
    //again how do you move to next value and placeholder
         //which indices are incremented
    //copy/paste and change the variables for the other value being smaller
    public long getElm(int index)
    return a[index];
    this is all I have started, but i don't really understand all the comments because I haven't used java in a long time. Like I said, I understand what needs to be done and what order to do it in, but getting the code down to do that is really rough

  • When i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    when i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    Have you upgraded to iPhoto 9.6 for compatibility with Yosemite? If not, try that first.
    It looks like iPhoto has lost the connection between the thumbnails and the original image files.
    This can be caused by a corrupted iPhoto library, or the originals have been deleted or moved.
    Try first to rebuild your iPhoto Library:
    If you do not have a current backup of the iPhoto library, make a copy of the library, but do not overwrite any previous backup.
    Launch iPhoto with the ⌥⌘-key combination (option-command) held down.
    Select "rebuild" from the first aid panel.  This may take a while for a large library.
    Can you now see your photos again?
    If not, rebuild the library with iPhoto Library manager as described by Old Toad:            Re: iphoto crashed

  • I have installed oracle 10g in my winxp machine. i am using enterprise manager. i am not able to shutdown the system as it asks for os username and password. i have provided my os username and password but eerror persiste. somebody pls help me to get rid

    I have installed oracle 10g in my winxp machine. i am using enterprise manager. i am not able to shutdown the system as it asks for os username and password. i have provided my os username and password but eerror persiste. somebody pls help me to get rid of this.

    Here I am using Java Type IV for database
    connection.
    So,there was no necessity of creating DNS.How your app communicates with db shouldn't matter for the end user. Still, you may want to use a functional network name also for the thin client driver connection string.
    So,is there any other way to solve this problem.What is the problem really? Do you not use dns for network naming? Maybe you have to manage the hosts file on every client then.

  • Hi hope somebody can help? i have acrobat 6 pro, worked well for last two years but then just stopped working. Have reinstalled but still will not open, ronning windows 7. Help please!!

    Hi hope somebody can help? i have acrobat 6 pro, worked well for last two years but then just stopped working. Have reinstalled but still will not open, ronning windows 7. Help please!!  Janice

    Hey janicem42177174,
    Adobe no longer supports the installation and use of Acrobat 6 as it is a very old version which is not compatible with Windows 7.
    I would suggest you to please use the latest version of Acrobat i.e. 11.0.10 which is fully compatible with your OS with its enhanced features and functions.
    You might download a free 30-day trial version of Acrobat from here:
    Download Adobe Acrobat free trial | Acrobat XI Professional
    Let me know how it goes
    Regards,
    Anubha

  • My Iphone Is Locked, When I Try Sync With Itunes ,The App Ask Me For The Owner Account which Is Erased Somebody Can Help Me?

    My Iphone Is Locked, When I Try Sync With Itunes ,The App Ask Me For The Owner Account which Is Erased Somebody Can Help Me?
    I Want To Sync My Music But I Cant, Can Somebody Help Me ? Thanks

    Look, Idk If Is Blocked Or Something But When I Restored The Phone I Mean Factory, First Says That The phone Need A Sim Card,then An Icloud Account  And Then This " This Phone Was Registered With An Apple Account,So I Know The Email and The Password, when i Try To Log In Its Says Password or EMail Incorrect so I Asked My Friend,Because I Didn't Buy it From An Apple Store Or Somethin Like That, So MY Friend Told Me That He Erased The Account or He desactivated I Need Help Seriously :s

  • I'm having trouble with my macbook pro, I have only had it for three months, when I plugged a camera sd card into the sd slot it isn't appearing anywhere on the computer and i can not access my photographs. can somebody please help me?

    I'm having trouble with my macbook pro, I have only had it for three months, when I plugged a camera sd card into the sd slot it isn't appearing anywhere on the computer and i can not access my photographs. can somebody please help me?

    Shootist007 wrote:
    Clifton I must disagree with you on the above statement. It is my opinion and experience that you should never connect the camera directly to any computer, Mac Windows Whatever.
    It is always best to Remove the memory card from the camera and put it in a card reader, whether an external reader or one built into the computer, to copy images from the card.
    Hi Shootist. I would be interested in hearing some reasoning on this. I almost always use a USB cable to connect my camera to the MBP for transferring pictures, and have moved about 30,000 this way over the last 6 years since my photography went digital. Recently, on the rare occassions when I have only a few to transfer and I was too lazy to go for the cable, I have used the card reader; about half those times I have difficulty getting the MBP to recognise the card. I find I have to press the card very hard into the slot for it to be recognised.
    My rationale is quite possibly wrong, but I feel that the USB connectors are more robust and hard-wearing than the flimsy connectors on an SD card. Also, I haven't measured it, but I think the data transfer is faster with the cable. (I just came across this test, which reports noticeably faster transfer for cable than built-in card reader, but the computer was a PC)
    Chiara, sorry for hijacking your thread.

  • Hii i need help i cannot use my apple id for download on app store because they say i need to verify my account but i don't know how so please somebody can help me? i try to resset my password but that don't help

    hii i need help i cannot use my apple id for download on app store because they say i need to verify my account but i don't know how so please somebody can help me? i try to resset my password but that don't help

    is it asking for ur security questions?

  • I just exchanged a faulty iPhone 4 for a new one, when I got home to restore it, iCloud says "cannot restore backup". Can somebody please help provide much needed advice? Thanks in advance!

    I just exchanged a faulty iPhone 4 for a new one, when I got home to restore it, iCloud says "cannot restore backup". Can somebody please help provide much needed advice? Thanks in advance!

    Yep, that's the only message that popped out. Nothing else. Yes, it's running on the latest ios and I still can't restore it. I called apple and they told me it's probably something wrong with their servers. Anyway thanks for the advice.

  • HT1689 I forgot the answers for the questions that system answered me to confirm my purchase. It asking me because it's the first time that I'm purchasing using my IPad. Somebody could Help me?

    I forgot the answers for the questions that system answered me to confirm my purchase. It asking me because it's the first time that I'm purchasing using my IPad. Somebody could Help me?

    1. See my User Tip for some help: Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities.
    2. Here are two different but direct methods:
        a. Send Apple an email request at: Apple - Support - iTunes Store - Contact Us.
        b. Call Apple Support in your country: Customer Service: Contacting Apple for support
            and service.
    3. For other queries about Apple ID see Frequently asked questions about Apple ID.
    4. Rescue email address and how to reset Apple ID security questions

Maybe you are looking for

  • Error while opening a datafile in dataprep editor

    Hi Error while opening a datafile in dataprep editor "opening the datafile failed see the message panel for details" "server.com.DEV.Perf     Read data file     September 17, 2009 8:31:51 AM EDT     Failed : 1030001" can anyone help me through this e

  • With Mac OS 10.6.8 and Firefox 7.0.1, firefox is not remembering passwords nor is firefox asking to remember passswords?

    Firefox does remember passwords for some sites but not others. Some of the others have been previously remembered but with different user names and passwords. The problem started with changes in the user name and password, or with changes in the logi

  • Bulletin Board for A505-6980

    Does anyone know how to find the Bulletin Board on a A505-6980?  The advertisement for this machine says that the Bulletin Board in available on this machine but I cannot find in on the computer.

  • How to add Logo in Bex report

    Hi Guys,              How to add logo in a Bex report.

  • Text Field Label?

    I have created a form with expandable fields. I have a couple fields that I want to have text label in but I want the label to disappear when the user types in the field. Is this possible? I found where I can add a label of sorts but it needs to be m