GUI_UPLOAD not working for text file upload with '|' as a saperater

Dear all,
I have used 'GUI_UPLOAD' to upload data from text file having below format,
1000|HBK1|HKTI
1000|HBK2|HKTI
1000|HBK3|HKTI
My code is as below
*& Report  ZTEST_NEW1
REPORT  ZTEST_NEW1.
TYPE-POOLS: truxs,
            kcde.
TYPES :     BEGIN     OF             ty_data2          ,
            zbukr     TYPE           payr-zbukr       ,
            hbkid     TYPE           payr-hbkid       ,
            hktid     TYPE           payr-hktid       ,
           END       OF             ty_data2         .
DATA :            it_file   TYPE           filetable        .
DATA :      wa_file   LIKE LINE OF   it_file          .
DATA :      w_rc      TYPE           i                ,
            lv_file   TYPE           string           .
DATA : it_data2 TYPE TABLE OF ty_data2,
       wa_data2 LIKE LINE OF it_data2.
SELECTION-SCREEN BEGIN OF BLOCK bk1 WITH FRAME TITLE text-020.
PARAMETER : pr_file   TYPE           rlgrap-filename         .
SELECTION-SCREEN END OF BLOCK bk1                            .
AT SELECTION-SCREEN ON VALUE-REQUEST FOR pr_file.
  PERFORM get_file.
START-OF-SELECTION.
  PERFORM get_data.
FORM get_file .
CALL METHOD cl_gui_frontend_services=>file_open_dialog
*  EXPORTING
*    WINDOW_TITLE            =
*    DEFAULT_EXTENSION       =
*    DEFAULT_FILENAME        =
*    FILE_FILTER             =
*    INITIAL_DIRECTORY       =
*    MULTISELECTION          =
*    WITH_ENCODING           =
    CHANGING
      file_table              = it_file
      rc                      = w_rc
*    USER_ACTION             =
*    FILE_ENCODING           =
   EXCEPTIONS
     file_open_dialog_failed = 1
     cntl_error              = 2
     error_no_gui            = 3
     not_supported_by_gui    = 4
     OTHERS                  = 5
  IF sy-subrc EQ 0.
    CLEAR : wa_file.
    LOOP AT it_file INTO wa_file.
      pr_file = wa_file-filename.
      CLEAR : wa_file.
    ENDLOOP.
  ELSE.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
ENDFORM.                    " get_file
FORM get_data .
IF pr_file IS INITIAL.
    MESSAGE 'Enter file name'(002) TYPE 'E'.
  ENDIF.
  IF pr_file CP '*.xls'
    or pr_file CP '*.xlsx' . " Added
  ELSEIF pr_file CP '*.txt'.
CONSTANTS : c_del TYPE c LENGTH 1 VALUE '|'.
    lv_file = pr_file.
CALL FUNCTION 'GUI_UPLOAD'
  EXPORTING
    FILENAME                      = lv_file
   FILETYPE                      = 'ASC'
   HAS_FIELD_SEPARATOR           = c_del
*   HEADER_LENGTH                 = 1
*   READ_BY_LINE                  = 'X'
*   DAT_MODE                      = ' '
*   CODEPAGE                      = ' '
*   IGNORE_CERR                   = ABAP_TRUE
*   REPLACEMENT                   = '#'
*   CHECK_BOM                     = ' '
*   VIRUS_SCAN_PROFILE            =
* IMPORTING
*   FILELENGTH                    =
*   HEADER                        =
  TABLES
    DATA_TAB                      = it_data2
* EXCEPTIONS
*   FILE_OPEN_ERROR               = 1
*   FILE_READ_ERROR               = 2
*   NO_BATCH                      = 3
*   GUI_REFUSE_FILETRANSFER       = 4
*   INVALID_TYPE                  = 5
*   NO_AUTHORITY                  = 6
*   UNKNOWN_ERROR                 = 7
*   BAD_DATA_FORMAT               = 8
*   HEADER_NOT_ALLOWED            = 9
*   SEPARATOR_NOT_ALLOWED         = 10
*   HEADER_TOO_LONG               = 11
*   UNKNOWN_DP_ERROR              = 12
*   ACCESS_DENIED                 = 13
*   DP_OUT_OF_MEMORY              = 14
*   DISK_FULL                     = 15
*   DP_TIMEOUT                    = 16
*   OTHERS                        = 17
IF SY-SUBRC <> 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
endif.
ENDFORM.                    " get_data
In my output I am only getting company codes and not getting other two columns, can any body guide me where I am doing wrong?
I have checked many other same kind of threads and I have done the same as suggested to do but still I am facing issue.
Thanks in advance.
Regards,
Umang

