IGS COnverted BMP Image upload problem in SE78

HI Friends,
I Converted the JPEG image into BMP ormat by using IGS. It is converting properly. i am able to see the BMP image. When i am trying to upload it through the SE78 i am getting the short dump.
If convert it manually, i am able to upload the image. i did not get the any difference between these two including file size, width and height.
I attached the shortdump and converted image file as an attachment. Can anyone give me inputs where i am missing the target.
Runtime error : COMPUTE_INT_TIMES_OVERFLOW
Exception : CX_SY_ARITHMETIC_OVERFLOW
Thanks ,
Srinivas Bhavanam

Hi Oisin,
Sorry for the Late Reply. I am using IGS 6.40 with solaris system.
If i am converting the image from my desktop i am getting 96DPI resolution. Where as if i am doing it from IGS i am getting 30682172 DPI resolution.
I am using SAP 4.7. Is it the latest patch level or latest IGS supported.
Short Dump :
Runtime Error          COMPUTE_INT_TIMES_OVERFLOW
Exception              CX_SY_ARITHMETIC_OVERFLOW
       Occurred on     03.03.2010 at   11:04:30
Whole number overflow on multiplication.
What happened?
Error in ABAP application program.
The current ABAP program "SAPLSTXBITMAPS" had to be terminated because one of
the
statements could not be executed.
This is probably due to an error in the ABAP program.
What can you do?
Print out the error message (using the "Print" function)
and make a note of the actions and input that caused the
error.
To resolve the problem, contact your SAP system administrator.
You can use transaction ST22 (ABAP Dump Analysis) to view and administer
termination messages, especially those beyond their normal deletion
date.
Error analysis
An exception occurred. This exception is dealt with in more detail below
. The exception, which is assigned to the class 'CX_SY_ARITHMETIC_OVERFLOW',
was neither
caught nor passed along using a RAISING clause, in the procedure
"FILL_BMFILE_FROM_BMP" "(FORM)"
Since the caller of the procedure could not have expected this exception
to occur, the running program was terminated.
The reason for the exception is:
In the current program "SAPLSTXBITMAPS", multiplying the numbers 1207959552 and
100 (using the operation * or 'MULTIPLY') resulted in a value
greater than 2147483647 or smaller than -2147483648. This
results in a whole number overflow.
How to correct the error
The exception must either be prevented, caught within the procedure
"FILL_BMFILE_FROM_BMP"
"(FORM)", or declared in the procedure's RAISING clause.
To prevent the exception, note the following:
You may be able to split the process into separate components, so that
the values generated are smaller.
If the error occurred in one of your own programs or in an SAP program
that you modified, try to correct it yourself.
If you cannot solve the problem yourself, please send the
following documents to SAP:
1. A hard copy print describing the problem.
   To obtain this, select the "Print" function on the current screen.
2. A suitable hardcopy prinout of the system log.
   To obtain this, call the system log with Transaction SM21
   and select the "Print" function to print out the relevant
   part.
3. If the programs are your own programs or modified SAP programs,
   supply the source code.
   To do this, you can either use the "PRINT" command in the editor or
   print the programs using the report RSINCL00.
4. Details regarding the conditions under which the error occurred
   or which actions and input led to the error.
