HT1473 Im having problem while transferring songs from PC to Ipod. Ive followed all steps 'File Add to Library' but i cant find songs in my ipod. Ive also synced the ipod and backup as well but still same. what to do?

Im having problem while transferring songs from PC to Ipod. Ive followed all steps 'File<Add to Library' but i cant find songs in my ipod. Ive also synced the ipod and backup as well but still same. what to do?

Try:
iTunes: Finding lost media and downloads
iTunes: How to re-create your iTunes library and playlists
Next try:
Downloading past purchases from the App Store, iBookstore, and iTunes Store
Also:
Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

Similar Messages

  • How do i resend the confirmation email for icloud? I sent it months ago without knowing and cant find it now. I aksi tryed deleating the account and making a new one, but the same one keeps comming up...

    OK, so im trying to use my icloud account, but months ago when i got my iphone, i sent myself the confirmation email, and i cant find it now. Is there a way to send another one? I also tryed deleating the account and starting over, but it keeps on pulling the same account up? what should i do?

    Welcome to the Apple Community.
    Put in a request for another verification e-mail to be sent to you.
    Start here, change your country if necessary and go to manage your account.

  • TS1317 Having problem connecting wi-fi to my Mac pro.  Followed all the steps.  Any suggestions of what I can try next?

    Hi, Having problem connecting my Mac Pro to Wi-Fi.  Followed all the steps.  Any suggestions?  Thanks.

    Hi Sandra,
    Have you tried this?
    Instead of joining it from the list, click the WiFi icon at the top, and click join other network. Fill in everything as needed.

  • Problem while transfering data from form to excel

    Hi all.
    I have a little problem. I have a procedure that fires on when-button-pressed trigger that goes to current block and download the data into an excel file.
    The block has 2200 records.
    The problem is that if I make the application visible all is ok; if I make the application not visible it remains "append" and nothing happens.
    I'm on developer suite 10g.
    Here is the code:
    PROCEDURE pr_Forms_to_Excel(p_block_name IN VARCHAR2 DEFAULT NAME_IN('system.current_block')) IS
    -- Declare the OLE objects
    application OLE2.OBJ_TYPE;
    workbooks OLE2.OBJ_TYPE;
    workbook OLE2.OBJ_TYPE;
    worksheets OLE2.OBJ_TYPE;
    worksheet OLE2.OBJ_TYPE;
    cell OLE2.OBJ_TYPE;
    range OLE2.OBJ_TYPE;
    range_col OLE2.OBJ_TYPE;
    -- Declare handles to OLE argument lists
    args OLE2.LIST_TYPE;
    -- Declare form and block items
    form_name VARCHAR2(100);
    f_block VARCHAR2(100);
    l_block VARCHAR2(100);
    f_item VARCHAR2(100);
    l_item VARCHAR2(100);
    cur_block VARCHAR2(100) := NAME_IN('system.current_block');
    cur_item VARCHAR2(100) := NAME_IN('system.current_item');
    cur_record VARCHAR2(100) := NAME_IN('system.cursor_record');
    item_name VARCHAR2(100);
    baslik VARCHAR2(100);
    row_n NUMBER;
    col_n NUMBER;
    filename VARCHAR2(100);
    BEGIN
    -- Start Excel
    application:=OLE2.CREATE_OBJ('Excel.Application');
    OLE2.SET_PROPERTY(application, 'Visible', 'TRUE');
    -- Return object handle to the Workbooks collection
    workbooks:=OLE2.GET_OBJ_PROPERTY(application, 'Workbooks');
    -- Add a new Workbook object to the Workbooks collection
    workbook:=OLE2.GET_OBJ_PROPERTY(workbooks,'Add');
    -- Return object handle to the Worksheets collection for the Workbook
    worksheets:=OLE2.GET_OBJ_PROPERTY(workbook, 'Worksheets');
    -- Get the first Worksheet in the Worksheets collection
    -- worksheet:=OLE2.GET_OBJ_PROPERTY(worksheets,'Add');
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 1);
    worksheet:=OLE2.GET_OBJ_PROPERTY(worksheets,'Item',args);
    OLE2.DESTROY_ARGLIST(args);
    -- Return object handle to cell A1 on the new Worksheet
    go_block(p_block_name);
    baslik := get_block_property(p_block_name,FIRST_ITEM);
    f_item := p_block_name||'.'||get_block_property(p_block_name,FIRST_ITEM);
    l_item := p_block_name||'.'||get_block_property(p_block_name,LAST_ITEM);
    first_record;
    LOOP
    item_name := f_item;
    row_n := NAME_IN('SYSTEM.CURSOR_RECORD');
    col_n := 1;
    LOOP
    IF get_item_property(item_name,ITEM_TYPE)<>'BUTTON' AND
    get_item_property(item_name,VISIBLE)='TRUE'
    THEN
    -- Set first row with the item names
    IF row_n=1 THEN
    baslik:=NVL(get_item_property(item_name,PROMPT_TEXT),baslik);
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, row_n);
    OLE2.ADD_ARG(args, col_n);
    cell:=OLE2.GET_OBJ_PROPERTY(worksheet, 'Cells', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(cell, 'Value', baslik);
    OLE2.RELEASE_OBJ(cell);
    END IF;
    -- Set other rows with the item values
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, row_n+1);
    OLE2.ADD_ARG(args, col_n);
    cell:=OLE2.GET_OBJ_PROPERTY(worksheet, 'Cells', args);
    OLE2.DESTROY_ARGLIST(args);
    IF get_item_property(item_name,DATATYPE)<>'NUMBER' THEN
    OLE2.SET_PROPERTY(cell, 'NumberFormat', '@');
    END IF;
    OLE2.SET_PROPERTY(cell, 'Value', name_in(item_name));
    OLE2.RELEASE_OBJ(cell);
    END IF;
    IF item_name = l_item THEN
    exit;
    END IF;
    baslik := get_item_property(item_name,NEXTITEM);
    item_name := p_block_name||'.'||get_item_property(item_name,NEXTITEM);
    col_n := col_n + 1;
    END LOOP;
    EXIT WHEN NAME_IN('system.last_record') = 'TRUE';
    NEXT_RECORD;
    END LOOP;
    -- Autofit columns
    range := OLE2.GET_OBJ_PROPERTY( worksheet,'UsedRange');
    range_col := OLE2.GET_OBJ_PROPERTY( range,'Columns');
    OLE2.INVOKE( range_col,'AutoFit' );
    OLE2.RELEASE_OBJ( range );
    OLE2.RELEASE_OBJ( range_col );
    -- Get filename and path
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG( args, p_block_name );
    OLE2.ADD_ARG( args,'Excel Workbooks (*.xls, *.xls');
    filename := OLE2.INVOKE_CHAR( application,'GetSaveAsFilename',args );
    OLE2.DESTROY_ARGLIST( args );
    -- Save as worksheet
    IF NVL(filename,'0')<>'0' THEN
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG( args,filename );
    OLE2.INVOKE( worksheet,'SaveAs',args );
    OLE2.DESTROY_ARGLIST( args );
    END IF;
    -- Close workbook
    OLE2.INVOKE( workbook ,'Close');
    -- Release the OLE objects
    OLE2.RELEASE_OBJ(worksheet);
    OLE2.RELEASE_OBJ(worksheets);
    OLE2.RELEASE_OBJ(workbook);
    OLE2.RELEASE_OBJ(workbooks);
    OLE2.INVOKE(application, 'Quit');
    OLE2.RELEASE_OBJ(application);
    -- Focus to the original location
    go_block(cur_block);
    go_record(cur_record);
    go_item(cur_block||'.'||cur_item);
    END;
    Is there anyone that can help me????
    Thanks,
    Fabrizio

    Hi all.
    I have a little problem. I have a procedure that fires on when-button-pressed trigger that goes to current block and download the data into an excel file.
    The block has 2200 records.
    The problem is that if I make the application visible all is ok; if I make the application not visible it remains "append" and nothing happens.
    I'm on developer suite 10g.
    Here is the code:
    PROCEDURE pr_Forms_to_Excel(p_block_name IN VARCHAR2 DEFAULT NAME_IN('system.current_block')) IS
    -- Declare the OLE objects
    application OLE2.OBJ_TYPE;
    workbooks OLE2.OBJ_TYPE;
    workbook OLE2.OBJ_TYPE;
    worksheets OLE2.OBJ_TYPE;
    worksheet OLE2.OBJ_TYPE;
    cell OLE2.OBJ_TYPE;
    range OLE2.OBJ_TYPE;
    range_col OLE2.OBJ_TYPE;
    -- Declare handles to OLE argument lists
    args OLE2.LIST_TYPE;
    -- Declare form and block items
    form_name VARCHAR2(100);
    f_block VARCHAR2(100);
    l_block VARCHAR2(100);
    f_item VARCHAR2(100);
    l_item VARCHAR2(100);
    cur_block VARCHAR2(100) := NAME_IN('system.current_block');
    cur_item VARCHAR2(100) := NAME_IN('system.current_item');
    cur_record VARCHAR2(100) := NAME_IN('system.cursor_record');
    item_name VARCHAR2(100);
    baslik VARCHAR2(100);
    row_n NUMBER;
    col_n NUMBER;
    filename VARCHAR2(100);
    BEGIN
    -- Start Excel
    application:=OLE2.CREATE_OBJ('Excel.Application');
    OLE2.SET_PROPERTY(application, 'Visible', 'TRUE');
    -- Return object handle to the Workbooks collection
    workbooks:=OLE2.GET_OBJ_PROPERTY(application, 'Workbooks');
    -- Add a new Workbook object to the Workbooks collection
    workbook:=OLE2.GET_OBJ_PROPERTY(workbooks,'Add');
    -- Return object handle to the Worksheets collection for the Workbook
    worksheets:=OLE2.GET_OBJ_PROPERTY(workbook, 'Worksheets');
    -- Get the first Worksheet in the Worksheets collection
    -- worksheet:=OLE2.GET_OBJ_PROPERTY(worksheets,'Add');
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, 1);
    worksheet:=OLE2.GET_OBJ_PROPERTY(worksheets,'Item',args);
    OLE2.DESTROY_ARGLIST(args);
    -- Return object handle to cell A1 on the new Worksheet
    go_block(p_block_name);
    baslik := get_block_property(p_block_name,FIRST_ITEM);
    f_item := p_block_name||'.'||get_block_property(p_block_name,FIRST_ITEM);
    l_item := p_block_name||'.'||get_block_property(p_block_name,LAST_ITEM);
    first_record;
    LOOP
    item_name := f_item;
    row_n := NAME_IN('SYSTEM.CURSOR_RECORD');
    col_n := 1;
    LOOP
    IF get_item_property(item_name,ITEM_TYPE)<>'BUTTON' AND
    get_item_property(item_name,VISIBLE)='TRUE'
    THEN
    -- Set first row with the item names
    IF row_n=1 THEN
    baslik:=NVL(get_item_property(item_name,PROMPT_TEXT),baslik);
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, row_n);
    OLE2.ADD_ARG(args, col_n);
    cell:=OLE2.GET_OBJ_PROPERTY(worksheet, 'Cells', args);
    OLE2.DESTROY_ARGLIST(args);
    OLE2.SET_PROPERTY(cell, 'Value', baslik);
    OLE2.RELEASE_OBJ(cell);
    END IF;
    -- Set other rows with the item values
    args:=OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG(args, row_n+1);
    OLE2.ADD_ARG(args, col_n);
    cell:=OLE2.GET_OBJ_PROPERTY(worksheet, 'Cells', args);
    OLE2.DESTROY_ARGLIST(args);
    IF get_item_property(item_name,DATATYPE)<>'NUMBER' THEN
    OLE2.SET_PROPERTY(cell, 'NumberFormat', '@');
    END IF;
    OLE2.SET_PROPERTY(cell, 'Value', name_in(item_name));
    OLE2.RELEASE_OBJ(cell);
    END IF;
    IF item_name = l_item THEN
    exit;
    END IF;
    baslik := get_item_property(item_name,NEXTITEM);
    item_name := p_block_name||'.'||get_item_property(item_name,NEXTITEM);
    col_n := col_n + 1;
    END LOOP;
    EXIT WHEN NAME_IN('system.last_record') = 'TRUE';
    NEXT_RECORD;
    END LOOP;
    -- Autofit columns
    range := OLE2.GET_OBJ_PROPERTY( worksheet,'UsedRange');
    range_col := OLE2.GET_OBJ_PROPERTY( range,'Columns');
    OLE2.INVOKE( range_col,'AutoFit' );
    OLE2.RELEASE_OBJ( range );
    OLE2.RELEASE_OBJ( range_col );
    -- Get filename and path
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG( args, p_block_name );
    OLE2.ADD_ARG( args,'Excel Workbooks (*.xls, *.xls');
    filename := OLE2.INVOKE_CHAR( application,'GetSaveAsFilename',args );
    OLE2.DESTROY_ARGLIST( args );
    -- Save as worksheet
    IF NVL(filename,'0')<>'0' THEN
    args := OLE2.CREATE_ARGLIST;
    OLE2.ADD_ARG( args,filename );
    OLE2.INVOKE( worksheet,'SaveAs',args );
    OLE2.DESTROY_ARGLIST( args );
    END IF;
    -- Close workbook
    OLE2.INVOKE( workbook ,'Close');
    -- Release the OLE objects
    OLE2.RELEASE_OBJ(worksheet);
    OLE2.RELEASE_OBJ(worksheets);
    OLE2.RELEASE_OBJ(workbook);
    OLE2.RELEASE_OBJ(workbooks);
    OLE2.INVOKE(application, 'Quit');
    OLE2.RELEASE_OBJ(application);
    -- Focus to the original location
    go_block(cur_block);
    go_record(cur_record);
    go_item(cur_block||'.'||cur_item);
    END;
    Is there anyone that can help me????
    Thanks,
    Fabrizio

  • Problem while transfering documents from FI to CO through t.code 1KEK

    Dera Experts,
    When I am posting FI document through transaction code 1KEK (Profit Center Accounting : Transfer Payables/REcievables) from FI to CO, line items are not shown in Profit Center document. Means in profit center document, G/L are not shown after the transfer.
            It is urgent. Pls get back ASAP if find the solution. Thanks in advance.
    Regards,
    Taral Patel

    I think you have to use for line items:
    Balance Sheet Adjustment
    F.5D - Calculate
    F.5E - Post
    F.5F - Display Log
    F.5G - Special Functions

  • I Just bought a ipad 2 and I can conect to my home wifi but I cant connect to any free hotspots. my ipad shows the network and connection but I can't get any web pages.

    I Just bought a IPAD2 and I can connect to my home wifi but I can't connect to any free hotspots. My Ipad shows the connections but I can't get any web pages. what do I do?

    Many free wi-fi hotspots require that you register first - agreeing to their terms and conditions, etc. This is usually provided via a web page with Safari provided immediately after connecting. If the register page is provided via Flash, you won't see it and you won't be able to register.

  • Error in subroutine READ_NAMTB while transferring data from HCM to xRPM.

    Hi Guys,
    I am facing a problem while transferring data from HCM to xRPM via ALE.
    We are getting the error " Error in subroutine READ_NAMTB" during the Inbound Processing of Idocs in xRPM.
    We have used the standard message type HRMD_ABA and IDoc type HRMD_ABA04 without any modifications.
    Request you all to kindly let me know the solution to fix this issue asap.
    Thanks in advance,
    Punkuj..

    It was a bug in SP2, it is fixed in SP2 Patch 4.
    Cheers !!
    Zaheer

  • On my ipod touch i downloaded music videos but i cant find them

    on my ipod touch i downloaded music videos but i cant find them please help

    Have yo looked both in Music app and Video app?
    Try using ther search feature on the iPod

  • When I move high quality clips into my timeline in Final Cut Express HD, they look and export low quality. I have tried converting the clips and de-interlacing them, but they always look the same, What is the problem? Thanks so much.

    When I move high quality clips into my timeline in Final Cut Express HD, they look and export low quality. I have tried converting the clips and de-interlacing them, but they always look the same, What is the problem? Thanks so much.

    You should check that the Project settings match the clip settings before editing them to the Timeline.
    Only newly created Projects will change not existing ones by adjusting the Project settings.
    If, for example, you have a Project set to NTSC DV you can only end up in trouble if the clips are PAL 1920 x 1080i.
    Al

  • I already unregistered my iPhone from this website. But I am still having problem of receiving massage from iPhone since I got galaxy note 3 now.

    I already unregistered my iPhone from this website. But I am still having problem of receiving massage from iPhone since I got galaxy note 3 now.

    See this support document for assistance. http://support.apple.com/kb/TS5185

  • I purchaseed an app monotoricamera but i cant find this application and this app removed from iTunes store what can i do for this problem?

    i purchaseed an app monotoricamera but i cant find this application and this app removed from iTunes store what can i do for this problem? when i use report problem in purchase history " say to me this app is removed and i pay for that

    Well, if you didn't keep it in your iTunes library, on your computer, & then back that data up, you're out of luck if it's no longer available in the App store.
    Apple warns to backup your purchases for this very reason.

  • So i cant download itunes cuz of some patenting control on the computer and  i needed to restore it . so went on icloud (find my phone,ipod etc) and restored it and my ipod is not turning on but ist is still buffering from the past 10 mins

    so i cant download itunes cuz of some patenting control on the computer and  i needed to restore it . so went on icloud (find my phone,ipod etc) and restored it and my ipod is not turning on but ist is still buffering from the past 10 mins

    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 another cable
    - 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                                     

  • Hi, im having problems with my iphone it would always be showing up "No Service" even when I get my simcard out, when i turn airplane mode it would switch to " Searching" and then go back to "No Service", i have tried restoring several times, but nothing

    Hi, im having problems with my iphone it would always be showing up "No Service" even when I get my simcard out, when i turn airplane mode it would switch to " Searching" and then go back to "No Service", i have tried restoring several times, but nothing has changed. I must say that my iphone was working perfectly until the last months my battery began to die all from a sudden, so my phone got turn off really frequently, so then i ordered a battery and changed it myself so when phone was on.. it had this problem..    im desperate here

    No I haven´t take it to Apple Store, i think I will actually. My iphone was jailbroken and ulocked with gevey sim, but when this failures began i decided to restore it, and I did preserve the baseband, but when I took it into one of these "Places" they told me it would be a good idea to do a clean restore and see if this fixed the problem so I upgraded my baseband, and right now my iphone is freshly restore, no jailbreak no nothing.
    Btw yes something like a year ago my screen was replaces by others not by apple, but I didnt had any issues after this.. until today (a little more than a year later).

  • I just purchased a 120gb iPod classic 6th generation from a friend. I have the latest iTunes installed and the software on the iPod is also current. My problem is whenever I'm syncing the iPod and iTunes freezes between the 250- 300th song...

    I just purchased a 120gb iPod classic 6th generation from a friend. I have the latest iTunes installed and the software on the iPod is also current. My problem is whenever I'm syncing the iPod and iTunes freezes between the 250- 300th song... I have to manually reset the iPod for the iTunes to run correctly, but then my music isn't added and iTunes tells me I have to restore the iPod... I've done this numerous times only to no avail... Someone please help!!!

    Here is what worked for me:
      My usb hub, being usb2, was too fast. I moved the wire to a usb port directory on my pc. That is a usb1 port which is slow enough to run your snyc.

  • I am trying to restore a backup onto my iphone from itunes but it asked me for a backup password which I cant remember, is there anyway that I can reset the password and not lose my backup?

    I am trying to restore a backup onto my iphone from itunes on a pc windows 8 but it asked me for a backup password which I cant remember, is there anyway that I can reset the password and not lose my backup? Any help is very appreciated

    Try entering the password on your iPhone