Hi Umang,
There is a simple solution to this problem. Make the following changes to your code(marked in red color):
REPORT  ZTEST_NEW1.
TYPE-POOLS: truxs,
            kcde.
TYPES :     BEGIN     OF             ty_data2          ,
            zbukr     TYPE           payr-zbukr       ,
            hbkid     TYPE           payr-hbkid       ,
            hktid     TYPE           payr-hktid       ,
           END       OF             ty_data2         .
types: begin of ty_data
             str type char200,
           end of ty_data.
DATA: it_data type table of ty_data,
           wa_data type ty_data.
DATA :            it_file   TYPE           filetable        .
DATA :      wa_file   LIKE LINE OF   it_file          .
DATA :      w_rc      TYPE           i                ,
            lv_file   TYPE           string           .
DATA : it_data2 TYPE TABLE OF ty_data2,
       wa_data2 LIKE LINE OF it_data2.
rest of the code **
FORM get_data .
IF pr_file IS INITIAL.
    MESSAGE 'Enter file name'(002) TYPE 'E'.
  ENDIF.
  IF pr_file CP '*.xls'
    or pr_file CP '*.xlsx' . " Added
  ELSEIF pr_file CP '*.txt'.
CONSTANTS : c_del TYPE c LENGTH 1 VALUE '|'.
    lv_file = pr_file.
CALL FUNCTION 'GUI_UPLOAD'
  EXPORTING
    FILENAME                      = lv_file
   FILETYPE                      = 'ASC'
*HAS_FIELD_SEPARATOR           = c_del                    "comment this line
HEADER_LENGTH                 = 1
  READ_BY_LINE                  = 'X'
  DAT_MODE                      = ' '
  CODEPAGE                      = ' '
  IGNORE_CERR                   = ABAP_TRUE
  REPLACEMENT                   = '#'
  CHECK_BOM                     = ' '
  VIRUS_SCAN_PROFILE            =
IMPORTING
  FILELENGTH                    =
  HEADER                        =
  TABLES
    DATA_TAB                      = it_data
EXCEPTIONS
  FILE_OPEN_ERROR               = 1
  FILE_READ_ERROR               = 2
  NO_BATCH                      = 3
  GUI_REFUSE_FILETRANSFER       = 4
  INVALID_TYPE                  = 5
  NO_AUTHORITY                  = 6
  UNKNOWN_ERROR                 = 7
  BAD_DATA_FORMAT               = 8
  HEADER_NOT_ALLOWED            = 9
  SEPARATOR_NOT_ALLOWED         = 10
  HEADER_TOO_LONG               = 11
  UNKNOWN_DP_ERROR              = 12
  ACCESS_DENIED                 = 13
  DP_OUT_OF_MEMORY              = 14
  DISK_FULL                     = 15
  DP_TIMEOUT                    = 16
  OTHERS                        = 17
IF SY-SUBRC  0.
MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.
endif.
Loop at it_data into wa_data.
split wa_data-str at '|' into wa_data2-zbukr wa_data2-hbkid wa_data2-hktid.
append wa_data2 to it_data2.
clear wa_data2.
Endloop.
ENDFORM.                    " get_data
IT_DATA2 will contain the final uploaded data. Hope this helps