System environment
SAP Release.............. "620"
Application server....... "EWR0R3DEV002"
Network address.......... "10.20.32.13"
Operating system......... "SunOS"
Release.................. "5.9"
Hardware type............ "sun4u"
Character length......... 16 Bits
Pointer length........... 64 Bits
Work process number...... 0
Short dump setting....... "full"
Database server.......... "EWR0R3DEV002"
Database type............ "ORACLE"
Database name............ "I07"
Database owner........... "SAPRGG"
Character set............ "C"
SAP kernel............... "640"
Created on............... "Mar 9 2009 21:04:19"
Created in............... "SunOS 5.8 Generic_117350-38 sun4u"
Database version......... "OCI_920 "
Patch level.............. "274"
Patch text............... " "
Supported environment....
Database................. "ORACLE 9.2.0.., ORACLE 10.1.0.., ORACLE
10.2.0.."
SAP database version..... "640"
Operating system......... "SunOS 5.8, SunOS 5.9, SunOS 5.10"
User, transaction...
Client.............. 999
User................ "SREDDY"
Language key........ "E"
Transaction......... "SE78 "
Program............. "SAPLSTXBITMAPS"
Screen.............. "SAPLSTXBITMAPS 4001"
Screen line......... 8
Information on where terminated
The termination occurred in the ABAP program "SAPLSTXBITMAPS" in
"FILL_BMFILE_FROM_BMP".
The main program was "SAPMSSCH ".
The termination occurred in line 1959 of the source code of the (Include)
program "LSTXBITMAPSF03"
of the source code of program "LSTXBITMAPSF03" (when calling the editor 19590).
Processing was terminated because the exception "CX_SY_ARITHMETIC_OVERFLOW"
occurred in the
procedure "FILL_BMFILE_FROM_BMP" "(FORM)" but was not handled locally, not
declared in the
RAISING clause of the procedure.
The procedure is in the program "SAPLSTXBITMAPS ". Its source code starts in
line 1843
of the (Include) program "LSTXBITMAPSF03 ".
Source code extract
019290     endcase.
019300   * compression
019310     perform bmptab_getdword_ofs tables bitmap_file
019320                                 using  ofs bmp_compression.
019330     case bmp_compression.
019340       when c_bmp_compr_rgb.              "BI_RGB, uncompressed
019350       when c_bmp_compr_rle8. "BI_RLE8, 256 colors colormap, rle encoding
019360       when c_bmp_compr_rle4. "BI_RLE8, 16 colors colormap, rle encoding
019370       when others. message e872 raising bmperr_unsup_compression.
019380     endcase.
019390   * size of image
019400     perform bmptab_getdword_ofs tables bitmap_file
019410                                 using  ofs bmp_sizeimage.
019420   * pix per meter X
019430     perform bmptab_getlong_ofs tables bitmap_file
019440                             using ofs bmp_xpelspermeter.
019450   * pix per meter Y
019460     perform bmptab_getlong_ofs tables bitmap_file
019470                             using ofs bmp_ypelspermeter.
019480   * colors used
019490     perform bmptab_getdword_ofs tables bitmap_file
019500                                 using  ofs word.
019510   * colors important
019520     perform bmptab_getdword_ofs tables bitmap_file
019530                                 using  ofs word.
019540     ofs_rgbquad = ofs_bitmapinfoheader + bmp_bisize.
019550   * now we have OFS_RGBQUAD    -> color table
019560   *             OFS_BITMAPDATA -> bitmap bytes
019570     otf_bminfo-new_rd_format = c_false.
019580     otf_bminfo-is_resident   = c_false.
>     otf_bminfo-dpi = ( bmp_xpelspermeter * 100 ) / 3937.
019600     perform bmp_adjust_dpi using otf_bminfo-dpi.
019610     otf_bminfo-w_pix = bmp_width.
019620     otf_bminfo-h_pix = abs( bmp_height ).
019630     otf_bminfo-w_tw = ( 1440 * otf_bminfo-w_pix ) / otf_bminfo-dpi.
019640     otf_bminfo-h_tw = ( 1440 * otf_bminfo-h_pix ) / otf_bminfo-dpi.
019650     case bmp_bitcount.
019660       when 1.
019670         otf_bminfo-bitsperpix = 1.
019680         otf_bminfo-bytes_per_row = otf_bminfo-w_pix div 8.
019690         rest = otf_bminfo-w_pix mod 8.
019700       when 4.
019710         otf_bminfo-bitsperpix = 4.
019720         otf_bminfo-bytes_per_row = otf_bminfo-w_pix div 2.
019730         rest = otf_bminfo-w_pix mod 2.
019740       when 8.
019750         otf_bminfo-bitsperpix = 8.
019760         otf_bminfo-bytes_per_row = otf_bminfo-w_pix.
019770         rest = 0.
019780       when 24.
Thanks & Regards,
Srinivas Bhavanam

