Photo upload through itunes in IPod

Hi
I am using IPod classic 80GB, I downloaded itunes 7.5 from apple.com but am unable to find an option to upload Photos through itunes.
Please help in knowing how to upload photos & videos to my 80 gb IPod classic.
Thanks
Punit Sharma
[email protected]
+91 98285 05251

This should help.
http://docs.info.apple.com/article.html?artnum=304677#2

Similar Messages

  • Employee Photo Upload through binary data

    Hi all,
    I know the Provision for Photo upload through OAAD Tcode, I know FM to upload the photos by giving path as input data. my requirement is I have picture in the form of binary data . i want to upload that into PA30. I have return the following code. No Error but image is not displayed in PA30.Can u Please correct me?
    tables: toav0, toaom, twfdb, toapa.
    data: key like ojint-key,
          object like ojint-name,
          object_id like toav0-object_id,
          archiv_id like toav0-archiv_id,
          arc_doc_id like toav0-arc_doc_id,
          ablagedatum like sapb-sapabldate,
          ar_date like toav0-ar_date,
          del_date like toav0-del_date,
          sap_object like toaom-sap_object,
          ar_object like toaom-ar_object,
          expiry_tim like toaom-expiry_tim,
          method like ojint-method,
          return like ojint-return,
          parameter like ojint-parameter.
    data:begin of i_toav0 occurs 1.
            include structure toav0.
    data: end of i_toav0.
    data: begin of i_toaom occurs 1.
            include structure toaom.
    data: end of i_toaom.
    data: begin of fields occurs 1.
            include structure ojfields.
    data: end of fields.
    DATA:     filename1  TYPE string.
    Data: i_name TYPE STXBITMAPS-TDNAME value 'TEST',
    *  archiv_id like toav0-archiv_id,
    i_id TYPE STXBITMAPS-TDID VALUE 'BMAP',
    i_btype TYPE STXBITMAPS-TDBTYPE VALUE 'BCOL',
    l_bds_bytecnt TYPE i,
    FLENGTH TYPE SAPB-LENGTH,
    l_bds_content TYPE TABLE OF bapiconten,
    OUTDOC     LIKE     TOADT ,
    wa_l_bds_content TYPE  bapiconten.
    *DATA : BINARY TYPE STANDARD TABLE OF TBL1024,
    data : BINARY TYPE STANDARD TABLE OF TBL1024 WITH HEADER LINE,
    ARCHIVOBJECT type standard table of docs,
    archiv_doc_id like toav0-arc_doc_id,
    wa_binary type TBL1024.
    data:  lw_ar_object like toaom-ar_object,
          lw_object_id like sapb-sapobjid,
          lw_sap_object like toaom-sap_object,
          lw_doc_type like toadd-doc_type,
          lw_path like sapb-sappfad,"toav0-arc_doc_id
    *      archiv_doc_id like toav0-arc_doc_id,
          doc_type like toadt-doc_class.
    constants:  c_sap_object type toaom-sap_object value 'PREL',
                c_ar_object type toaom-ar_object value 'HRICOLFOTO',
                c_doc_type type toaom-doc_type value 'JPG'.
    PARAMETERS: filename(150) TYPE c OBLIGATORY.                               "Name of the File where source as  txt format
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR filename.
      PERFORM getfile.
    start-of-selection.
      filename1 = filename.
    key = '010001380002'.
      lw_ar_object = c_ar_object.
    *  lw_object_id = w_pernr_pass.
      lw_sap_object = c_sap_object.
      lw_doc_type = c_doc_type.
    *  lw_path = it_data-file_nam.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename = filename1
          filetype = 'BIN'
        TABLES
          data_tab = archivobject.
    * Object to be archived
          select single * from toaom where ar_object = c_ar_object and sap_object = c_sap_object.
          if sy-subrc <> 0.
            raise UPLOAD_ERROR.
          else.
    * Authority check with Archive id
            archiv_id = toaom-archiv_id.
            perform authority_check_create(oaall)
            using archiv_id object space ar_object space
            changing sy-subrc.
            if sy-subrc ne 0.
              raise UPLOAD_ERROR.
            else.
              if sy-subrc <> 0.
                raise UPLOAD_ERROR.
                clear toav0.
              else." Transfer key for archiving
                toav0-object_id = key.
                if key eq space.
                  Raise FUNCTION_ERROR.
                  clear toav0.
                else.
                  perform create_archive_object_new  .
                endif.
              endif.
            endif.
          endif.
    form create_archive_object_new .
    CALL FUNCTION 'ARCHIV_CREATE_TABLE'
        EXPORTING
          AR_OBJECT                      = lw_ar_object
    *   DEL_DATE                       =
          OBJECT_ID                      = '010001380002'
          SAP_OBJECT                     =  lw_sap_object
    *   FLENGTH                        = '2328'
       DOC_TYPE                       = lw_doc_type
    *   DOCUMENT                       =
    *   MANDT                          = SY-MANDT
    * IMPORTING
    *   OUTDOC                         =
       TABLES
       ARCHIVOBJECT                   =  ARCHIVOBJECT
    *     BINARCHIVOBJECT                = binary
    * EXCEPTIONS
    *   ERROR_ARCHIV                   = 1
    *   ERROR_COMMUNICATIONTABLE       = 2
    *   ERROR_CONNECTIONTABLE          = 3
    *   ERROR_KERNEL                   = 4
    *   ERROR_PARAMETER                = 5
    *   ERROR_USER_EXIT                = 6
    *   ERROR_MANDANT                  = 7
    *   OTHERS                         = 8
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      call function 'ARCHIVOBJECT_CREATE_TABLE'
        EXPORTING
          archiv_id                = archiv_id
          document_type            = lw_doc_type
    *      length                   = '2328'
        IMPORTING
          archiv_doc_id            = i_toav0-arc_doc_id
        TABLES
          archivobject             = archivobject
    *      binarchivobject          = BINARY
        EXCEPTIONS
          error_kernel             = 1
          error_communicationtable = 2
          error_archiv             = 3.
           move i_toav0 to toav0.
        toav0-sap_object = lw_sap_object.
        toav0-object_id = key.
        move archiv_id to toav0-archiv_id.
        move i_toav0-arc_doc_id to toav0-arc_doc_id.
        toav0-ar_object = lw_ar_object.
        move lw_doc_type to toav0-reserve.
        move lw_doc_type to doc_type.
        commit work.
      call function 'ARCHIV_CONNECTION_INSERT'
          exporting
            archiv_id                   = toav0-archiv_id
            arc_doc_id                  = toav0-arc_doc_id
            ar_date                     = ar_date
            ar_object                   = toav0-ar_object
    *     DEL_DATE                    = ' '
    *     MANDANT                     = ' '
            object_id                   = '010001380002'
            sap_object                  = toav0-sap_object
            doc_type                    = doc_type
    *        barcode                     = barcode
          exceptions
            error_connectiontable       = 1
            others                      = 2
    endform.
    FORM getfile .
      CALL FUNCTION 'WS_FILENAME_GET'
        EXPORTING
          def_filename     = ' '
          def_path         = '*.*'
          mask             = ''
          mode             = 'O'
          title            = ' SELECTING FILE FOR SOURCE PROGRAM'
        IMPORTING
          filename         = filename
        EXCEPTIONS
          selection_cancel = 3
          selection_error  = 4.

    Hi all,
    I know the Provision for Photo upload through OAAD Tcode, I know FM to upload the photos by giving path as input data. my requirement is I have picture in the form of binary data . i want to upload that into PA30. I have return the following code. No Error but image is not displayed in PA30.Can u Please correct me?
    tables: toav0, toaom, twfdb, toapa.
    data: key like ojint-key,
          object like ojint-name,
          object_id like toav0-object_id,
          archiv_id like toav0-archiv_id,
          arc_doc_id like toav0-arc_doc_id,
          ablagedatum like sapb-sapabldate,
          ar_date like toav0-ar_date,
          del_date like toav0-del_date,
          sap_object like toaom-sap_object,
          ar_object like toaom-ar_object,
          expiry_tim like toaom-expiry_tim,
          method like ojint-method,
          return like ojint-return,
          parameter like ojint-parameter.
    data:begin of i_toav0 occurs 1.
            include structure toav0.
    data: end of i_toav0.
    data: begin of i_toaom occurs 1.
            include structure toaom.
    data: end of i_toaom.
    data: begin of fields occurs 1.
            include structure ojfields.
    data: end of fields.
    DATA:     filename1  TYPE string.
    Data: i_name TYPE STXBITMAPS-TDNAME value 'TEST',
    *  archiv_id like toav0-archiv_id,
    i_id TYPE STXBITMAPS-TDID VALUE 'BMAP',
    i_btype TYPE STXBITMAPS-TDBTYPE VALUE 'BCOL',
    l_bds_bytecnt TYPE i,
    FLENGTH TYPE SAPB-LENGTH,
    l_bds_content TYPE TABLE OF bapiconten,
    OUTDOC     LIKE     TOADT ,
    wa_l_bds_content TYPE  bapiconten.
    *DATA : BINARY TYPE STANDARD TABLE OF TBL1024,
    data : BINARY TYPE STANDARD TABLE OF TBL1024 WITH HEADER LINE,
    ARCHIVOBJECT type standard table of docs,
    archiv_doc_id like toav0-arc_doc_id,
    wa_binary type TBL1024.
    data:  lw_ar_object like toaom-ar_object,
          lw_object_id like sapb-sapobjid,
          lw_sap_object like toaom-sap_object,
          lw_doc_type like toadd-doc_type,
          lw_path like sapb-sappfad,"toav0-arc_doc_id
    *      archiv_doc_id like toav0-arc_doc_id,
          doc_type like toadt-doc_class.
    constants:  c_sap_object type toaom-sap_object value 'PREL',
                c_ar_object type toaom-ar_object value 'HRICOLFOTO',
                c_doc_type type toaom-doc_type value 'JPG'.
    PARAMETERS: filename(150) TYPE c OBLIGATORY.                               "Name of the File where source as  txt format
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR filename.
      PERFORM getfile.
    start-of-selection.
      filename1 = filename.
    key = '010001380002'.
      lw_ar_object = c_ar_object.
    *  lw_object_id = w_pernr_pass.
      lw_sap_object = c_sap_object.
      lw_doc_type = c_doc_type.
    *  lw_path = it_data-file_nam.
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename = filename1
          filetype = 'BIN'
        TABLES
          data_tab = archivobject.
    * Object to be archived
          select single * from toaom where ar_object = c_ar_object and sap_object = c_sap_object.
          if sy-subrc <> 0.
            raise UPLOAD_ERROR.
          else.
    * Authority check with Archive id
            archiv_id = toaom-archiv_id.
            perform authority_check_create(oaall)
            using archiv_id object space ar_object space
            changing sy-subrc.
            if sy-subrc ne 0.
              raise UPLOAD_ERROR.
            else.
              if sy-subrc <> 0.
                raise UPLOAD_ERROR.
                clear toav0.
              else." Transfer key for archiving
                toav0-object_id = key.
                if key eq space.
                  Raise FUNCTION_ERROR.
                  clear toav0.
                else.
                  perform create_archive_object_new  .
                endif.
              endif.
            endif.
          endif.
    form create_archive_object_new .
    CALL FUNCTION 'ARCHIV_CREATE_TABLE'
        EXPORTING
          AR_OBJECT                      = lw_ar_object
    *   DEL_DATE                       =
          OBJECT_ID                      = '010001380002'
          SAP_OBJECT                     =  lw_sap_object
    *   FLENGTH                        = '2328'
       DOC_TYPE                       = lw_doc_type
    *   DOCUMENT                       =
    *   MANDT                          = SY-MANDT
    * IMPORTING
    *   OUTDOC                         =
       TABLES
       ARCHIVOBJECT                   =  ARCHIVOBJECT
    *     BINARCHIVOBJECT                = binary
    * EXCEPTIONS
    *   ERROR_ARCHIV                   = 1
    *   ERROR_COMMUNICATIONTABLE       = 2
    *   ERROR_CONNECTIONTABLE          = 3
    *   ERROR_KERNEL                   = 4
    *   ERROR_PARAMETER                = 5
    *   ERROR_USER_EXIT                = 6
    *   ERROR_MANDANT                  = 7
    *   OTHERS                         = 8
      IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      call function 'ARCHIVOBJECT_CREATE_TABLE'
        EXPORTING
          archiv_id                = archiv_id
          document_type            = lw_doc_type
    *      length                   = '2328'
        IMPORTING
          archiv_doc_id            = i_toav0-arc_doc_id
        TABLES
          archivobject             = archivobject
    *      binarchivobject          = BINARY
        EXCEPTIONS
          error_kernel             = 1
          error_communicationtable = 2
          error_archiv             = 3.
           move i_toav0 to toav0.
        toav0-sap_object = lw_sap_object.
        toav0-object_id = key.
        move archiv_id to toav0-archiv_id.
        move i_toav0-arc_doc_id to toav0-arc_doc_id.
        toav0-ar_object = lw_ar_object.
        move lw_doc_type to toav0-reserve.
        move lw_doc_type to doc_type.
        commit work.
      call function 'ARCHIV_CONNECTION_INSERT'
          exporting
            archiv_id                   = toav0-archiv_id
            arc_doc_id                  = toav0-arc_doc_id
            ar_date                     = ar_date
            ar_object                   = toav0-ar_object
    *     DEL_DATE                    = ' '
    *     MANDANT                     = ' '
            object_id                   = '010001380002'
            sap_object                  = toav0-sap_object
            doc_type                    = doc_type
    *        barcode                     = barcode
          exceptions
            error_connectiontable       = 1
            others                      = 2
    endform.
    FORM getfile .
      CALL FUNCTION 'WS_FILENAME_GET'
        EXPORTING
          def_filename     = ' '
          def_path         = '*.*'
          mask             = ''
          mode             = 'O'
          title            = ' SELECTING FILE FOR SOURCE PROGRAM'
        IMPORTING
          filename         = filename
        EXCEPTIONS
          selection_cancel = 3
          selection_error  = 4.

  • HT201302 how to delete a album or photo transfered through itune?

    how to delete a album or photo transfered through itune?

    This must be done on the computer. The phone holds your pictures/albums hostage until you uncheck/unsync them from iTunes itself. You cannot delete them via the iPhone at all.

  • Problem Editing/Deleting the Photos uploaded via iTunes

    I uploaded some photos via iTunes to my iPad as well as my iPhone. I wanted to take advantage of the photo edito, the devices will not allow me to edit the original photo uploaded photo file. It is asking I do "Duplicate and edit" which will leave me with 2 photos of the picture (one edited and other original one) on the device! I can't delete the original photo from my iPad/iPhone using either devices. Only way I can get rid of it is by syncing it via iTunes. any suggestions?

    That is how it works with photos placed on the phone via iTunes sync -- to remove them you sync again using the instructions in Sync photos to your iPhone, iPad, and iPod touch in iTunes - Apple Support
    Another option you may want to consider to move photos from a computer to an iPhone or iPad (if you don't want to use iCloud Photo Library) is a 3rd app such as http://www.photosync-app.com/

  • I am restoring the data from my itunes account to a replacement ipod touch. After all is finished in my laptop through itunes the ipod stays on the same page and does not let me finish the process, wht shoul i do?

    I got a replacement ipod and did the restore data through itunes with its sync in my laptop, however, after itunes process is finished the ipod does not let me choose to continue or to finish the process, what should I do?,

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer          
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar       

  • Music wont upload from iTunes to iPod

    When I try and upload songs from itunes to ipod all i get is a message saying "songs on the ipod "IPOD" cannot be updated because all of the playlists selected for updating no longer exist". Can somebody please offer some advise on what I should be doing to solve this.

    http://discussions.apple.com/thread.jspa?threadID=121728&tstart=150

  • Radio through itunes on ipod touch?

    I know you can play streaming radio through iTunes on a computer, so is there a way to do that through iTunes or Music apps on the ipod touch? I know you can get third party apps like AOL Radio, but the problem is those won't play in the background while you use another app. The Music app as far as I know is the only thing that will run in the background, so is there a way to get streaming radio through there?

    Terabithia wrote:
    Pandora doesn't work in Europe . But you can use various radio streaming apps to listen to radio from all over the world; the problem is they won't run in the background (neither will Pandora).
    don't they also need a wifi connection?
    now i search for FM recievers online i'm struggling. i'm sure i've seen them in the shops though.
    i bought a roberts robi DAB/FM Remote the other week,
    http://www.advancedmp3players.co.uk/shop/Accessories.7/AppleiPod.15/Roberts.146/POD1/Roberts_ROBI_DAB_FM_Radio_with_remote_foriPod.2828.html
    but i'm not sure if you can get DAB (digital radio) outside of the UK.

  • Can't see any photos added through iTunes

    just bought the iPhoto app recently.
    I was trying to add photos to iPhoto through Itunes, it synced but not showing any photos in the iPhoto app...
    wondering anyone having the problem as me???

    Michelle,
    check my answer to your other post. Good luck!

  • Photos uploaded through icloud control panel are only synced with iphone but not with ipad

    Photos which are uploaded through icloud control panel are only synced with iPhone but not with iPad. Photos taken with iPhone or iPad are synced with all devices. So, why I do not get the uploaded photos from my pc to iPad? I alredy disabled photo stream on all devices - same failure

    If only one device is not getting updated data, you need to troubleshoot that device and not photostream itself.
    Verify that ipad is connected to wifi, charged over 20 percent, camera app is closed and take a photo of the screen (or anything else, but then close that camera app).
    Open photostream folder on that ipad and see if picture shows up. If you network is good, should not take long.
    Don't forget that while your phone can use wifi and cellular (even it suppose to use wifi for photostream, cellular networks got much better since original photostream was implemented) - you ipad is probably wifi only.
    If picture shows up - you ipad and photostream have no problems and you can go to other devices one by one.

  • Photo syncing through iTunes changes image format?

    I wonder if somebody might be able to enlighten me. I synced some photos through iTunes from Mac Book to my iPhone photo library. These were png images with out a background they registered fine in my camera roll but when synced they not only changed format from png to jpg but they also had a white square background. Is here any way to remedy this??? Any help is much appreciated.

    I found the answer to my issue and it was a corrupted plist.  I removed the
         com.apple.iTunesHelper.plist
    I decided to try that since the modified date for that plist was the most recent. 
    Those preference list are in the user folder/Library/Preferences. 
    Jay

  • I need help uploading from iTunes to iPod

    I just received the 60GB iPod for Christmas and I love it! I've figured out how to upload video and music and all that...but I don't want to store these giant video files on my computer just so that I can have them on the iPod. But I'm afraid that if I move them to storage on CD that when I update the Ipod will miss them and remove them from my ipod since they aren't on the playlist.
    I have changed it so that the iPod doesn't automatically update each time I connect it to the computer, but my question is this:
    Is there a way to upload just one file at a time to the iPod without it going back and uploading the entire library each time? Or remove/change what's already on the iPod? Does that make any sense?
    Help!
    Amy

    Go with a better podcast host.  One that is 100% iTunes compliant like Libsyn.
    Here is a tutorial about podcasting:
    http://traffic.libsyn.com/lilith/podcast101_140311c.pdf
    Chapter 7 goes over creating a libsyn account, setting up your RSS feed and uploading your first episode.
    Chapter 10 goes over submitting your RSS feed to iTunes and Stitcher.
    Let me know if you have any questions.
    Regards,
    Rob W

  • Cd music uploaded from itunes to ipods

    I am currently uploading my cds to itunes via my computer. I want to be able to import them to multiple ipods( shuffle and nano). Both my ipods and ipad are synced to this same computer. But only the items I purchased from itunes are being uploaded to my ipod shuffle. All songs, including uploaded CDs uploaded to ipad effortlessly.
    Help.

    Yes, you can drag and drop the files to your device, there isnt any reason you cant copy the mp3 files, the files are simply mp3 files and itunes just creates a database file that the iphones and ipod uses, if you plug a iphone in and unhide all files in windows explorer you will see that the mp3 files are on device hidden in folders. There isnt anything special about itunes files other than the DRM files are a little diffrent than windows files but still any mp3 convertor software can modify them..

  • Photos synced through iTunes look different colours

    After I sync my iOS devices (iPad 3 & iPhone 4S) with iTunes (Windows 7), the colour profiles get altered on the iOS devices. Here is an example:
    Original photo:
    Photo after iTunes sync:
    I've tried removing all photos from the devices, deleting the iPod photo cache in Windows & uninstalled/reinstalled iTunes but it hasn't helped. If I manually copy the photo back to PC, it looks fine, but if I take a screenshot of altered image on iOS device & copy to the PC, it looks like the (altered) image above.
    PLEASE HELP!!!!

    Just to clarify. When you compare the exported image to the original inside LR do they look the same when viewed together in the Library module, and how about when both are viewed in the Develop module? Are you using a wide gamut monitor and do you also use a hardware monitor calibrator? All of these things affect how images looks in LR and some are fixable, but others are not as Web Weaver posted.
    There is also another issue that can cause the Library module view and exported images to look different than they do in the Develop module:
    http://feedback.photoshop.com/photoshop_family/topics/afm8rbh6tnc31
    The solution is to view the image at 1:1 (100%) view size. You can also use more conservative Sharpening settings (i.e. lower) and more aggressive Luminance Noise Reduction settings (i.e. higher), which will significantly decrease the view difference.

  • Uploading from iTunes 2 iPod-Problem

    My iTunes dont wanna upload all my files to the iPod.
    The files are ok (mp3 & mp4),and I do got enough memory
    but it still dont uploading it!!!
    Why & How can I fix it?

    Try this link
    http://docs.info.apple.com/article.html?artnum=93867

  • Failed upload from itunes to ipod- no explanation

    I loaded a bunch of CD’s into itunes and when I went to sync my ipod, it wouldn’t work like it did a few hours earlier. itunes showed the ipod was there and the dialogue box said it was transferring the songs, but after 15 or 20 minutes, I ejected it and the songs were not on there. usually when it’s synching it tells you number 10 out of 100 or whatever song is loading, but it didn’t come up this time. I tried to consolidate my library, thinking that may help, but it said something about the disk not being there or something but had no error number for me to reference. the usb port works. I restored my ipod and reinstalled itunes and rebooted, but nothing helped. Does anyone know what this is about?
    Dell Windows XP
    Dell   Windows XP  

    http://discussions.apple.com/thread.jspa?threadID=121728&tstart=150

Maybe you are looking for

  • How to convert the date time from MM-DD-YYYThh:mm:ss to YYYY-MM-DDThh:mm:ss format

    Hi All, I have a requirement in my project like to convert the date time from one format to another.my situation is like to convert the date time from MM-DD-YYYThh:mm:ss to YYYY-MM-DDThh:mm:ss format. I am using the soa suite 11.1.1.6. Can any one su

  • Google maps is not displaying properly on firefox

    I am in the process of building a website for a client and have included a google map on the contact page. The map displays correctly in ie, safari, opera, and chrome, but on firefox the map is way out of position on the page. Firefox seems to be ign

  • ADF mobile: Reuse taskflows for different device models (resolutions) ?

    Hi, ADf 11.1.2.3.0 + mobile extension. What's best practice to create the same mobile app for different device models (= different screen resolutions = different layout)? I mean an app on a smartphone may use different gui components and layout than

  • How to update to 10.8.6?

    I am running 10.8.5 To get Maverick I need 10.8.6 Where/how to I get 10.8.6?

  • JDk1.5.0beta3build58 security bug

    JWS isn't working with third party look and feel implementations wrt the FileOpenService. This seems to be a regression to 1.4.1 behaviour where I had to manually set the look and feel to the System LNF before trying to use the FileOpenService. I'm u