Save PDF File Without Display

Hi Folks,
I have a scenario where i need to save a PDF file on desktop without opening it. I've implemented the following approach and code:
1. Created a UI Element fileDownload and associated it with PDFSource variable of type XSTRING in context
2. Called the following method in init method of view
METHOD manual_save .
* Table in XML Format
  DATA : ixml TYPE string.
* Table Data in Hexadecimal Format
  DATA : lv_xstring TYPE xstring.
* Function Module Calling
  DATA : w_fmname TYPE rs38l_fnam,     "FM Name
         fp_outputparams   TYPE sfpoutputparams. "FM Output Parameters
* Form Parameters
  DATA :   fpdocparams TYPE sfpdocparams ,   "Form Parameters
           fpformoutput TYPE fpformoutput .  "Form Output Data
* Get Context Refrence and Table Data
  DATA lo_nd_skutab TYPE REF TO if_wd_context_node.
  DATA lo_nd_skudata TYPE REF TO if_wd_context_node.
  DATA lo_el_skudata TYPE REF TO if_wd_context_element.
  DATA ls_skudata TYPE wd_this->element_skudata.
* navigate from <CONTEXT> to <SKUTAB> via lead selection
  lo_nd_skutab = wd_context->get_child_node( name = wd_this->wdctx_skutab ).
* navigate from <SKUTAB> to <SKUDATA> via lead selection
  lo_nd_skudata = lo_nd_skutab->get_child_node( name = wd_this->wdctx_skudata ).
* @TODO handle not set lead selection
  IF lo_nd_skudata IS INITIAL.
  ENDIF.
* get element via lead selection
  lo_el_skudata = lo_nd_skudata->get_element(  ).
* @TODO handle not set lead selection
  IF lo_el_skudata IS INITIAL.
  ENDIF.
* get all declared attributes
  lo_el_skudata->get_static_attributes(
    IMPORTING
      static_attributes = ls_skudata ).
* Convert Table Data to XML Format (type String)
  CALL METHOD lo_nd_skudata->to_xml
    RECEIVING
      xml = ixml.
* Convert String to Xstring Format
*CALL FUNCTION 'CRM_IC_XML_STRING2XSTRING'
*  EXPORTING
*    instring         = IXML
* IMPORTING
*   OUTXSTRING       = LV_XSTRING
  CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
    EXPORTING
      text           = ixml
*   MIMETYPE       = ' '
*   ENCODING       =
    IMPORTING
      buffer         = lv_xstring
EXCEPTIONS
   failed         = 1
   OTHERS         = 2
  IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
*  Set Output Parameters
  fp_outputparams-nodialog = 'X'.
  fp_outputparams-getpdf = 'X'.
  fp_outputparams-connection = 'ADS'.
*  Job Open
  CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
      ie_outputparams = fp_outputparams
    EXCEPTIONS
      cancel          = 1
      usage_error     = 2
      system_error    = 3
      internal_error  = 4
      OTHERS          = 5.
  IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
*&-  Identify FM for PDF Form
  CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
    EXPORTING
      i_name           = 'ZTEST_SKU_PDF_FORM'
    IMPORTING
      e_funcname       = w_fmname
*      e_interface_type =
* set form parametsrs
  fpdocparams-langu = 'E'.
  fpdocparams-country = 'US'.
*fpdocparams-FILLABLE = 'X'.
* Generate form
  CALL FUNCTION w_fmname      "'/1BCDWB/SM00000021'
    EXPORTING
     /1bcdwb/docparams        = fpdocparams
      /1bcdwb/docxml           = lv_xstring
   IMPORTING
     /1bcdwb/formoutput       = fpformoutput
   EXCEPTIONS
     usage_error              = 1
     system_error             = 2
     internal_error           = 3
     OTHERS                   = 4
  IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
* Job Close
  CALL FUNCTION 'FP_JOB_CLOSE'
    EXCEPTIONS
      usage_error    = 1
      system_error   = 2
      internal_error = 3
      OTHERS         = 4.
  IF sy-subrc <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.
* Bind Data to PDF source
  DATA lo_el_context TYPE REF TO if_wd_context_element.
  DATA ls_context TYPE wd_this->element_context.
  DATA lv_pdf LIKE ls_context-pdf.
* get element via lead selection
  lo_el_context = wd_context->get_element(  ).
  lv_pdf = fpformoutput-pdf.
  CALL METHOD lo_el_context->set_attribute
    EXPORTING
      value = lv_pdf
      name  = 'PDF'.