Maybe you are looking for

  • Adding Project Type as a characteristic in CJE1 Report Painter

    How do I add the Characteristic/Field "Project Type" to CJE1 Report Painter so the field can be used in reporting? thank you, Todd

  • Preview as default PDF reader in Safari

    I've posted to this question, but since my problem seems to be unique - thought it might deserve to be a new topic. I Have the Adobe/Acrobat-caused problem that caused Safari to quit using Preview to read PDF files. What seems to be unique though, is

  • IPhoto and Aperture crash on launch, iPhoto and Aperture crash on launch

    Hi everyone. Recently when I launch iPhoto it crashes immeadiately and I have to 'Force quit' the application. I haven't been able to use it for weeks! I decided to purchase Aperture and when I open it I get the same problem! Both iPhoto and Aperture

  • Document types in Purchasing

    Hi all , I have created " Z" document types for PO , PR according to company code . My requirement is as follows - For Co Code AAAA --PO Doc type Z1  For              BBBB   its      Z2 . when user from company code AAAA will open the PO or PR he sho

  • Flash cs4 constantly crashing

    i convined by boss to splash out on flash cs4 for work to make the website. it worked fine for about a week. now, when i try to start it, it just starts to load then crashes. it looks as if it is going to load then doesn't. i have tried uninstalling,