Similar Messages

  • Have been trying all weekend to upload Jpegs- either Send does not work or shows files uploading then shows error- never had this problem with Send Now-16 images total size 92MB-largest image 13MB

    Have been trying all weekend to upload Jpegs- either Send does not work or shows files uploading then shows error- never had this problem with Send Now-16 images total size 92MB-largest image 13MB

    Hi Ciaran19,
    Are you sending files from the Adobe Send interface, Adobe Reader, or the Outlook plug-in?
    Have you checked to see whether the files that you're sending appear in the Recent Files/Sent Files list when you're logged on to https://cloud.acrobat.com? (It could be that they're uploading, but not being sent.)
    It would also be worthwhile to send the files in smaller batches, to see whether a particular file or files is problematic, and causing the error.
    Please let us know how it goes. If you're still having trouble, please let us know where you're sending from, and whether you're able to send the files in smaller batches. It would also be helpful to know the exact error message that you're receiving.
    Best,
    Sara

  • Sound not working for text alert just vibrate

    Sound not working for text alert just vibrate and no sound on keyboard

    I'm having the same problem, it just started today (11/13/2012). 
    Settings > Sounds> Text Tone = Tri-tone
    Lock Sounds = On
    Keyboard Clicks = Off
    The mute button is also in the correct place (ring, not mute).

  • Oracle text search not working for  WSDL files

    I have a table (resources) with blob data type column (xml_data) and I've created context type index on that column. I've XSD and WSDL files stored in that blob column.
    I can search XSD and XML files with a query with contains operator. But any search on the words from wsdl file returns zero results.I am not able to perform search on wsdl file.
    Please advise me whether oracle text can work for WSDL files also ?
    Query details
    ===========
    create index myIndex on resources (xml_data) indextype is ctxsys.context;
    select * from resources where contains(xml_data, 'searchword') > 0
    Thanks a lot,
    Santhi

    Even though it isn't listed specifically, I can't see why it wouldn't work. The WSDL file should be a simple XML file, so in theory it shouldn't be any different to Oracle Text than the XML file that you loaded and searched successfully. Did you get any errors during indexing, and what do your tokens look like in the DR$MYINDEX$I.TOKEN_TEXT column?
    Do you have a mini test case that didn't work for you? Perhaps we could play with it a bit.
    Long term you might want to consider using section groups so that you can search "within" tags.
    -Ron

  • Encode Video Files not working for avi files

    Hi,
    I've been trying to convert some .avi files to apple format using Lion's native 'Encode video files' function however keep getting a 'avconvert: source file not found for source file://fileparthhere avconvert: failed to create an export session. Check setup
    I can't work out why as this has worked before in Lion and works fine for other video formats. The only thing I've done is remove Final Cut Express HD and can't add it again as I don't own it anymore
    Suggestions? Is there a encoder to make this work or should it work anyway?
    Thanks

    If you click Yes the project file will be updated when you save it. That has nothing to do with the media.
    Are the Lesson and Media folders still in the Book Files folder (or whatever it's called)?
    Select one of the clips in the browser and use Edit>Item Properties. One of the first lines is Source. That gives you the file path for where your media is supposed to be located. What does it say? If nothing is there, use the File>Reconnect function and point the application to where the media is located.

  • "Open With"  CS3 not working for JPEG file

    Operating system is XP. I am trying to get CS3 to automatically open all JPEG files when I double click on them in windows explorer.
    I open windows explorer, right click on the image that I want to open, then click "open with" ....
    ...at this point CS3 is not one of the choices on the "open with" menu so I already smell a problem ....
    ..... so I click "choose program" and navigate to the adobe photoshop cs3 folder and point to photoshop.exe, then click the "always use the selected program" box, click open, and bada-boom, bada-bing, the image opens in photoshop CS3, right? WRONG.
    The image opens in the Quicktime Picture Viewer program and NOT IN PHOTOSHOP CS3.
    I feel that I have entered the Twilight Zone, otherwise known as The Adobe Messed Up Someting In The Registry Upon CS3 Install Zone. Does anyone have any hints on how to get PS CS3 working as the default program for JPEGs when I double click them from explorer on my XP computer?
    Thanks,
    Mark

    After a long search I found the answer:
    To associate all jpeg files with Photoshop CS3 so that they will open into CS3 when double clicked:
    Click Start, Run and type in: Control Folders.
    Click the file Types Tab.
    Wait for the list of file types to populate.
    Single click on the jpeg file type.
    Click the Advanced button.
    Highlight open and click the edit button.
    Browse to the location of photoshop.exe in the CS3 folder.
    A few OK's and you are done.
    AND ANOTHER THING .........
    After the change above was made, jpg files would open directly to photoshop cs3 when doubleclicked, but the maintained the same goofy quicktime pictureviewer icon when viewed in windows explorer. To change the icon for jpeg files displayed in all folders to the photoshop icon, do this:
    Start / My Computer
    Click Tools at the top of the screen.
    Click folder options .... then the file types tab
    Click on jpeg in the list and click the advanced button
    Click change icon and browse to the photoshop.exe for CS3
    A list of ocon choices will appear .... I chose the second row first icon
    A couple of OKs and you are done

  • HT204387 I have a new Iphone 5 and my bluetooth capabilty with my Mercedes E550 is not working for text messaging.  Mercedes says it's a phone issue.  Has anyone else experienced this and did you find a solution?

    Iphone 5 bluetooth texting is not working in my Mercedes E550; Mercedes says it's a phone issue.  Any ideas or suggestions?

    If your question regards the ability of your Mercedes to access the text messages in your phone, the most likely answer is that your vehicle's audio system does not support the Message Access Profile. This Bluetooth profile was adopted in June of 2009, which means that Mercedes Benz wasn't implementing this capability mid-year.
    Your Merc simply will not be able to access those messages.
    If the dealer can do an update of the Firmware, it might improve the capability. But the expense of that might outweigh the ability to gain access to your texts. This is to say that there is even an upgrade possible. This is a major addition to the Bluetooth capabilities.
    FWIW, up until recently, most cars havn't had this capability. The earliest adopters were Ford and BMW.
    -D

  • File.execute() not working for bat file

    Dear all,
    The purpose of my function copyToWinClipboard (text) is to get a string directly into the Windows Clipboard. The purpose is to allow the user of my project just to paste into the open-dialog of the application EndNote. I’m not certain whether the FM clipboard (supported by the copy/cut/paste methods for Doc) really fills into the Windows Clipboard also.
    In the PhotoShop script forum I found the idea how to do this.
    #target framemaker
    // note the blank in the path
    copyToWinClipboard ("E:\\_DDDprojects\\FM+EN escript\\FM-11-testfiles\\BibFM-collected.rtf");
    function copyToWinClipboard (text) {
      var theCmd, clipFile = new File(Folder.temp + "\\ClipBoardW.bat");
      clipFile.open('w');
    //  theCmd = "echo \"" + text + "\" | clip"; // this doesn’t help either
      theCmd = "echo " + text + " | clip";
      clipFile.writeln (theCmd);
      clipFile.close ();
      clipFile.execute ();
    Running this script provides a short flicker (the command prompt), but the clipboard does not contain the expected string. However, when double clicking on the generated I:\!_temp\ClipBoardW.bat the clipboard is filled correctly.
    IMHO the execute method does not work correctly for bat files. In another area of my project-script i run an exe file with this method correctly.

    Hi Klaus,
    sorry for my late response.
    execute definitely works witch batch-files
    Here's a "batch" - example you can test.
    There are two methods to prevent window from closing:
    "|more" - kind of pagebreak
    "pause"
    var oTemp = app.UserSettingsDir + "\\tmp";
        var MyDosCommand = "ipconfig.exe /a|more";
        var MyPath = new Folder (oTemp);
        if (!oTemp.exists)
            var MyPath = new Folder (oTemp);
            var lFehler = MyPath.create();
        oTemp = oTemp + "\\" +"nw.bat";
        var MyFile = new File (oTemp);
             MyFile.open ('w');
               if (MyFile.error > "")
                    alert("ERROR");
            MyFile.writeln(MyDosCommand);
            MyFile.writeln("pause");
            MyFile.close();
            MyFile.execute();

  • "Automatically Write Changes Into XMP" Not Working for DNG Files

    Hello,
    I am needing to update DNG/JPG file pairs with keywords that I add  in lightroom.  The following is the problem that I am encountering. 
    When the image consists of only a JPEG file (ie. I had my DSLR only snap a jpeg and not an associated DNG), and I add one or more keywords to the file in Lightroom, these are written / saved immediately in Lightroom and are visible immediately in the 'tags' column for that image in windows explorer.  Very useful and important functionality for my workflow.
    However, when the image consists of both a JPEG and a sister DNG (i.e.,snapped simultaneously by my DSLR), and I try to add keywords to these (treated at this point as a single image by lightroom) then Lightroom does not record the keywords into either of the two files and consequently no tags are visible in windows explorer.  I have confirmed this apparent problem with a seperate image metadata utility software, and am hoping that it's just something simple that I am missing.
    Also "Automatically Write Changes Into XMP" is selected and I have also  tried manually both: "right click," "metadata," "write metadata to file;"  and  "right click" "update DNG preview and metadata" and the problem  persists.
    Hopefully someone has encountered something similar and can point me in the right direction.
    Thanks in advance.

    @Eric: hitting cntrl+s works but can be tedeous on large galleries. I've been doing this but it can be a pain.
    @Jeannine: different topic than this thread but to answer anyways... Lightroom automatically saves all changes into your catalogue. You never need to dave your changes (here's the kicker though) as long as you do not move the original file. If you
    move the file than lightroom won't know that it's the same image as the one you've edited. Once you are done editing your image you will need to "export" the image to a new file (you don't wan to overwrite the original). If you don't export than only lightroom will have your edits. Lightroom is "non-destructive" Which means that it doesn't touch your original photo. Lightroom keeps a text file containing the instructions on what you did to make the edited version. Since your changes are just text inatryxtions you have to "export" the image to get your final image in a version you can put online, print, etc. But to answer your original question, I think you prob moves the original image. If not, could you give us more info?

  • Variable substitution not working for dynamic file name in Receiver File CC

    Hi Experts,
    I am doing the scenario of Proxy sender to File receiver and my purpose is to Create the text file
    as per the filename available in Source Message payload.
    I am using the Variable Substitution method for this as shown below.
    Source Message Structure:-
         <Row>            -
    having Cocurence 1.1
             <Filename>     -
    having Cocurence 1.1
             <Item>            -
    having Cocurence 1.Unbounded
              <Field1>
              <field2>
             <Item>
             <Item>
              <Field1>
              <field2>
                <Item>        
         <Row>
    Target structure is same as the source structure and i have mapped the Filename field of the Source
    with the Target structure Filename.
    In ID the following is the File receiver CC Configuration.
    File Name Scheme:- %Dyn_filename%
    In Advance tab, I have selected the Enable option and added one row as Variable name %Dyn_filename%
    and Reference as payload:Row,1,Filename,1
    In testing I am getting the Error as 'variable Dyn_filename is not found in Message payload'.
    Please suggest me.
    Regards,
    Jagesh

    Hi Pooja,
    Hi Pooja,
    Thanks for your valuable reply..
    I  tried with the same. but still Filename is appearing in Output file.Giving you some details regarding my Receiver File Configuration settings.
    Target Message Type:-
              <MT_Target_Struct>
                    <Row>----
    1.1 occurence
                            <Filename_test>----
    1.1 occurence
                            <ITEM>----
    1.unbounded occurence
                                  <Field1>
                                  <Field2>
                            <ITEM>
                            <ITEM>
                                  <Field1>
                                  <Field2>
                            <ITEM>
                    <Row>
              <MT_Target_Struct>
    Recordset structure:-  Row,Filename_test,ITEM
    Row.fieldSeparator----
    >'nl'
    Filename_test.fieldFixedLengths----
    >0  (Zero)
    Filename_test.fixedLengthTooShortHandling----
    >Cut
    ITEM.fieldSeparator----
    >,
    ITEM.endSeparator----
    >'nl'
    I want only ITEM node to be written in the output file.
    Please suggest.
    Regards,
    Jagesh

  • Database Variant to Data.vi not working for the Date datatype with LV 8.2?

    I'm moving a large body of LV database code from LV 7.1 to 8.2 and find that the Database Variant to Data.vi is not working correctly when used with the Date datatype. It works fine with 8.0, and the common Variant to Data works also. Am I missing something? Thanks in advance for any assistance. Wes

    Thanks for the prompt reply Crystal,
    The data is stored in an Oracle database using the DATE type. I'm querying many rows along with other columns and converting each of the values as necessary for each column with the 'Database Variant to Data' vi. Only conversion to Timestamp is no longer working as of version 8.2. I recognize that plain Variant to Data works but I have many (100's) of VIs to change if that is the only solution (not the end of the world). Most often the dates are originally generated in the database using PL/SQL procedures calling SYSDATE which look like: 5/1/2006 11:56:26 AM (in TOAD anyway) which I then need to read into LV as type Timestamp.
    Regards, Wes.

  • I cannot get my thunderbird box to work since upgrade. addons not working for larger files

    When I try to use box for larger attachments ,it is not working and just keeps trying to load . I have checked my box account and spoken to there tech and he said it is not on their end ?

    I don't have any direct experience with D-Link equipment, but I may be able to provide some general advice. See if you can use a Web browser to connect to the D-Link's configuration screen. This probably involves visiting a URL such as http://www.192.168.0.1 . If you haven't changed the sign-on parameters, a quick Google search should find them for you.
    Once there, note as many configuration details as you can find. You'll need those to configure your Time Capsule.
    Use the AirPort Utility to configure the Time Capsule.
    One last thing: It's quite possible that the Verizon network will have locked onto the "MAC" address of your D-Link router. Something needs to be done to reset this. If there's a separate box at your house that came with the FIOS equipment that's "upstream" from the D-Link router, I'd cycle power on it to see if that does the job. Otherwise you'll probably need to call Verizon to ask them to reset things once your Time Capsule is installed in place of the D-Link router.

  • Quick look not working for office files from mail

    I installed the new Microsoft Powerpoint on my ipad to check it out.  I didn't really like it so I uninstalled it.  Now when I am in mail and try to view a Powerpoint presention (or any other office file), quick look opens with just the name and size of the file rather than letting me view the file.  I am assuming installing Powerpoint somehow disabled Quick View for those files.  How do I fix this?  I really need to be able to read office files from Mail on my ipad!!

    It sounds like you may have 2 different programs that support quicklook differently. I suspect the .doc files are different formats that are using one or the other application.
    A quick test - select a file with the full preview. Get info on it in the Finder (File > Get Info) see what application it is set to open with by default. I suspect this will be TextEdit or MS Word. Compare this to a file that has no preview in quicklook. Change over the default application to the other application and see if the preview appears.
    My understanding is that the software has to be aware of quick look to parse the document and create the preview. It could be that one of the softwares needs an update, or is too old to support quicklook.
    you should be able to see the version number by opening the application and using the About menu under the Application menu. Post them here if the above doesn't work.
    You may also compare the 'Kind' in the info dialog, it could be that they are slightly different formats. Opening and saving may generate the previews (keep the originals if you do this!)

  • QuickLook not working for SVG files

    Hi,
    I get a blank white rectangle when I QuickLook SVG files. Is it working for anyone else?
    I'm testing with this file, which renders correctly in Safari, and shows a preview in Finder. I'm running OS X 10.10.2.
    qlmanage -d 1 -p SVG_logo.svg says that it's using the Web.qlgenerator.

    Apple closed my radar as a duplicate of #19639311.
    A quick google search revealed that this same bug is affecting html files as well.
    http://apple.stackexchange.com/questions/169948/updating-to-os-x-10-10-2-broke-q uick-look-previews-for-html-files
    10.10.2 quick look broken for HTML files

  • Preview is not working for MEdia files

    Suddenly whenever I would like to have a quick look for any video file via (Space bottom) its not working, keep giving that "Loading preview" but never show the video.
    i am using quick time X.
    any help
    mohammad

    There are quite a few different settings that you can choose from when converting a RAW file to a DNG. Without knowing what settings you set up in LightRoom there's no way to tell why your images aren't importing properly.
    Roughly speaking, a linear DNG is one where the first part of the RAW conversion process (called debayerising or demosaicing) has already been done by Adobe.
    Ian

Maybe you are looking for

  • SAML IDP issue

    I currently have a working Service Provider-IDP SAML solution working inside Enterprise Manager (both setup by an Oracle Engineer). I'm trying to use my own IDP (created using OpenSAML - which does work successfully with other products) to interact i

  • ITunes Consolidation - question

    Hi, Recently I executed the consolidate option in iTunes v6 (for Windows). I noted that the physical mp3 files were stored in random order (I guess picked up from the ID3 tags). IS there a way to determine the order of files stored into a directory d

  • Wireless Headset for personal communicator

    Happy Monday --- Which brand/model headset is being used outthere for personal communicator/soft phone? I am using USB headset Logitech, but I have been asked to get wireless instead. Need to alert users to check their laptop for Bluetooth capabiliti

  • How to back up iTunes to a CD-RW

    Hi, I am trying to back up my entire itunes library.. by burning it onto a CD-RW. How can I do this? Thanks!

  • Tracks are renumbered...1, 2, 3 becomes 56, 57, 58, etc

    Recently (after upgrading to iTunes 7.0.1...) I pulled up iTunes and saw that a huge number of tracks were renumbered. Not all in an album, but the first three or four would be renumbered 56, 57, 57, etc. I have a huge number of tracks in iTunes (14,