ENDMETHOD.
To explain in simple terms, i've done the following:
1. Stored the context table data in a XML format in a string variable
2. Converted the string variable to xstring format using fm 'SCMS_STRING_TO_XSTRING'
3. Job Open
4. Identify the Actual FM Name
5. Genarate Form
6. Job Close
7. Bind data (fpformoutput-pdf) to the PDF Source variable in context
Issue is, when i run application and download, i am only able to get a PDf with no data in it.
Interestingly, in debug mode, i am able to see some data.
Points to add: When i display in a PDF UIElement the output comes in two pages, and in debug mode when i see the variable FPFORMOUTPUT-PAGES, it has a value of 1.
May be am following the wrong approach or missing someting in code.
Any inputs, appreciated.
Thanks,
Santosh Verma,
Deloitte.

Hi SV,
Below is code that i am writing for preparing the ZSTRING.
      DATA : ixml TYPE string.
Table Data in Hexadecimal Format
      DATA : lv_xstring TYPE xstring.
      CALL METHOD lo_nd_main_node->to_xml
        RECEIVING
          xml = ixml.
      ixml = ixml+33.
      CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
        EXPORTING
          text           = ixml
  MIMETYPE       = ' '
  ENCODING       =
       IMPORTING
         buffer         = lv_xstring
       EXCEPTIONS
         failed         = 1
         OTHERS         = 2
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
*Convert XSTRING into internal table
      DATA: gt_formdata  TYPE STANDARD TABLE OF lxe_xtab,
            gwa_formdata TYPE lxe_xtab.
      CALL FUNCTION 'LXE_COMMON_XSTRING_TO_TABLE'
        EXPORTING
          in_xstring       = lv_xstring
IMPORTING
  PSTATUS          =
        TABLES
          ex_tab           = gt_formdata
1. I have around 20 fields on my form which i need to capture in this XSTRING.
2. This method is capturing only 10 fields.
3. I am not getting
Inputs would be highly appreciated!!!
Thanks,
Ashish

