The applet FtpExample does not have a public constructor FtpExample()

Hi
Get this from my Jbuilder, but I got an constructor. What's the problem ?
import ftp.*;
import java.io.*;
import java.applet.*;
class FtpExample implements FtpObserver, Runnable
Thread thread;
FtpBean ftp;
long num_of_bytes = 0;
public FtpExample()
// Create a new FtpBean object.
ftp = new FtpBean();
try {
jbInit();
} catch (Exception ex) {
ex.printStackTrace();
// Connect to a ftp server.
public void connect()
try
ftp.ftpConnect("xxxxxxxxxxxx", "xxxxxxx", "xxxxxxx");
} catch(Exception e)
System.out.println(e);
and more...
.

I thought I should point out a few things
The rule is that every class should have a no
argument constructor that you need to specify
explicitly if you have overloaded the default one.
One of the reaons for that is the following:This is not true, there are many classes that do not have a no argument constructor (For example Integer). Integer is a perfect example of why you would not want a no argument constructor, having an Integer with no value is pointless (theres nothing you can do with it).
public class A {
private final int a ;
public A(int b) {
this.a = b ;
}Now you realize that the variable
n
is getting initialized in the constructor. I see no variable n in the constructor but I take it you mean a
Now if you
refer to
n
somewhere else in you code you get a compile error because
n
might not have been initialized.This is not true, only local variables can cause a
variable (a variable) might not have been initialized
this is because all member fields are initialised with their default valuse. For example all pointers are intitialised to null, ints are intitialised to 0, booleans to false and so on.
>
So you need this:
public class A {
private final int a ;
public A(int b) {
this.a = b ;
public A() {
this(0) ; /* Calls the above constructor with some
default parameter. */
/* You can add some more code below but not above
this(0) */
Of course you know you are never calling the default
constructor but it's still there so you need to
ensure that the variables get initialized if some one
calls it!
As above classes can have no argument constructors
Just add this to your code for example:
public Tennisball() {
this(0, 0, 0, 0, null) ;
} Hope that helped you out!
Thanks,
Nikolas.
PS any duke dollars would be much appreciated as i'm
very poor at the moment :-)I dont mean to be offensive just thought I should clarify these points
Michael

Similar Messages

  • ERROR:The applet Tennisball does not have a public constructor Tennisball()

    hi all...sorry...i encountered this java error msg with the following code.....n the error msg tat was generated is that i do not have a public constructor which i already have...can some1 please enlighten me..??
    import java.applet.*;
    import java.awt.*;
    public class Tennisball
         double x, y, oldx, oldy, xinc, yinc, v=2.0;
         int i,e,west,north,east,south,ry,rs,score,rx;
         int choice, zone;
         AudioClip ballout;
         boolean running,toggle,enough;
            Color ballcolor;
         Tennis t;
         Color bgColor = Color.black;
         public Tennisball(int w, int n, int e, int s, AudioClip bo)
                    west=w;
              east=e;
              south=s;
              north=n;
              ballout = bo;
              //this.t = t;
              xinc=1.7*v;
              yinc=0.7*v;
         public void getRacketPosition(int racket_y)
              ry=racket_y;
              rs=ry;
         public void newBall()
              ballcolor=Color.yellow;
              x=20;
              y=(int)(Math.random()*100+50);
              int angle=(int)(Math.random()*8+1);
              if(angle==1)yinc=-0.7*v;
              if(angle==2)yinc=-0.5*v;
              if(angle==3)yinc=-0.4*v;
              if(angle==4)yinc=-0.3*v;
              if(angle==5)yinc=0.3*v;
              if(angle==6)yinc=0.4*v;
              if(angle==7)yinc=0.5*v;
              if(angle==8)yinc=0.7*v;
              toggle=false;
              running=true;
              enough=false;
              e=0;
         public void move()
              if(running)
                   if(!toggle)
                        oldx=x;
                        oldy=y;
                        x+=xinc*v;
                        y+=yinc*v;
                   if(x<west && xinc<0)
                        int angle=(int)(Math.random()*8+1);
                        if(angle==1)yinc=-0.7*v;
                        if(angle==2)yinc=-0.5*v;
                        if(angle==3)yinc=-0.4*v;
                        if(angle==4)yinc=-0.3*v;
                        if(angle==5)yinc=0.3*v;
                        if(angle==6)yinc=0.4*v;
                        if(angle==7)yinc=0.5*v;
                        if(angle==8)yinc=0.7*v;
                       xinc=-xinc;
                        t.playClick();
                   else if(x>east-10)
                        x=east-10;
                        toggle=true;
                        running=false;
                        score++;
                        t.playBallout();
                   else if(y<north || y>south)
                       if(y<north&&yinc<0)
                             yinc=-yinc;
                        if(y>south&&yinc>0)
                             yinc=-yinc;
                        t.playClick();
                   else if(x>425 && xinc>0 && y>ry && y<rs+25)
                        if(y<ry+3)zone=1;
                        else if(y>=ry+3&&y<ry+6)zone=2;
                        else if(y>=ry+6&&y<ry+9)zone=3;
                        else if(y>=ry+9&&y<ry+12)zone=4;
                        else if(y>=ry+12&&y<ry+15)zone=5;
                        else if(y>=ry+15&&y<ry+18)zone=6;
                        else if(y>=ry+18&&y<ry+21)zone=7;
                        else if(y>=ry+21)zone=8;
                        if(zone==1)yinc=-0.7*v;
                        if(zone==2)yinc=-0.5*v;
                        if(zone==3)yinc=-0.4*v;
                        if(zone==4)yinc=-0.3*v;
                        if(zone==5)yinc=0.3*v;
                        if(zone==6)yinc=0.4*v;
                        if(zone==7)yinc=0.5*v;
                        if(zone==8)yinc=0.7*v;
                        xinc=-xinc;
                        t.playClick();
         public void toggle()
                        int i=t.j;
                        if(!enough)
                             if(i>-1&&i<11)ballcolor=Color.yellow;
                             if(i>10&&i<20){ballcolor=bgColor;e++;}
                        if (e>35){ballcolor=bgColor;enough=true;}
         public void paint(Graphics g)
              if(toggle)toggle();
              g.setColor(ballcolor);
              g.fillOval((int)x,(int)y,10,10);
    }