Similar Messages

  • Image Upload Problems Today

    Today, on two occasions I've gotten an error trying to upload an image from my local hard drive to a thread.  Normally this has been working in IE9 for me, and in fact I've uploaded a number of images today successfully.  It happened once with a PNG and once with a JPEG  The reported problem, in the dialog the software puts up, was simply "Null".
    Any number of retries to upload the same or different image results in the same failure.
    I'm going to try uploading one of the very same images that failed before here.  If it fails, I'll capture the screen and upload it to my site, then post a link here.  If it succeeds, well, you'll just have to trust me that it happened.
    Bah, of course it succeeds when trying to reproduce a failure.
    Anyone else seeing image upload failures today?
    -Noel

    Likewise, I usually put up a lot of images.
    Here are several, just as a test and so this thread isn't completely filled with just all this boring old text...
    PNG:
    JPEG:
    GIF:
    Image insertion seems to work fine today.  The full moon WAS last night, after all...
    -Noel

  • Multiple image upload problem

    When trying to use the Multiple Image Upload feature I get this error
    A script in this movie is causing Flash Player 9 to run slowly, if it continues your computer may become unresponsive. Do you want to abort the script?
    This message pops up after a single file is uploaded, the second bar labeled progress remains at 0%.
    I have experimented with this all day with no luck, any help would be great...
    Forgot to mention, PHP/MYSQL
    Also happens if I try multiple file upload vs. image.
    I can't tell if it's ADDT or Flash, hopefully since they are both adobe someone can figure it out.
    Thanks in advance...

    Thanks for the reply, in this case it was a server setting that had to be modified. Mod_security would not allow folder creation by Apache. The single up loadd worked fine because it did not have to write a directory.
    It did not show up in the server logs for some reason.
    Hope this saves someone hours of trouble shooting.

  • PDF convertion - hebrew font upload problem

    Hello,
    I am trying to define hebrew support to pdf convertion according to note 569404 - but whenever i try to run the RSTXPDF2 report - instead of getting the browse window to choose from where i upload the fonts - the report directly goes to the end and has the error message - could not open file - i was'nt given the opportunity to choose one - on the DEvelopment and QA system i didn't have problems like that.
    I found that whenever in the first time you enter the above report - rstxpdf2 and run it - it opens a custom sap browse window to browse the local station and to choose the appropriate file - but if press on the cancel button - the window goes to the end of the report with the message file could not be opened - and from now on this is the result when i try to run the report - i don't get again the custom sap browse window to browse the local station and to choose the appropriate file
    regards,
    Moshe

    Check your user own data ...delete own data at the before runing the report.
    Did you try logging out and login again?
    Mathews

  • Image Upload Problem

    Hi To All
    I am developing one employee application. in this, The employee has to register with my application. He has to provide all his details. And finally he has to upload jpeg/gif/png format picture. Everything is working good. But the problem is, the image size. When ever the user clicks on his profile, the image should be displayed. I don't know how to upload an image into database with fixed size. if that image is big, then it has to compress to my specified height and width.
    If anyone knows this application, please help me. i am very thankful to you. Thanks in advance.

    you'll need to first resize the thing yourself before storing it. No database is going to do that for you (though possibly it might be possible to write a stored procedure or trigger to do it for some database engines, but you'd still need to write that code).

  • Multiple Image upload problem in IOS

    In my Application, I have to upload multiple pictures and I have used file upload control.  Application is working fine in IE Browser, Safari (on Windows) and other browsers, but getting problem with the Safari (IOS), After uploading the second pictures, first pictures gets replaced by the new one. This seems to problem only with mobile safari ( on IPAD, IPHONE with IOS 6.1). I have used the standard code <input type=file accept="image/*">.
    The flow is like, user will upload 4 pictures and then will hit the save button, but as I upload the another pictures, the other pictures gets refreshed and latest uploaded image is shown in All fields. But on Server correct file is uploaded.  Can anyone help me on this Problem?

    Apparently the problem is with the host. According to the
    host I was trying to install this on, there is a security issue
    with Flash upload programs and they don't allow them. So I tried a
    different host (Jodohost) and it worked.

  • Revised --Image Upload--- Problem??

    Hi again,
    I'm posting a revised question, maybe that clarifies better.
    We have a running Portal 3.0.7 with the default settings. We may upload any image (checked in WWDOC_DOCUMENT table), but the image files may not be shown in the portal(banner image, user picture..) Instead, on the related portal page a null image is shown.
    It seems there is a configuration error?? To where I should look for it?
    Ferhat
    null

    Just to clarify. You are adding images in the various edit wizards (e.g. in the edit banner wizard there is a field for the banner image) and these images get loaded, but not displayed. Is that correct?

  • [locked] Image Upload Problem

    Forum Admin:
    FYI when attempting to change my profile pic this morning; It either errors out with this "The uploaded file could not be read as an image." or, just times out. Happens in the profile area and when attempting to attach an image to a post. Tried in both Google Chrome and Internet Explorer 8.

    S.D.A. wrote:
    I would but the term 'seamonkey' is derogatory. It hurts the feelings of
    chimps like me, and I dislike Opera. Rock 'n Roll or Dancin music for me !
    Steve... don't get hassled... you're not a 'seamonkey' you're a 'land' monkey. Totally different... It's like comparing seahorses and horses. So, don't worry about it.

  • Image Upload problems

    Sometimes when we upload an image, the page tries to reload and wants us
    to download the PHP file itself. There is an error in the upload
    routine. I need to manually delete the record from the database before I
    can open the page again. Sound familiar to anyone?
    Alec
    Adobe Community Expert

    Seems to be related to the image dimensions. When one side approaches
    2070px, the error occurs. For example, with one image, 2072x1378 uploads
    fine, but 2073x1379 does not. With a different image 2071x1056 works
    fine, but 2072x1057 does not. These are 8-bit JPGs.
    Alec
    Adobe Community Expert

  • Simple Image Upload Problem

    Our users may add a logo to their content area. The logo is added as a file, and accessed from other pages using the technique described in the "Direct Access URL" online help.
    The portal defeats this strategy, however, since the direct access URL changes each time the item is modified. I can see exactly what is happening in wwv_things, and it's disturbing since it occurs whether one edits or one removes and replaces the item.
    What is the supported technique for accessing a folder item by name when the item name remains stable, but the file being accessed should change?

    Hi smith,
    Thanks for your reply.
    Some one told me to do something like this. I am getting square with red X. I have the images folder with code.gif file with in the ImageExample Class.
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import javax.servlet.ServletException;
    public class ImageExample extends HttpServlet{
    public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException{
    res.setContentType("image/gif");
    PrintWriter pw = res.getWriter();
    pw.println("<html>");
    pw.println("<body>");
    pw.println("<img src=\"/images/code.gif\">");
    pw.println("</body>");
    pw.println("</html>");
    pw.close();

  • Error while uploading the BMP image

    Hi All there,
    I am trying to upload the BMP image on desktop through Se78 but I am getting the error that
    This is not the a *.BMP file (they begin with <> ''BM")'
    Please help
    Regards
    Sagar

    Hi Sagar,
    You can try to save the image once again as .bmp image in your desktop and then try to upload through se78.
    Thanks
    Arul

  • Error in importing image into SAP using SE78

    Hi to all,
    I was trying to upload a '.bmp" image into SAP using SE78 but I failed.
    Se78 -> BMAP Bitmap Image -> Graphic -> Import -> Specified the complete path ->given name desc and type .
    Ended up with the following message.
    Graphic TRF_LOGO_REV could not be saved
    (2TRF_LOGO_REV)
    Pls. help as I am not sure whether I missed any step.
    Thankx in advance.

    Hi,
    Go to SE78 Transaction ie Aministration of form graphics,
           there select GRAPHICS General Graphics,under this BMAP Bitmap Images will come.
           select that,then a sub window will appear.
    There give the name of your logo and select the import button which is at the extreme left.
           Then again a sub window appears,there give the path name and name of the logo,and some description then press enter.
    Now the logo is uploaded,for preview you can select last button which is print preview.
    Now goto the form,select the window where you want to print the logo.
           Then in that window place the cursor at tag coloumn and select command line.
           Now go to INSERT and select GRAPHICS.A subwindow appers click on 'stored on Document Server',
           give the name of the logo and press enter.
           Then the image information will be displayed on the form.Save the form and activate it.
    Go to se38 transaction write the print program and execute.
    Regards,
    jaya

  • Error while uploading BITMAP image in SAP through SE78.

    Hello all,
    I am getting below error while uploading image into SAP through SE78.
    'Bitmap file: No color table available (True Color, Bitcount 32)'.
    I have tried searching for solution and got some help from below reply from a thread:
    You may do these options:
    1. Lower the resolution of the image
    2. Lower the file size of the image
    Regards,
    Reymar
    I have got a image size of 6.14 KB and resolution of 72*72 dots per inch.
    Thanks in Advance.
    - Jayant Sahu.

    Hi Daniel,
    First of all, if you dont mind, start a new thread for your question please.
    Anyways, answer to your question is --
    You need to save your picture with lower-most bits BITMAP Type. When you were saving your picture as .bmp, take care you are passing lower-most BITMAP type and not 24-bit as it may be as default.
    This way, your problem would be resolved.
    Thanks.
    Kumar Saurav.

  • How to convert JPG image to BMP ? (Printing jpg images in smartforms from content server)

    Hi,
    We have employee photos(JPG Format) stored in Content server. And now we want to print the photos in smartforms. For this I had written the below code to read the photo from content server in binary format as below.
    REPORT ZTEST1.
    PARAMETERS P_PERNR TYPE PERNR_D.
    DATA: PS_CONNECT_INFO TYPE TOAV0,
          IT_BINARY TYPE TABLE OF SDOKCNTBIN.
    CALL FUNCTION 'HR_IMAGE_EXISTS'
      EXPORTING
        P_PERNR                     = P_PERNR
    *   P_TCLAS                     = 'A'
    *   P_BEGDA                     = '18000101'
    *   P_ENDDA                     = '99991231'
    IMPORTING
    *   P_EXISTS                    =
       P_CONNECT_INFO              = PS_CONNECT_INFO
    * EXCEPTIONS
    * ERROR_CONNECTIONTABLE       = 1
    *   OTHERS                      = 2
    IF SY-SUBRC <> 0.
    * Implement suitable error handling here
    ENDIF.
    IF PS_CONNECT_INFO IS NOT INITIAL.
      CALL FUNCTION 'SCMS_DOC_READ'
        EXPORTING
       STOR_CAT                    = SPACE
       CREP_ID                     = PS_CONNECT_INFO-ARCHIV_ID
          DOC_ID                      = PS_CONNECT_INFO-ARC_DOC_ID
    *   PHIO_ID                     =
    *   SIGNATURE                   = 'X'
    *   SECURITY                    = ' '
    *   NO_CACHE                    = ' '
    *   RAW_MODE                    = ' '
    * IMPORTING
    *   FROM_CACHE                  =
    *   CREA_TIME                   =
    *   CREA_DATE                   =
    *   CHNG_TIME                   =
    *   CHNG_DATE                   =
    *   STATUS                      =
    *   DOC_PROT                    =
    TABLES
    *   ACCESS_INFO                 =
    *   CONTENT_TXT                 =
       CONTENT_BIN                 = IT_BINARY
    * EXCEPTIONS
    * BAD_STORAGE_TYPE            = 1
    *   BAD_REQUEST                 = 2
    *   UNAUTHORIZED                = 3
    * COMP_NOT_FOUND              = 4
    *   NOT_FOUND                   = 5
    *   FORBIDDEN                   = 6
    *   CONFLICT                    = 7
    * INTERNAL_SERVER_ERROR       = 8
    *   ERROR_HTTP                  = 9
    * ERROR_SIGNATURE             = 10
    *   ERROR_CONFIG                = 11
    *   ERROR_FORMAT                = 12
    * ERROR_PARAMETER             = 13
    *   ERROR                       = 14
    *   OTHERS                      = 15
      IF SY-SUBRC <> 0.
    * Implement suitable error handling here
      ENDIF.
    ENDIF
    Now the issue is I want to convert that binary data to bitmap image and upload the same in to SE78. So that I can use that BMP image from SE78 in my smartforms.
    I had used the class CL_IGS_IMAGE_CONVERTER to covert the image into bmp but it is giving error that error in IMAGE DATA CORRUPT & Error Code 3. The conversion code used is as below.
    ******* CONVERT THE JPG IMAGE INTO BMP PHOTO. **********
      DATA: L_IGS_IMGCONV TYPE REF TO CL_IGS_IMAGE_CONVERTER,
    L_IMG_BLOB    TYPE W3MIMETABTYPE,
    L_IMG_SIZE    TYPE W3PARAM-CONT_LEN,
    L_IMG_TYPE    TYPE W3PARAM-CONT_TYPE,
             L_IMG_SUBTYPE TYPE W3PARAM-CONT_TYPE,
    L_IMG_URL     TYPE W3URL,
    L_ERR_CODE    TYPE I,
    L_ERR_TEXT    TYPE STRING,
             P_DEST TYPE CHAR32 VALUE 'IGS_RFC_DEST'.
      DATA: G_IMG_BLOB     TYPE W3MIMETABTYPE,
          G_IMG_TYPE     TYPE W3PARAM-CONT_TYPE,
          G_IMG_SIZE     TYPE W3PARAM-CONT_LEN.
      IF NOT IT_BINARY[] IS INITIAL.
        G_IMG_BLOB[] = IT_BINARY.
        CREATE OBJECT L_IGS_IMGCONV
          EXPORTING
            DESTINATION = P_DEST.
        CALL METHOD L_IGS_IMGCONV->SET_IMAGE
          EXPORTING
            BLOB      = G_IMG_BLOB
            BLOB_SIZE = G_IMG_SIZE.
        CASE PS_CONNECT_INFO-RESERVE.
          WHEN 'TIF'.
            G_IMG_TYPE = 'image/tiff'.
          WHEN 'JPG'.
            G_IMG_TYPE = 'image/jpeg'.
          WHEN 'PNG'.
            G_IMG_TYPE = 'image/png'.
          WHEN 'GIF'.
            G_IMG_TYPE = 'image/gif'.
          WHEN 'BMP'.
            G_IMG_TYPE = 'image/x-ms-bmp'.
          WHEN OTHERS.
            EXIT.
        ENDCASE.
    L_IGS_IMGCONV->INPUT  = G_IMG_TYPE.
        L_IGS_IMGCONV->OUTPUT = 'image/x-ms-bmp'.
    *    PERFORM GET_SIZE USING PICTURE_CONTAINER
    * L_IGS_IMGCONV->WIDTH
    * L_IGS_IMGCONV->HEIGHT.
        CALL METHOD L_IGS_IMGCONV->EXECUTE
          EXCEPTIONS
            OTHERS = 1.
        IF SY-SUBRC IS INITIAL.
          CALL METHOD L_IGS_IMGCONV->GET_IMAGE
            IMPORTING
              BLOB      = L_IMG_BLOB
              BLOB_SIZE = L_IMG_SIZE
              BLOB_TYPE = L_IMG_TYPE.
          SPLIT L_IMG_TYPE AT '/' INTO L_IMG_TYPE L_IMG_SUBTYPE.
        ELSE.
          CALL METHOD L_IGS_IMGCONV->GET_ERROR
            IMPORTING
              NUMBER  = L_ERR_CODE
              MESSAGE = L_ERR_TEXT.
          BREAK-POINT.
        ENDIF.
      ENDIF.
    ENDIF.
    So could you please some one help me how to convert JPEG Photo to BMP programatically.
    Regards,
    Mayur.

    johnandersonpalmdesert wrote:
    My printer is requesting a vector file.
    Jpeg File format does not support vectors.  Photoshop has limited vector support and tools.  Photoshop can not save vector file formats like SVG.  What File type does your printer want?
    Adobe Illustrator is Adobe vector application.

  • Unable to convert an image (.bmp) to PDF

    I have a written servlet that uses Adobe LiveCycle API to convert files to PDF. This works. I have a problem with one image (.BMP) for which the PDF conversion fails. I then tried converting the image to PDF using Adobe Acrobat. I see the following error:
    I am able to open the image file without any issues. Why does Acrobat think the file is corrupt? Is there a way to find out if an image is OK for PDF conversion, either manually or programmatically? Attaching the image file for reference.

    Hi ,
    For this issue, it looks like your SharePoint server(s) have been patched with MS13-052. 
    Please try to uninstall it and reboot your machine.
    Here is a similar post for you to take a look at:
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/eec6e515-6a0a-42f2-963d-51fde59be9c4/sharepoint-server-20102-abnormal-issues-please-help
    Best Regards,
    Wendy
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

Maybe you are looking for

  • Voice Memo could not sync title

    The voice memo files appear in my Iphone as files with date titles. I have synced to my iMac and changed the name of the files, but cant get those changes to take effect in my iPhone

  • Old computer- dangerous to ipod?

    well yesterday i hooked up my ipod to an old computer (Gateway EV700?) that has new applications like windows xp and all the new versions of quicktime and itunes and popped the ipod on the cable and popped it into a usb port on the front on the compu

  • Change to Selection criteria in Datasource, do we need to re-init?

    Hello all, We are planning to change the selection criteria for a datasource, we want the year to be one of the selection criteria so we can load data only for particular years. Now this datasource is in production for some time, so once we do this c

  • Nokia Messaging Request for N97

    1. When will Nokia messaging for N97 view HTML? 2. When will Nokia messaging show up an @ sign for new email (which they claim on their website) 3. When can we control to font size when viewing message for N97. But the way i dont think we asking too

  • Mac Hard Drive Partition

    Hi, I have a iMac OS X 10.4.11. I am wondering if I partition my hard drive (from the disk) will it delete all my data? I wish to make a new partition, of 100gb (I have 230gb of free space), in order to install a Windows operating system. When I go t