Similar Messages

  • Save a pdf file without Adobe automatically adding "-Copy" to the end

    How can I save a pdf file without Adobe automatically adding "-Copy" to the end of file name?

    If you have actually made any changes (e.g. adding a Sticky Note or filling out forms), the Save button will appear in the bottom toolbar.  It will save it as the same name.
    "- Copy" is added only when you tap/click the Save As button.  You can change it to something else, if you'd like.

  • I cannot save PDF files that has a lock on the right hand side of the tab in safari iOS 5 from my iPad. Please help to find a solution.

    Can someone help find a fix of how to save PDF files from safari in iOS 5.0.1? The PDF files show a lock on the right hand side of tab. Only these lock PDF cannot be save. Any help will be highly appreciated.

    I assume that you have iBooks or GoodReader or Adobe Reader - some app that will open PDF files so my suggestion would be to start with the basic things, restart your iPad, reset it or quit Safari and restart.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.
    In order to close/quit apps - Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off.
    To power up hold the sleep button until the Apple logo appears and let go of the button.
    The lock to the right side of the tab indicates that the website is secure - or at least that is what it looks like in Safai on my iPad. Sites with the https in the address have the lock icon in the tab, non secure sites - web pages without the https - do not have the lock icon. I'm not sure if that has any bearing on it - none of the PDF files that I have opened in Safari have the lock icon.
    But if you can open the file - it doesn't make sense that it would be locked??? Try the basic suff and see if any of that helps.
    Message was edited by: Demo

  • "Save Pdf File" window

    Hi,
    I have an Access 2000 aplication which works fine with Acrobat 8.1.2 Pro
    -you select a product name
    -a PDF file is generated from this product's "Report"
    -and it's sent by mail
    It is a VBA code which stores: folder name, file name, printer name into Windows Registry
    I have migrated the file to Access 2007 and now there is a problem.
    It opens a "Save Pdf file" window and asks me to select a folder and to enter a file name.
    Seems that name and folder retrieve from the registry is not working.
    What is it? What can I do to resolve the problem? Any idea?
    Thanks,

    I searched without success ...How to find it?
    I have this:
    ' Put the output filename where Acrobat could find it
    bSetRegValue HKEY_CURRENT_USER, _
                     "Software\Adobe\Acrobat Distiller\PrinterJobControl", _
                     Find_Exe_Name("application", "C:\Program Files\Microsoft Office\Office12\MSACCESS.EXE"), _
                     sOutputFolder & "\\" & sPDFName

  • Is there any way to create 3D PDF file without having the model tree ?

    Is there any way to create 3D PDF file without having the model tree ?
    3D communication is good but sometime we don't want the receiver to be able to study every components in model.
    or any way to make the receiver cannot use model tree and measurement tool ????
    Thank you very much

    You can remove the assembly tree by doing a roundtrip in 3D Toolkit, here's how:
    - start Acrobat 3D
    - drag & drop a CAD file
    - click on 3D Annot to activate
    - right-click on 3D
    - select 'Edit in 3D Toolkit'
    - 3D Toolkit launches
    - click in 'Scene Tree' panel
    - right-click on top assembly name
    - select 'Tools->Collapse Hierarchy'
    - select 'File->Save'
    - select 'File->Exit'

  • Saving a PDF file without the comments

    In Acrobat Reader, is it possible to save a copy of a PDF file without the comments.
    I'm doing a PhD, and would like to be able to send some scientific papers to colleagues without the annotation I may have added. Of course, manually removing all the comments is not a good solution.

    In the Comment panel, go to the Comments List, press Ctrl+A and then Delete.

  • Avoiding the 'Save PDF File As' dialog when printing to the adobe PDF printer from a service

    Hello, can someone please help.
    I have Adobe Acrobat 8 Pro installed.
    I have an in house application which (among many other things) effectively monitors a directory and prints the file to the default printer. It works fine when run as an application.
    I have set the defaults on the Adobe PDF printer to put the output PDF file into a directory and not to open it so it works silently without prompts.
    When I run my application as a service, it brings up the 'Save PDF File As' dialog and I would like to avoid this. My impression is that if I put the right registry key in then it will work.
    I do not want to do any scripting if I can avoid it.
    Thanks for all constructive help given.

    Thank for your help Bill, but changing settings in the distiller did not seem to work. As my application prints directly to the default application without using anything specific to Acrobat, I was hoping there was a simple way forward. A colleague suggested copying registry entries from the account I logged on as to the S-1-5-18 entry, then rebooting. This had no effect as the prompt still comes up.
    Aandi, I don't have the Acrobat SDK or any experience of it.
    Also I'm not sure where any code/script would sit since the application is stable and so I would rather not change it.
    If it amounts to a few lines of javascript sitting outside the application then that would be of interest.

  • Saving a Text data to a PDF file without using print option

    Hi,
    I want to save a Text to a PDF file. I want to assign the path of the PDF file as a default one.
    If I use Print options, then it ask for the file path at the run time.
    Is there any method to save to a PDF file without using print option in Labview 8.2.
    Regards,
    Raja

    This question comes up a lot. Did you try searching? It depends on the PDF printer driver that you're using. See here, here, here, ...

  • How can I open a PDF file without first saving the file?

    How can I open a PDF file without first having to save the file?

    How can I open a PDF file without first having to save the file?

  • Can i save pdf files onto playbook?

    is it possible to save pdf files onto the playbook? i tried downloading one from a website and it showed up in the active downloads from where i then opened it, but it didnt permanently save. i thought maybe the adobe reader could store it but it didnt. 
    also, is it possible to transfer and save pdf files from a pc onto playbook? 
    this was one of the major things i was hoping the playbook could do..may determine whether it's worth keeping

    It's not through the Blackberry Desktop Software that I am transferring PDFs, Word, Excel files onto the Playbook; only media synching is supported at this time by that means. I did it on my PC through Windows Explorer, ie. the normal box you open on your computer when you click on "documents" and see the contents of your computer folders. There, in the left panel if you go down you see "computer", and click on it to display sub-folders, it should show the "Playbook" if you have a good USB connection. If you click on that PlayBook icon you will then see folders of the Playbook, including documents. That's where I pasted the documents, and they were then available to read and edit on the Playbook through Word to Go, Adobe Reader, etc. 
    The problem then (which other strings discuss) is that while you can paste in a set of documents organized in folders with sub-folders, the Playbook only sees the documents as being in a single folder. They apparently will still retain their organization though I haven't checked that.
    There is no way to synchronize in the way that DataViz Documents to Go does on the smartphones, and to me that is a big omission that RIM needs to take care of soon, or more specifically DataViz who I believe RIM owns now. The technology has been there for around 10 years. On my Palm I used to synchronize documents from my PC onto my Palm, work on various documents there, then when I synched again all the changes would automatically update on the documents on my PC. The only way to do this now is manually copy back from the Playbook to the PC, which is only OK if you are just working on one document.

  • How do I save PDF files by default to the folder of the source file?

    How do I save PDF files by default to the folder of the source file with Acrobat 9.0.0 Standard?

    I am not seeing that behaviour. If I right-click a link to a .pdf file, I get the file saved with the original filename.
    Maybe one of the settings in about:config controls that?
    pdfjs.previousHandler.preferredAction is a setting that has a value of 4 with my setup. I have no idea what that means, and I could not find any explanation anywhere. You could try using different numbers for that value and see if any make any difference. Why has nobody bothered to explain that setting anywhere?

  • How to remove a hidden text in pdf file with Acrobat Pro 9. How to save pdf file and remove hidden text?

    I
    I made this file in indesign, the highlited empty spaces indicates that their is a hidden text and it pop up when searching for some words in pdf file. so how can I save pdf file to keep only the seen text ???

    Dear lrosenth,
    I went through some codes/suggestions in internet and I found that I need to have cmap file and cid font file for the respective font since pdf doesn't support unicode fonts directly.
    Can you help me to know where can I get cmap file and cid font file for tamil language font Latha(TrueType) microsoft font.
    Regards,
    Safiq

  • How to save pdf file in database

    Dear All,
    my application is forms 6i and database is 8i,requirement is that how to save pdf file in database and users can view through forms

    I'll apologize up front for the length of this post. I have a few database procedures I created that write a file to a BLOB column in a table as well as retrieve the BLOB from the column after it stored there. I have successfully stored many different types of binary file to the database using these procedures - including PDF files. I have not used these procedures in a Form so I can confirm that they will work, but theoretically they should work. I'm including the code for each procedure in this posting - hence the apology for the long post! :-)
    Also, since these procedures reside on the database you will need to use Forms TEXT_IO built-in package to write your file to the server before you can use these procedures to store and retrieve the file from the database.
    These procedures reads and writes a binary file to a table called "LOB_TABLE." You will need to modify the procedure to write to your table.
    -- Author :  Craig J. Butts (CJB)
    -- Name   :  load_file_to_blob.sql
    --        :  This procedure uses an Oracle Directory called "IN_FILE_LOC".  If you
    --           already have a directory defined in the database or would prefer to use
    --           a different Directory name, make sure you modify line 21 to reflect the
    --           new Directory name.
    -- ==================================================================================
    -- History
    -- DATE        WHO         DESCRIPTION
    -- 12/11/07    CJB         Created.
    CREATE OR REPLACE PROCEDURE load_file_to_blob (p_filename IN VARCHAR2) IS
       out_blob    BLOB;
       in_file     BFILE;
       blob_length INTEGER;
       vErrMsg     VARCHAR2(2000);
    BEGIN
       -- set the in_file
       in_file := BFILENAME('IN_FILE_LOC',p_filename);
       -- Get the size of the file
       dbms_lob.fileopen(in_file, dbms_lob.file_readonly);
       blob_length := dbms_lob.getlength(in_file);
       dbms_lob.fileclose(in_file);
       -- Insert a new Record into the tabel containing the
       -- filename specified in P_FILENAME and a LOB_LOCATOR.
       -- Return the LOB_LOCATOR and assign it to out_blob.
       INSERT INTO lob_table (filename, blobdata)
          VALUES (p_filename, EMPTY_BLOB())
          RETURNING blobdata INTO out_blob;
       -- Load the file into the database as a blob.
       dbms_lob.open(in_file, dbms_lob.lob_readonly);
       dbms_lob.open(out_blob, dbms_lob.lob_readwrite);
       dbms_lob.loadfromfile(out_blob, in_file, blob_length);
       -- Close handles to blob and file
       dbms_lob.close(out_blob);
       dbms_lob.close(in_file);
       commit;
       -- Confirm insert by querying the database
       -- for Lob Length information and output results
       blob_length := 0;
       BEGIN
          SELECT dbms_lob.getlength(blobdata) into blob_length
            FROM lob_table
           WHERE filename = p_filename;
       EXCEPTION WHEN OTHERS THEN
          vErrMsg := 'No data Found';
       END;
       vErrMsg := 'Successfully inserted BLOB '''||p_filename||''' of size '||blob_length||' bytes.';
       dbms_output.put_line(vErrMsg);
    END;
    -- Author   :  Craig J. Butts (CJB)
    -- Name     :  write_blob_to_file.sql
    -- Descrip  :  This procedure takes a BLOB object from a database table and writes it
    --             to the file system
    -- ==================================================================================
    -- History
    -- DATE        WHO         DESCRIPTION
    -- 12/11/07    CJB         Created.
    CREATE OR REPLACE PROCEDURE write_blob_to_file ( p_filename IN VARCHAR2 ) IS
       v_blob      BLOB;
       blob_length INTEGER;
       out_file    UTL_FILE.FILE_TYPE;
       v_buffer    RAW(32767);
       chunk_size  BINARY_INTEGER := 32767;
       blob_position INTEGER := 1;
       vErrMsg     VARCHAR2(2000);
    BEGIN
       -- Retrieve the BLOB for reading
       BEGIN
          SELECT blobdata
            INTO v_blob
            FROM lob_table
           WHERE filename = p_filename;
       EXCEPTION WHEN OTHERS THEN
          vErrMsg := 'No data found';
       END;
       -- Retrieve the SIZE of the BLOB
       blob_length := DBMS_LOB.GETLENGTH(v_blob);
       -- Open a handle to the location where you are going to write the blob
       -- Note:  The 'WB' parameter means "Write in Byte Mode" and is only
       --          available in the UTL_FILE pkg with Oracle 10g or later.
       --        USE 'W' instead for pre Oracle 10q databases.
       out_file := UTL_FILE.FOPEN('OUT_FILE_LOC',p_filename, 'wb', chunk_size);
       -- Write the BLOB to the file in chunks
       WHILE blob_position <= blob_length LOOP
          IF ( ( blob_position + chunk_size - 1 ) > blob_length ) THEN
             chunk_size := blob_length - blob_position + 1;
          END IF;
          dbms_lob.read(v_blob, chunk_size, blob_position, v_buffer );
          UTL_FILE.put_raw ( out_file, v_buffer, TRUE);
          blob_position := blob_position + chunk_size;     
       END LOOP;  
    END;Hope this helps.
    Craig...
    -- If my response or the response of another is helpful or answers your question please mark the response accordingly. Thanks!

  • I have just upgraded to OSX 10.6.8 and now I cannot open or save PDF files from the internet. I get a dialogue box saying the QuickTime plugin has failed. I have tried to download the latest plugin but this doesn't work. Can anyone help?

    I have just upgraded to OSX 10.6.8 and now I cannot open or save PDF files from the internet using either Safari or Firefox. I get a dialogue box saying the QuickTime plugin has failed. Can anyone help?

    Is this what you downloaded: iTunes 10.7?
    When the update fails what if any error report do you get, specifically? Please do this before trying again:
    Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.

  • How to remove  "save pdf file as" dialog in startdoc with adobe acrobat 6

    We set up pdfWriter as default printer and hope to generate pdf file with startdoc call. The existing code worked great on Adobe Acrobat 5. However, after we upgraded to Adobe Acrobat 6(complete install), the same code behaved differently. Somehow, startdoc always popped out a "save pdf file as" dialog box and ask for the file path but ignored the input path parameter(the pdf file was generated at the path that user manully input in).
    W do not like this dialog box at all and expect silent action. How to remove this annoying dialog box and make the old code working (taking the parameter as pdf file path)?
    Thanks for your help.
    JD

    Hi
    I accessed to a website from my uni library computer using my student account and download a pdf file in there. However, that pdf file contains a line of words saying "Accessed by ... University Library on 30 Mar 2007". This line is printed vertically and on the left side of the page.
    Do you know how to remove that line? I think the website just embedded that line into the file.
    Please help.
    Thank you very much.
    tuanduy

Maybe you are looking for

  • [SOLVED] I cannot make mounted ext4 partition writeable.

    I want to make /dev/sdc2 (mounted on /mnt/SteamLinux) writeable, so I could install Steam games on it. /etc/fstab # /etc/fstab: static file system information # <file system> <dir> <type> <options> <dump> <pass> # /dev/sdb3 UUID=7cfc361a-47e1-45b9-84

  • SFTP through command line

    After surfing on web and reading the forums I come to know that there is no free API available for SFTP. I just want to know as alternative can we sftp through command prompt so that I can develop batch file and call it through java program. Or It wo

  • How to upload mass characteristic & class data.

    Hi Team, How to upload mass characteristic & class data. Is any BAPI or program available for this. LSMW is not working for this upload. Pls suggest. Thanks

  • Takes time to Save and publish

    Project server 2010 + SQL server 2005 sp3 When the users make the required changes and when they try to save and publish it takes them around 15 seconds to complete. What would cause that to happen, and how can one improve the performance? Satyam.

  • I just had all my music transferred to my new computer and installed itunes.  Itunes does not show any of my music.

    I just had all of my music transferred to a new Windows Dell computer.  Itunes doesnt show any of the music except the music that is in the cloud.  Can smeone help me direct my itunes to the corect library. THanks