    I thought I should point out a few things
    The rule is that every class should have a no
    argument constructor that you need to specify
    explicitly if you have overloaded the default one.
    One of the reaons for that is the following:This is not true, there are many classes that do not have a no argument constructor (For example Integer). Integer is a perfect example of why you would not want a no argument constructor, having an Integer with no value is pointless (theres nothing you can do with it).
    public class A {
    private final int a ;
    public A(int b) {
    this.a = b ;
    }Now you realize that the variable
    n
    is getting initialized in the constructor. I see no variable n in the constructor but I take it you mean a
    Now if you
    refer to
    n
    somewhere else in you code you get a compile error because
    n
    might not have been initialized.This is not true, only local variables can cause a
    variable (a variable) might not have been initialized
    this is because all member fields are initialised with their default valuse. For example all pointers are intitialised to null, ints are intitialised to 0, booleans to false and so on.
    >
    So you need this:
    public class A {
    private final int a ;
    public A(int b) {
    this.a = b ;
    public A() {
    this(0) ; /* Calls the above constructor with some
    default parameter. */
    /* You can add some more code below but not above
    this(0) */
    Of course you know you are never calling the default
    constructor but it's still there so you need to
    ensure that the variables get initialized if some one
    calls it!
    As above classes can have no argument constructors
    Just add this to your code for example:
    public Tennisball() {
    this(0, 0, 0, 0, null) ;
    } Hope that helped you out!
    Thanks,
    Nikolas.
    PS any duke dollars would be much appreciated as i'm
    very poor at the moment :-)I dont mean to be offensive just thought I should clarify these points
    Michael

  • Applet - JavaPurse does not have a public constructor

    Hello,
    I'm starting playing with Javacard and I tried to compile a demo of Java purse Applet.
    I can compile it withou problem but once I try to start it with JBuilder 2006 I get the following error :
    The applet com.sun.javacard.samples.JavaPurse.JavaPurse does not have a public constructor com.sun.javacard.samples.JavaPurse.JavaPurse()
    Here is a part of my code
    public class JavaPurse extends javacard.framework.Applet {
    protected JavaPurse(byte[] bArray, short bOffset, byte bLength) {
    public static void install(byte[] bArray, short bOffset, byte bLength) {
    new JavaPurse(bArray, bOffset, bLength);
    Does anyone of you know why JBuilder is displaying this error message?
    Thanks in advance fo you reply.
    Alain.

    I don't think that's the error message; there is no class "java.awt.Applet". Are you sure it doesn't say "java.applet.Applet"?
    In any event, I don't know about javacard, but I suspect that javacard applets are not interchangeable with browser applets. My guess is that when JBuilder tries to build an applet, it's thinking about browser applets. Therefore it expects your applet to be a subclass of java.applet.Applet.
    I don't know how JBuilder works, but perhaps you can try using normal compilation instead of whatever JBuilder provides for applets.

  • GetCodeBase() generates "does not have a public constructor"

    I've been searching the net for days, and I seem to be the only guy with this problem. Here's the simple code:
    public class testapplet extends JApplet {
    public testapplet() {
    URL url = getCodeBase();
    I get the error message:
    The applet testapplet does not have a public constructor testapplet()
    I once had the same error message, but it was an entirely different problem. At that time, I made an JMenu[2] and somewhere in the code addressed JMenu[3];
    As I said, this has nothing to do with my current problem, but I get VERY frustrated when I get such an error.
    I'm running JBuilder6 on Win XP. Please help! desperate cry

    Damn, it helped. O_O Thanks a lot! As you can tell, I'm new to this. I was surprised since in my other program, I wrote a lot of stuff without that init procedure and it worked...
    Thanks again!

  • Type 'Microsoft.SharePoint.WebControls.EmbeddedFormField' does not have a public property named 'div' - SharePoint 2013

    I was changing my Home page's Master Page, so I went to the advanced mode via SharePoint designer and changed the Master Page line, then that happened! I tried to export and Import the Home.aspx but same?!

    Hi,
    According to your post, my understanding is that you got errors when you changed the master page.
    Based on the earlier threads, If you forget the <zone template> tags, this issue may happen.
    You can wrap your whole code in a <div> tag, then check whether it works.
    There are some similar threads for your reference.
    http://mysharepointwork.blogspot.com/2011/07/type-microsoftsharepointwebcontrolsscri.html
    http://www.sharepointboris.net/2009/02/type-microsoftsharepointwebcontrolsformfield-does-not-have-a-public-property-named-xmlnssharepoint-error/
    http://social.technet.microsoft.com/Forums/en-US/89e99b85-5af3-45c1-a39e-677711329aba/error-systemwebuiwebcontrolscontentplaceholder-does-not-have-a-public-property-named?forum=sharepointadminprevious
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Wscompile + xmlbeans: class does not have a public accessible empty constru

    Hi
    I have some schema files from 3gpp.org and created java files with xmlbeans.
    Now I try to use them but wscompile complains:
    error: class provider.VersionType$Enum does not have a public accessible empty constructor
    that class is generated by xmlbeans and I can't modify it...
    The class is an innner class of an interface, and looks like this:
    * Enumeration value class for provider.VersionType.
    * These enum values can be used as follows:
    * <pre>
    * enum.toString(); // returns the string value of the enum
    * enum.intValue(); // returns an int value, useful for switches
    * // e.g., case Enum.INT_X_5_3_0
    * Enum.forString(s); // returns the enum value for a string
    * Enum.forInt(i); // returns the enum value for an int
    * </pre>
    * Enumeration objects are immutable singleton objects that
    * can be compared using == object equality. They have no
    * public constructor. See the constants defined within this
    * class for all the valid values.
    static final class Enum extends org.apache.xmlbeans.StringEnumAbstractBase
    * Returns the enum value for a string, or null if none.
    public static Enum forString(java.lang.String s)
    { return (Enum)table.forString(s); }
    * Returns the enum value corresponding to an int, or null if none.
    public static Enum forInt(int i)
    { return (Enum)table.forInt(i); }
    private Enum(java.lang.String s, int i)
    { super(s, i); }
    static final int INT_X_5_3_0 = 1;
    public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table =
    new org.apache.xmlbeans.StringEnumAbstractBase.Table
    new Enum[]
    new Enum("5.3.0", INT_X_5_3_0),
    private static final long serialVersionUID = 1L;
    private java.lang.Object readResolve() { return forInt(intValue()); }
    Can anyybody help me ?
    thanks
    Gabor

    Sorry, I think you are out-of-luck on this one. The JAXRPC spec mandates that an acceptable value type have a public empty constructor. The only work-around I can suggest is to write a wrapper bean around this one that has such a constructor and use that in you interface instead.

  • My Mac has FaceTime 2.0 and it is terrible, I tried to download a new copy but the apple store does not have 2.0 Also I chat was the way I communicated before I upgraded. What happened?

    I upgraded to Lion X and have been having problems with FaceTime my version is 2.0 and the Apple store does not have this version, what happened to the changes, I used to use IChat and it was great, this is no longer available. Any hints for video conferencing or for what is going on.

    You can video conference with the iChat component of Messages. Not sure if that's possible with Facetime. I have been using Facetime for video chat without any problems. Quality is no different than with iChat.

  • HT204408 When trying to log into face time I get the registering device does not have appropriate credentials, I have OSX 10.8.4 on my Mac Pro. I can log in using my IPAD

    When trying to log into face time I get the registering device does not have appropriate credentials after I sign in, I have OSX 10.8.4 on my Mac Pro. I can log into face time without a problem using my IPAD.>

    Please take each of the following steps that you haven't already tried, until the issue is reolved. If there's no resolution after Step 3, post your results.
    Step 1
    Sign out of iMessage in the Accounts tab of the preferences dialog, then sign back in.
    Step 2
    Log out of your user account and log back in.
    Step 3
    Boot in safe mode and test, then reboot as usual and test again.
    Note: If FileVault is enabled on some models, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including sound output and  Wi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.

  • Is there a way to remove my facebook contacts from my phone contacts list?  I had an iphone 4 and it was easy to shut off from teh contacts through the groups link at the top left, but the iphone 5s does not have this feature nor can i figure it out throu

    Is there a way to remove my facebook contacts from my phone contacts list?  I had an iphone 4 and it was easy to shut off from teh contacts through the groups link at the top left, but the iphone 5s does not have this feature nor can i figure it out through the settings feature or anything else....HELP please as it is annoying to see all of these contacts!

    Hello ymprice91277, let's solve this mystery! To unlink the Facebook contacts go to Settings, Facebook, turn off contacts.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • I'm getting this error with bootcamp "The startup disk does not have enough space to be partitioned"

    Here's the story...
    I had a dual boot configuration on my mac with Mac OS X Lion and Windows XP (made with bootcamp).
    I decided to reinstall windows.
    I deleted the windows partition using BootCamp.
    Tried to recreate the Windows partition with Boot Camp and got: "The startup disk does not have enough space to be partitioned  You must have at least 10 GB of free space available"
    After reading several posts on this forum I decided to defrag the hard drive and try again. 
    The defrag did not work and I'm still getting the error, I have 22 gb of free space on my drive.
    Any suggestions?
    Also, I tried repair disk and repair permissions
    Hmm, my external harddrive says on the box "OS X 10.5.8 or higher (32-bit kernel only)"  Could the 32-bit requirement be an issue? Is lion 64-bit?

    Boot Camp must be able to allocate a contiguous block of space on the drive. If it cannot find 10 GBs of contiguous space, then you cannot create the Windows partition.
    You will have to backup your OS X partition to an external drive, boot from the external drive, use Disk Utility to repartition and reformat your hard drive back to a single volume, then restore your backup to the internal hard drive.
    Get an empty external hard drive and clone your internal drive to the external one.
    Boot from the external hard drive.
    Erase the internal hard drive.
    Restore the external clone to the internal hard drive.
    Clone the internal drive to the external drive
    Open Disk Utility from the Utilities folder.
    Select the destination volume from the left side list.
    Click on the Restore tab in the DU main window.
    Check the box labeled Erase destination.
    Select the destination volume from the left side list and drag it to the Destination entry field.
    Select the source volume from the left side list and drag it to the Source entry field.
    Double-check you got it right, then click on the Restore button.
    Destination means the external backup drive. Source means the internal startup drive.
    Restart the computer and after the chime press and hold down the OPTION key until the boot manager appears.  Select the icon for the external drive and click on the downward pointing arrow button.
    After startup do the following:
    Erase internal hard drive
    Open Disk Utility in your Utilities folder.
    After DU loads select your internal hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID then click on the OK button. Click on the Partition button and wait until the process has completed.  Do not quit Disk Utility.
    Restore the clone to the internal hard drive
    Select the destination volume from the left side list.
    Click on the Restore tab in the DU main window.
    Check the box labeled Erase destination.
    Select the destination volume from the left side list and drag it to the Destination entry field.
    Select the source volume from the left side list and drag it to the Source entry field.
    Double-check you got it right, then click on the Restore button.
    Destination means the internal hard drive. Source means the external startup drive.
    Note that the Source and Destination drives are swapped for this last procedure.

  • Received adobe photoshop elements 12/adobe premiere elements 12 when I purchased a MacBook Pro.   The macBook Pro does not have a DVD player it is sold separately.     To install the program can I download a free trial version and then use the serial numb

    Received adobe photoshop elements 12/adobe premiere elements 12 when I purchased a MacBook Pro.   The macBook Pro does not have a DVD player it is sold separately.     To install the program can I download a free trial version and then use the serial numbers from the set I received?

    yes, that's exactly what you should do,
    Downloads available:
    Suites and Programs:  CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5 | 4 | 3
    Captivate:  7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • HT2499 I have a new MacBook Pro with OS X Lion 10.7.4. The DVD player does not have a feature to store film clips. Why? This is useful for my work and I had it on my older computer? Why the loss of capacity?

    I have a new MacBook Pro with OS X Lion 10.7.4. The DVD player does not have a feature to store film clips. Why? This is useful for my work and I had it on my older computer? Why the loss of capacity?

    I cannot recall the DVD player ever being a place to "store" videos - it is simply an app to play videos.
    If your machine is new, then iMovie should be included as the "shrunk" version of iLife is included with Lion (iMovie, Garageband, and iPhoto). However, iMovie is not a place to store videos either - it is a video editor. You import your clips and edit them in order to then burn to a DVD or share via a social media site.
    Have you considered simply dragging the clips to your folder "Movies"? That would be a great place to just store them (please be aware that videos are usually large files, so keep your hard drive space in mind so you keep a minimum free and available for the OS to operate properly):

  • I have a digital voice recorder with a 3.5mm mic and headphone jack and want to transfer some recorded lecture to my mac book pro.  The mac book does not have 3.5mm  jacks.  Does anyone know if a jack to USB converter would work?

    I have a digital voice recorder with a 3.5mm microphone and headphone jack and want to transfer some recorded lectures to my mac book pro.  The mac book does not have 3.5mm  jacks.  Does anyone know if a jack to USB converter would work?

    Is there a pattern to the time of day or other detail that may be
    traced back to a OS X system cause of this odd phenomenon?
    Are there any copies of system files on any of the attached USB
    external drives? Any libraries, such as iTunes, iPhoto, etc?
    Once the drives are indexed by Spotlight, are their permissions
    ignored by the OS X? Content, if neutral, should not affect the
    wake or sleep cycle; especially if they're ignored by the OS X.
    Could there be a bad cable or other component? If so that would
    be a difficult process of elimination to detect it. Usually replacing
    most suspect components in the USB stream (external to Macs)
    is a rote way to mechanically test that idea; & not 100% sure.
    Does the equipment all have a good ground to the utility or house
    electrical field? An intermittent ground may affect more than sleep.
    Hard to say at this point. Maybe a late-night talk radio guru on
    remote viewing could peer into your situation and sleuth it out?
    Sorry to have run out of ideas, but the process must be electrical
    & mechanical to some extent. - Or perhaps odd software inspired.
    Do you have any phone-home spyware items inside, just jumping
    at the chance to spill your information? Little Snitch may help.
    PS: Perhaps the computer needs to go into Apple & have a genius
    or product specialist at AASP test the unit thoroughly... BlueTooth?
    see:
    https://www.google.com/?gws_rd=ssl#q=Wake+reason:+XHC1
    Good luck & happy computing!
    edited 2x

  • "The startup disk does not have enough space to be partitioned?" WHY!??

    I"m trying to intall windows 7 on my Macbook air  OS X 10.6. When i enter bootCam i get this error "The startup disk does not have enough space to be partitioned" . It says I need 10GBs of free space, even though I have 500GBs of free space on my drive external hardriver.
    I did my research, and a lot of people are saying to use idefrag and defrag the hardrive, which i did. I also verifed disk permissions and repaired disk permission and all the other stuff.
    What should i do? Apple hass the shittiest service. I spend $1100 bucks for something and i don't even get support without paying? to me, that's BS. so if anyone could help i would greatly appreciate it.

    Thanks Bob.
    And now to close this thrilling episode we will sing the "Dragnet Theme Song". All together now.....
    “Dum De Dum Dum…”
    “Dum De Dum Dum Dum”

  • Wrong Sender Agreement:The Sender agreement does not have channel

    Hi Guys,
    I am trying RFC to File scenarion where I am triggering a report which is calling a RFC module I have given the destinaztion name correct .When I am executing the report it is failing giving the following error
    "Wrong Sender Agreement:The Sender agreement does not have channel"
    I have checked that sender agreement is there.
    Also when Iam changing the RFC call by removing IMPORTING parameters and adding IN BACKGROUND TASK It is getting executed and goin to XI successfullly but after adding IMPORTING Param it is failing ?
    Any suggestion on the same?
    Regards

    Hi Guys ,
    I have tested the same again from RFC directly without Report and after some time it failed giving 'SYSTEM ERROR'.
    When i checked the channel it is giving following error:
    Error: 2008-01-10 13:36:19 IST: Message processed for interface Z_RFC_TESTSYNCASYNC: com.sap.aii.af.mp.module.ModuleException: call to messaging system failed: com.sap.aii.af.ra.ms.api.DeliveryException: Received HTTP response code 500 : Timeout caused by: com.sap.aii.af.ra.ms.api.DeliveryException: Received HTTP response code 500 : Timeout
    Any help now ?
    Regards

Maybe you are looking for

  • Access Denied to report file on Windows Server 2003 Enterprise

    Hi, I have a deployment problem for which I am out of ideas. I have an ASP.NET web site deployed on a server running Windows Server 2003 R2, sp2.  It makes extensive use of Crystal Reports, including both displaying them and e-mailing them to specifi

  • ITunes sees existing iPhone as a new device!

    Hi, my first post here but I have been lurking for some time! A friend asked me to update his and his wife's iPhone's (both 3GS) to iOS 5 (currently on 4.2.1). I popped round to do it this but every time I plug his iPhone in, iTunes sees it as a new

  • Playing 5thGen through USB Port / Xbox 360

    My iPod is not recognized by anything other than a PC. I had an older iPod that I could plug into my Xbox 360 or a DVR cable box and I would get a "Do not disconnect" sign, and be able to play through these devices. When i plug my new 5th gen ipod in

  • Dual External Monitor Solution

    Hello, I currently have a late-2011 MBP, which only has one Thunderbolt port for an external monitor. I am used to using two external monitors for my workflow on my Linux machine, and would like to be able to continue to do the same thing with a MBP.

  • Line Item Dimension in a Infocube

    Hi, What is a Line Item Dimension in BI and How can/based on What factors we can decide declare a Infoobject as a Line Item dimension in Cube How to measure size of the fact table Thanks