Outof memory exception

Hi,
is any body help me?
I m facing a problem in my servlet file. Actually i m creating a image with combination of two image. If i use small size image(inside 1MB) it is created perfectly but more than 1MB it is throwing outofmemory exception. Normally in application i can handle it in command line argument like
java -Xms64M -Xmx512M myfile
But it is not possible with servlet file bcoz i can't able to run my servlet file in command line like above i mentioned. I also set the JAVA_OPTS variable in environment variable. But it is still throwing the same exception. So can anybody tell me how can i solve this problem.
Thanx in advance.

I've never delt with images in a servlet however i often found that if you have gifs or jpegs when you load them they are decompressed and therefore take more memory space so you could try using a BufferedImage with less colors to limit the amount of memory taken.

Similar Messages

  • Java.lang.Outof Memory Exception for Image

    Hi
    I am having an applet which displays some tiff image. when i am trying to print that image , iam getting OutOf Memory exception ....
    I increased heap size by setting the environment variable...
    i.e Variable : JAVA_OPTS
    Value : -Xms128m -Xmx 512m
    Even though i increased the heap size, i am getting the same exception...
    Can any body solve it ....
    Exception is :..........
    Java.lang.OutOfMemoryError
    Thanks

    Hello,
    I have the same pb... (see "TIFF : how to read with tiles")
    I just know that we have to divide the tiff into a grid of "tiles".
    By playing with tiles, images are processed gradually instead of being entirely stored in the memory.
    But I don't know how to do...

  • Out Of Memory Exception While Loading Images in Windows Phone 8 Silverlight App?

    Hi,
    I am developing a windows phone 8 silver light app , I am loading high resolution images from web  through image control , After loading 2-3 images I am getting outof memory exception ,
    I am unable to catch this , and I am unable to break this exception , Can anyone tell me how to handle this exception,
    I am searching solution for this  from last 15 days but I am unable to find solution,
    I tried by setting the bitmap image source to null by doing this also I am getting exception, I tried by using gc.collect() also ..
    First I am loading list of images in listbox with lowres of size 100X100 , in selection change event I am changing the image source , 
    My image control code is
    <Canvas Width="480" Height="720">
    <Image Width="480" x:Name="MyImage" Height="720" Stretch="Uniform" >
    <Image.Source>
    <BitmapImage x:Name="MyImage1"/>
    </Image.Source>
    <toolkit:GestureService.GestureListener>
    <toolkit:GestureListener Flick="GestureListener_Flick_1"
    PinchStarted="OnPinchStarted" DragDelta="GestureListener_DragDelta"
    PinchDelta="OnPinchDelta"/>
    </toolkit:GestureService.GestureListener>
    <Image.RenderTransform>
    <CompositeTransform x:Name="myTransform"
    ScaleX="1" ScaleY="1"
    TranslateX="0" TranslateY="0"/>
    </Image.RenderTransform>
    </Image>
    </Canvas>
    My listbox selection changed code is
    GC.Collect();
    GC.WaitForPendingFinalizers();
    Classes.PgaeInfo ob = listpages.SelectedItem as Classes.PgaeInfo;
    progressLoad.Visibility = Visibility.Visible;
    LayoutRoot.Opacity = 0.8;
    LayoutRoot.IsHitTestVisible = false;
    StackPanel st = sender as StackPanel;
    index = ob.pId - 1;
    JArray jsonArray = JArray.Parse(json);
    JToken jsonArray_Item = jsonArray[index];
    string sour = "xxx.xxx.xxx.jpeg" (only one image for sample)
    img.Source = null;
    DisposeImage(bm);
    img.Source = new BitmapImage(new Uri(sour));
    MyImage1.UriSource = null;
    MyImage1.DecodePixelHeight = (int)img.Height;
    MyImage1.DecodePixelWidth = (int)img.Width;
    MyImage1.UriSource = new Uri(sour);
    Any help..
    thanks..
    Suresh.M

    Hello Suresh,
    Are you loading multiple images at once on one page? If so this is an expected behavior. There is limited memory available per app so it's important to not load too large or too many photos at once in your app.
    If possible you can try to convert your Windows Phone 8 to Window Phone 8.1 so as to take advantage of the FlipView control which is built to handle photo gallery-like applications.
    Also you can always run the Windows Phone Application Analysis tool to check on the application performance and memory usage. This will help you test and fine tune your app accordingly.
    Let me know if this helps.
    Abdulwahab Suleiman

  • Outof Memory Error

    Hi Experts,
    An Application of Webservices developed in Jdeveloper 10.1.2.2.0 and has been Deployed on Oracle Application Server 10g.
    Problem has been faced when the requests sent by the client program and no of requests increased to 1600 (estimated requests), then it shows the below error.
    ASOAPException:faultcode=SOAPENV:Server; msg=ajava.lang.outof Memory Error”
    Please guide us to resolve this irritating issue.
    Reply will be Appriciated.
    Muhammad Shahzad Baig
    Software Engineer

    Hi.
    First - I'd try to raise the application's -Xmx to something more than 32M. perhaps 64M.
    Now, there are two possible causes here:
    1 - your application is working ok, but it needs more memory than what the JVM can provide it with at a point of time. If that's the case - raising the -Xmx for the application will take care of it. (This is assuming there are no memory leaks in it).
    2 - your application has memory leaks in it - fix it.
    You can't catch OutOfMemory - it's not an exception raised in your program. It's raised in the JVM.
    Nimo.

  • Getting out of memory exception while loading images in web browser control one by one in windows phone 8 silverlight application?

    Hi, 
    I am developing a windows phone 8 silver light application . 
    In my app I am displaying images in web browser control one by one , those images are the web links , the problem is after displaying 2 to 3 images I am getting out of memory exception .
    I searched for this exception how to over come , everybody are saying memory profiling ,..etc but really I dont know how to release the memory and how to clear the memory .
    In some sites they are adding this
    <FunctionalCapabilities>
    <FunctionalCapability Name="ID_FUNCCAP_EXTEND_MEM"/>
    </FunctionalCapabilities>
    by doing this am I free from out of memory exception?
    Any help ,
    Thanks...
    Suresh.M

    string HtmlString = "<!DOCTYPE html><html><head><meta name='viewport' content='width=device-width,initial-scale=1.0, user-scalable=yes' /></head>";
    HtmlString = HtmlString + "<body>";
    HtmlString = HtmlString + "<img src=" + source +" />";
    HtmlString = HtmlString + "</body></html>";
    innerpagebrowser.NavigateToString(HtmlString);
    that image source is the web link for example www.sss.com/files/xxx/123.jpg .
    Note this link is not real this is sample and image is of size 2071X3097
    Suresh.M

  • Increasing Crashes "Read Only Memory Exception" HELP please!

    Over the past month and a half I'm starting to get regular and increasing crashes, mostly in my Adobe CS3 programs with this error:
    Read-only memory exception. A memory reference was made to an address that cannot be written to.
    unresolvablePageFaultException
    I am starting to get towards my wit's end and want to rule out hard drive or logic board problems. Today after I got this crash in Dreamweaver and Fireworks (for the first time in FW), all my programs stopped opening and responding. I am noticing in Activity monitor 2 continuous stalls:
    175 UserEventAgent (Not Responding) 0.0 3 4.10 MB 722.06 MB
    168 colormunkid (Not Responding) 0.0 1 8.20 MB 766.86 MB
    Even after reboots.
    Console said:
    5/19/08 9:13:55 AM [0x0-0x182182].com.adobe.dreamweaver-9.0 2008-05-19 09:13:55.462 Adobe Crash Reporter[9245:10b] (null)
    5/19/08 9:14:03 AM com.apple.launchd[152] ([0x0-0x183183].com.macromedia.fireworks[9240]) Exited abnormally: Segmentation fault
    5/19/08 9:16:20 AM Acrobat[9259] NSDocumentController Info.plist warning: The values of CFBundleTypeRole entries must be 'Editor', 'Viewer', 'None', or 'Shell'.
    Crash reporters say:
    Version: Adobe Fireworks CS3 version "9.0.1.1213" (9.0.1)
    Code Type: PPC (Native)
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000001, 0x00000000935dde9c
    Crashed Thread: 0
    Application Specific Information:
    * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[NSCFType count]: unrecognized selector sent to instance 0x1283b740'
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x24836e70
    Thread 0 Crashed:
    : Dreamweaver
    Path: /Applications/Adobe Dreamweaver CS3/Dreamweaver.app/Contents/MacOS/Dreamweaver
    Parent: WindowServer [84]
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x283040ff

    I am having a very similar problem with Dreamweaver 8 running
    on OS X10.4.11.
    If I choose passive FTP, Dreamweaver appears to upload a
    file, when in fact the error logs reports that the file could not
    be upload because it was not found, or because of permission
    problems.
    If I do not upload with passive FTP , Dreamweaver 8 crashes
    & Dreamweaver 8 loses the site's root folder, informing me that
    it cannot be found and I must use the manage sites feature to
    recreate the cache for the site that was there.
    If I use FETCH, no problem... all files are uploaded
    successfully.
    I recently had a hard drive failure on my Mac, had a new HD
    installed by the folks at the Genius Bar, and thought perhaps my
    new HD was buggy... however, now it seems there must a a
    permissions problem built into the Dreamweaver FTP protocols.
    I have not seen a patch for this, although when I reinstalled
    the software, I did download all updates.
    I know my reply offers no solutions, but I do thank you for
    your post.

  • Oracle BPM installed  Java out-of-memory exception

    Hi,
    I have installed the oracle BPM software in the server have the Ram capacity 8 GB,Could you please suggest some of the do's and don't's to avoid the Java out-of-memory exception which normally appearing on the console of weblogic server.
    My Server details,
    Windows 2008 R2 64 bit, RAM 8 GB,
    The required BPM s/w I installed from the link below,
    http://www.oracle.com/technetwork/middleware/bpm/downloads/index.html?ssSourceSiteId=ocomen
    Thanks in advance for your help.
    Regards,
    Shyam
    Edited by: user13821489 on 06-Feb-2011 22:45

    I had to increase JVM xmx/maxperm in the "set*Env.sh" scripts in the directory where you start WLS. In my dev environment, deploying BAM & BPM together with the Admin server, I finally allocated 4GB max. Jdev.conf is also better if you allocate > 1GB - mine is 1.4GB. I also watch process memory. Multiple re-deployments in my development environment seem to increase the memory, even if I remove process instances and undeploy first. I don't understand the internals very well so perhaps it is behaving correctly, but restarting WLS frees the unused memory that I expected gc to reclaim.

  • -17500 System Our of Memory Exception

    Hello,
    I am seeing strange behavior when I first start TestStand. I am getting an error -17500 'System Out Of Memory Exception was thrown' when executing the 'Create plug-in cache' step in the sequence 'Initialize Model Plugins' in the ModelSupport.seq. Here's the kicker: I only see this error when I try to run TestStand through a LabWindows/CVI GUI. I do not see this error when running TestStand from the Sequence Editor or a LabVIEW GUI I am using TS 2012 and CVI 2012. I am rnning the Parallel model. When I look at the Windows Task Manager Performance I do not see any memory issues. I have uninstalled and reinstalled TS and CVI to no avail. I am hoping someone else may have experienced this problem o rhave an idea of what the possible culprit is. I am running out of options.
    I have attached a screen shot of the Run-Time Error window.
    Thank you in advance for your help,
    Jim
    Solved!
    Go to Solution.
    Attachments:
    TestStand Out of Memory.jpg ‏44 KB

    See the following(Why do I Get an Out of Memory Exception (Error Code -17500; Operation Failed) when Using LabWindows/CVI Built TestStand User Interface with .NET 4.5?):
    http://digital.ni.com/public.nsf/allkb/0136A53F98D​69B7286257AD70069A735?OpenDocument
    -Doug

  • URLStream.readBytes always throw out of memory exception (errorID=1000)

    When I try to load a file as 180MBytes by using URLStream.readBytes(). 
    In some PCs, it's OK.
    But in some PCs, there are always [out of memory] exception (errorID=1000) even such PC still had enough memory.
    For example:
       Total memory is 2G, current used is 1.43G, but URLStream.readBytes() still throw such exception.
    For file with little size such as 30M, there isn't such problem.
    Could any body give some suggestion?
    Best regards,
    Sourcecode is very simple like:
      var myStream:URLStream;
      var inputBytes: ByteArray = new ByteArray();
      ... do load ...
      // load by progressive event. I only deal progress load once, and ignore all later progressive load events.
      // for example first 500KBytes was read.
      myStream(inputBytes,inputBytes.length);
      // load again when all datas is loaded completely. For example, 180MBytes should be read.
      try {
        myStream(inputBytes,inputBytes.length);
      }  catch(e:*) {
        // warning log

    When I try to load a file as 180MBytes by using URLStream.readBytes(). 
    In some PCs, it's OK.
    But in some PCs, there are always [out of memory] exception (errorID=1000) even such PC still had enough memory.
    For example:
       Total memory is 2G, current used is 1.43G, but URLStream.readBytes() still throw such exception.
    For file with little size such as 30M, there isn't such problem.
    Could any body give some suggestion?
    Best regards,
    Sourcecode is very simple like:
      var myStream:URLStream;
      var inputBytes: ByteArray = new ByteArray();
      ... do load ...
      // load by progressive event. I only deal progress load once, and ignore all later progressive load events.
      // for example first 500KBytes was read.
      myStream(inputBytes,inputBytes.length);
      // load again when all datas is loaded completely. For example, 180MBytes should be read.
      try {
        myStream(inputBytes,inputBytes.length);
      }  catch(e:*) {
        // warning log

  • Large DataTable causes out of memory exception

    Hello Support 
    We have a datatable that returns 112970 records and have 51 columns.
    When we try generate an xls file or display data result in grid view than "System Out of memory exception" is thrown.
    OS : Windows 2003 Enterprise 32 Bit
    HP DL380 G4
    CPU 2x3.6GHZ
    6 GB RAM
    Can you help us to find a resolution to this issue?
    Thank you
    Shrenik
    Maurice

    Thanks for reply.
    1> .XLXS format allows us >= 133000 records in spread sheet some times and some times it throws Exception of type 'System.OutOfMemoryException'.
    2> We are using asp.net gridview.
    Exception:
     ExceptionObject : Message : Exception of type 'System.OutOfMemoryException' was thrown.
    Data : System.Collections.ListDictionaryInternal
    InnerException : Nothing
    TargetSite : System.String ToBase64String(Byte[], Int32, Int32, System.Base64FormattingOptions)
    StackTrace :    at System.Convert.ToBase64String(Byte[] inArray, Int32 offset, Int32 length, Base64FormattingOptions options)
       at System.Web.UI.ObjectStateFormatter.Serialize(Object stateGraph, Purpose purpose)
       at System.Web.UI.ObjectStateFormatter.System.Web.UI.IStateFormatter2.Serialize(Object state, Purpose purpose)
       at System.Web.UI.Util.SerializeWithAssert(IStateFormatter2 formatter, Object stateGraph, Purpose purpose)
       at System.Web.UI.HiddenFieldPageStatePersister.Save()
       at System.Web.UI.Page.SavePageStateToPersistenceMedium(Object state)
       at System.Web.UI.Page.SaveAllState()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) HelpLink : Nothing Source : mscorlib HResult : -2147024882
    Please see below code for more information.
        protected void Button1_Click(object sender, EventArgs e)
            try
                DataTable _dt = GetDataFromDB();
                ViewState["dtQueryResults"] = _dt;
                BindgvQueryResults();
                messageLabel.Text = "";
            catch (Exception ex)
                messageLabel.Text = "Query execute error: " + ex.Message;
        private void BindgvQueryResults()
            if (ViewState["dtQueryResults"] != null)
                DataView _dv = ((DataTable)ViewState["dtQueryResults"]).DefaultView;
                if (ViewState["gvQRSortExpression"] != null && ViewState["gvQRSortDirection"] != null)
                    _dv.Sort = ViewState["gvQRSortExpression"].ToString() + ViewState["gvQRSortDirection"].ToString();
                gvQueryResults.DataSource = _dv;
                gvQueryResults.DataBind();
    private DataTable GetDataFromDB()
            SqlCommand _Cmd = null;
            SqlConnection _Con = null;
            try
                _Con = DBInteraction.InstantiateConnection();
                _Cmd = new SqlCommand();
                _Cmd.Connection = _Con;
                _Cmd.CommandTimeout = 300;
                if (_Con.State != ConnectionState.Open)
                    _Con.Open();
                try
                    _Cmd.CommandText = CriteriaBuilder1.QueryTransformer.Sql;
                catch(NullReferenceException)
                    throw new ApplicationException("Error message.");
                if(string.IsNullOrEmpty(CriteriaBuilder1.QueryTransformer.Sql))
                    throw new ApplicationException("This query does not have any text. Please add views in the query and try again.");
                _Cmd.CommandType = CommandType.Text;
                DataTable _dt = new DataTable();
                SqlDataAdapter adaPTer = new SqlDataAdapter(_Cmd);
                adaPTer.AcceptChangesDuringFill = false;
                adaPTer.Fill(_dt);
                if (_dt.Rows.Count == 0)
                    throw new ApplicationException("Your request did not return any results.");
                return _dt;
            catch (Exception ex)
                throw ex;
            finally
                if (_Con.State == ConnectionState.Open)
                    _Con.Close();
    Maurice

  • Large Bitmaps create out of memory  exception

    Hello,
    I try to generate a "BufferedImage" from a Windows Bitmap file ( xxxx.BMP ) .
    I can read and generate relatively images from relatively small files (e.g. 852x626 pixels works fine),
    but if it comes to larger images, I get an out of memory exception.
    Has anybody an idea how to convince Java to read also large BMP image files.
    If I create an awt "Image" even large images (eg 1200x5000 pixels are generated).
    But unfortunately I have found no way to convert an "Image" to a "BufferedImage" and
    only "BufferedImage" offers all the processing methods needed.
    This is the code snippet I wrote:
    ------------ start of code snippet -----------------------------------------------------
    try {
    DataBufferInt dbBMPInt = new DataBufferInt(nwidth*nheight);
    System.out.println("DataBufferInt = "+dbBMPInt);
    int [] bitMasks = new int[3];
    bitMasks[0] = (int)0xff<<16;
    bitMasks[1] = (int)0xff<<8;
    bitMasks[2] = (int)0xff;
    SinglePixelPackedSampleModel spSM = new SinglePixelPackedSampleModel(DataBuffer.TYPE_INT,nwidth,nheight,bitMasks);
    System.out.println("SinglePixelPackedSampleModel = "+spSM);
    WritableRaster bmpRaster = WritableRaster.createWritableRaster((SampleModel) spSM, (DataBuffer) dbBMPInt, new Point(0,0));
    System.out.println("WritableRaster = "+bmpRaster);
    bmpImage = new BufferedImage(nwidth,nheight,BufferedImage.TYPE_3BYTE_BGR);
    System.out.println("BufferedImage = "+bmpImage);
    bmpImage.setData(bmpRaster);
    catch (Exception exCrBm)
    { /* 001 start catch */
    exCrBm.printStackTrace ();
    } /* 001 end catch */
    ----------------------------------------------- end of code snippet --------------------
    and this is the generated output.
    File type is :BM
    Size of file is :1600110
    Size of bitmapinfoheader is :40
    Width is :852
    Height is :626
    Planes is :1
    BitCount is :24
    Compression is :0
    SizeImage is :1600056
    DataBufferInt = java.awt.image.DataBufferInt@1774b9b
    SinglePixelPackedSampleModel = java.awt.image.SinglePixelPackedSampleModel@8080b54
    WritableRaster = IntegerInterleavedRaster: width = 852 height = 626 #Bands = 3 xOff = 0 yOff = 0 dataOffset[0] 0
    BufferedImage = BufferedImage@b9e45a: type = 5 ColorModel: #pixelBits = 24 numComponents = 3 color space = java.awt.color.ICC_ColorSpace@3ef810 transparency = 1 has alpha = false isAlphaPre = false ByteInterleavedRaster: width = 852 height = 626 #numDataElements 3 dataOff[0] = 2
    Any help appreciated
    Regards
    Wolfgang

    Increase your maximum heap memory size.
    Se -Xmx parameter of java.exe
    Have a nice programming day,
    Jos�.

  • Getting an Out of memory exception while validating XML against XSD

    Hello friends,
    I am getting an Out Of Memory exception while validating my XML against a given XSd which is huge.
    SAXParserFactory saxParserFactory = SAXParserFactory.newInstance();
            saxParserFactory.setValidating(true);
              SAXParser saxParser = saxParserFactory.newSAXParser();
             saxParser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaLanguage", "http://www.w3.org/2001/XMLSchema");
             saxParser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaSource",new File("C:/todelxsd.xsd")); as u may see the darkened code. this basically Loads the XSD in Memmory , and JVM throws an out of Memory exception. is there any other way round of validating an XML against an XSD where i dont have to load my XSD if not then kindly let me know the solution for above problem .
    Thanks.

    Yes, but increasing the heap size is a temporary solution , isnt there a way where the XML can be validated against an XSD without having to load XSD in memory

  • Getting an out of memory exception while validating my XML against a XSD

    Hello friends,
    I have asked this question in following thread too. Pasting it again here just to saye your time
    http://forum.java.sun.com/thread.jspa?threadID=690812&tstart=0
    I am getting an Out Of Memory exception while validating my XML against a given XSd which is huge.
    SAXParserFactory saxParserFactory = SAXParserFactory.newInstance();
            saxParserFactory.setValidating(true);
              SAXParser saxParser = saxParserFactory.newSAXParser();
             saxParser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaLanguage", "http://www.w3.org/2001/XMLSchema");
             saxParser.setProperty("http://java.sun.com/xml/jaxp/properties/schemaSource",new File("C:/todelxsd.xsd")); as u may see the darkened code. this basically Loads the XSD in Memmory , and JVM throws an out of Memory exception. is there any other way round of validating an XML against an XSD where i dont have to load my XSD if not then kindly let me know the solution for above problem .
    Thanks.

    Yes, but increasing the heap size is a temporary solution , isnt there a way where the XML can be validated against an XSD without having to load XSD in memory

  • Out of memory exception in win2kServer

    I have written a JAVA program to read an AutoCAD DXF file and grapgically display the contents as in AutoCAD. Whwn i try to pass a particular file ( say 15MB)
    the JVM gives out of memory exception in Win2k Advance Server ( it takes about 70MB ) before throwing the error.
    This machine has 256 mb , but in another machine whivh runs win2K profesional with128Mb opens the file without any error nd only consumes 35MB.
    I use the same JVM in both machines( jdk1.3.0)
    is this because of any bugs in resource allcation in the win2k Server

    Have you added the -Xmx command line option to expand the default amount of memory that the JVM is allowed to allocate? Run 'java -X' for help

  • Out of Memory exception

    Hi All,
    I am using Weblogic server 10.3.2 . when 3 to 5 people hitting server after some time it is giving out of memory Exception ,even i assigned memory parameters maxPermSize:1024 then also i am getting same error.
    Application developed using Jdeveloper11g.
    Can you please help me figure out the problem.
    Thanks and Regards
    Sreedhar

    take a heap dump and use Eclipse MAT to examine the content of the heap
    Only if you understand the kind of objects which fill your heap you can solve your problem.
    If you use JRockit you can enable oomdiagnostics, basically a post mortem heap dump at the moment the OOM error occurred.
    Often it is sufficient to look at the code you are executing: do you have for loops who instantiate objects and put them into a Collection?

Maybe you are looking for

  • How to stop the calendar from adding reminders?

    I have had a problem with events randomly having an alert assigned to them. These are events that have never had a reminder set to them before, the reminder is always set to 9am the day before the event, and is on events that repeat. I can go in a re

  • Cannot open the zip attachment in pdf file

    I am using the Adobe Acrobat 8.1.2 professional and i attach the zip file in the pdf file after that, the user that just use the Adobe Reader 8.1.2 cannot open the Adobe zip attachment. Do i do any one in add the attachment or the Reader cannot open

  • Ipod Classic won't display on Samsung HDTV

    Hi, I searched the forums, and someone has already asked this but no one has been able to answer. I thought I'd try it because I'm desperate. I have an awesome brand new HDTV by Samsung. I went and purchased the component cables for my ipod classic.

  • Why does Acrobat allocate more width for spaces than for alphanumeric characters?

    When I convert a text file to PDF using Acrobat X Pro, I select a fixed-width font.  However, it appears that Acrobat allocates a greater width for space characters in the text file, than it does for alphanumeric characters in the text file.  How do

  • Help on how to use BAPI_ACC_DOCUMENT_POST...

    Hello experts, Please help me on how to use the BAPI BAPI_ACC_DOCUMENT_POST. I dont have the time to record via SHDB and do BDC and I would like to try out the said BAPI. I think this will be faster I need to fill in the header, line items, etc. Any