In gui_download FM can we input  FILETYPE = 'WK1'

In gui_download FM can we use the filetype = 'wk1'. or it is going to support only BIN and ASC.
i want to upgraded ws_download to gui_download.in that ws_download filetype was 'WK1' .so how to give WK1 IN GUI_DOWNLOAD.
PLS ITS URGENT

you can use WK1 also
chk this help
'ASC' :
ASCII format. The table is transferred as text. The conversion exits are carried out. The output format additionally depends on the parameters CODEPAGE, TRUNC_TRAILING_BLANKS, and TRUNC_TRAILING_BLANKS_EOL.
'IBM' :
ASCII format with IBM codepage conversion (DOS). This format corresponds to the 'ASC' format when using target codepage 1103. This codepage is often used for data exchange by disc.
'DAT' :
Column-by-column transfer. With this format, the data is transferred as with ASC text. However, no conversion exists are carried out and the columns are separated by tab characters. This format creates files that can be uploaded again with gui_upload or ws_upload.
'DBF' :
The data is downloaded in dBase format. Because in this format the file types of the individual columns are included, import problems, for example, into Microsoft Excel can be avoided, especially when interpreting numeric values.
'WK1' :
The data is downloaded in Lotus 1-2-3 format.
'BIN' :
Binary format. The data is transferred in binary format. There is no formatting and no codepage conversion. The data is interpreted row by row and not formatted in columns. Specify the length of the data in parameter BIN_FILESIZE. The table should consist of a column of type X, because especially in Unicode systems the conversion of structured data into binary data leads to errors.

Similar Messages

  • In WS_DOWNLOAD   , FILETYPE                      = 'WK1'

    Hi pals,
            I am using WS_DOWNLOAD function module in 4.6c, with file type = 'WK1'. i am getting EXCEL(.XLS File) results with out lines(similar to EXCEL SHEET). I need to get excel format(boxes)by using same file type (WK1)
    Can any body suggest me.
    Thanks in advance.
    Balaji.

    Ok, if you still need a solution. for this.  This will work.   This program uses the WS_DOWNLOAD function  module(as you were) and then uses OLE to open the excel and put the grid lines in.  The data is stored on the PC in a temp file, then is save to the real file name after adding the grid lines.  The temp file is then deleted from the frontend.
    report zrich_0002.
    data: it001 type table of t001.
    include ole2incl.
    data: e_sheet type ole2_object.
    data: e_appl  type ole2_object.
    data: e_work  type ole2_object.
    data: e_cell  type ole2_object.
    data: e_borders  type ole2_object.
    data: tmp_file type localfile value 'C:tmpfile.xls'.
    parameters: p_file type localfile default 'C:Test.xls'.
    start-of-selection.
      select * into table it001
              from t001.
      call function 'WS_DOWNLOAD'
           exporting
                filename = tmp_file
                filetype = 'WK1'
           tables
                data_tab = it001.
    * Start the application
      create object e_appl 'EXCEL.APPLICATION'.
      set property of e_appl 'VISIBLE' = 0.
    * Open the file
      call method of e_appl 'WORKBOOKS' = e_work.
      call method of e_work 'OPEN'
              exporting
                   #1 = tmp_file.
      get property of e_appl 'Cells' = e_cell.
      call method of e_cell 'Select'.
    *left
      call method of e_cell 'BORDERS' = e_borders exporting #1 = '1'.
      set property of e_borders 'LineStyle' = '1'.
      set property of e_borders 'WEIGHT' = '2'.                 "4=max
      free object e_borders.
    * right
      call method of e_cell 'BORDERS' = e_borders exporting #1 = '2'.
      set property of e_borders 'LineStyle' = '2'.
      set property of e_borders 'WEIGHT' = '2'.
      free object e_borders.
    * top
      call method of e_cell 'BORDERS' = e_borders exporting #1 = '3'.
      set property of e_borders 'LineStyle' = '3'.
      set property of e_borders 'WEIGHT' = '2'.
      free object e_borders.
    * bottom
      call method of e_cell 'BORDERS' = e_borders exporting #1 = '4'.
      set property of e_borders 'LineStyle' = '4'.
      set property of e_borders 'WEIGHT' = '2'.
    ** Close the file
      get property of e_appl 'ActiveWorkbook' = e_work.
      call method of e_work 'SAVEAS'
            exporting
                #1 = p_file
                #2 = 1.          " Don't ask me when closing
      call method of e_work 'close'.
    * Quit the file
      call method of  e_appl  'QUIT'.
    * Free them up
      free object e_borders.
      free object e_cell.
      free object e_work.
      free object e_appl.
    * Remove the tmp file from frontend
      call function 'WS_FILE_DELETE'
           exporting
                file = tmp_file.
    Please remember to award points for helpful answers and mark you post as solved when your problem is solved completely.  Thanks.
    Regards,
    RIch Heilman

  • HT1212 I am trying to restore a phone that the screen does not work on, therefore I can't input my password.  How can I bypass this and upload it to itunes?

    I am trying to restore a phone that the screen does not work on, therefore I can't input my password.  How can I bypass this and upload it to itunes?

    You could follow the instructions in the support document that you linked from. There is a section regarding the passcode and the inability to use it or enter it. However, you may encounter more issues since you cannot use the screen.

  • How can I input read a line from a file and output it into the screen?

    How can I input read a line from a file and output it into the screen?
    If I have a file contains html code and I only want the URL, for example, www24.brinkster.com how can I read that into the buffer and write the output into the screen that using Java?
    Any help will be appreciate!
    ======START FILE default.html ========
    <html>
    <body>
    <br><br>
    <center>
    <font size=4 face=arial color=#336699>
    <b>Welcome to a DerekTran's Website!</b><br>
    Underconstructions.... <br>
    </font> </center>
    <font size=3 face=arial color=black> <br>
    Hello,<br>
    <br>
    I've been using the PWS to run the website on NT workstation 4.0. It was working
    fine. <br>
    The URL should be as below: <br>
    http://127.0.0.1/index.htm or http://localhost/index.htm
    <p>And suddently, it stops working, it can't find the connection. I tried to figure
    out what's going on, but still <font color="#FF0000">NO CLUES</font>. Does anyone
    know what's going on? Please see the link for more.... I believe that I setup
    everything correctly and the bugs still flying in the server.... <br>
    Thank you for your help.</P>
    </font>
    <p><font size=3 face=arial color=black>PeerWebServer.doc
    <br>
    <p><font size=3 face=arial color=black>CannotFindServer.doc
    <br>
    <p><font size=3 face=arial color=black>HOSTS file is not found
    <br>
    <p><font size=3 face=arial color=black>LMHOSTS file
    <br>
    <p><font size=3 face=arial color=black>How to Setup PWS on NT
    <BR>
    <p><font size=3 face=arial color=black>Issdmin doc</BR>
    Please be patient while the document is download....</font>
    <font size=3 face=arial color=black><br>If you have any ideas please drop me a
    few words at [email protected] </font><br>
    <br>
    <br>
    </p>
    <p><!--#include file="Hits.asp"--> </p>
    </body>
    </html>
    ========= END OF FILE ===============

    Hi!
    This is a possible solution to your problem.
    import java.io.*;
    class AddressExtractor {
         public static void main(String args[]) throws IOException{
              //retrieve the commandline parameters
              String fileName = "default.html";
              if (args.length != 0)      fileName =args[0];
               else {
                   System.out.println("Usage : java AddressExtractor <htmlfile>");
                   System.exit(0);
              BufferedReader in = new BufferedReader(new FileReader(new File(fileName)));
              StreamTokenizer st = new StreamTokenizer(in);
              st.lowerCaseMode(true);
              st.wordChars('/','/'); //include '/' chars as part of token
              st.wordChars(':',':'); //include ':' chars as part of token
              st.quoteChar('\"'); //set the " quote char
              int i;
              while (st.ttype != StreamTokenizer.TT_EOF) {
                   i = st.nextToken();
                   if (st.ttype == StreamTokenizer.TT_WORD) {          
                        if (st.sval.equals("href")) {               
                             i = st.nextToken(); //the next token (assumed) is the  '=' sign
                             i = st.nextToken(); //then after it is the href value.               
                             getURL(st.sval); //retrieve address
              in.close();
         static void getURL(String s) {     
              //Check string if it has http:// and truncate if it does
              if (s.indexOf("http://") >  -1) {
                   s = s.substring(s.indexOf("http://") + 7, s.length());
              //check if not mailto: do not print otherwise
              if (s.indexOf("mailto:") != -1) return;
              //printout anything after http:// and the next '/'
              //if no '/' then print all
                   if (s.indexOf('/') > -1) {
                        System.out.println(s.substring(0, s.indexOf('/')));
                   } else System.out.println(s);
    }Hope this helps. I used static methods instead of encapsulating everyting into a class.

  • I need to restore my iphone but itunes can't connect because it locked with password. I can't input the password becasue it showing no service and needs to be restored.

    I need to restore my iphone but itunes can't connect to it because of my password which I can't input becasue it has no service and needs to be restored. what can I do to restore it? Is there a way to input the password?

    You will need to put the iPhone into Recovery Mode to be able to restore it in iTunes.
    To put your iPod/iPhone  into recovery mode:
    1. Make sure the iPod/iPhone is connected to a computer with iTunes installed on it.
    2. Hold down the sleep/wake button(top button) and the home button at the same time until the iPod/iPhone screen goes black then shows the apple logo( usually 10-15 seconds).
    3. Once the apple logo appears on the screen, let go of the sleep/wake button and keep holding the home button.
    4. The ipod/iphone screen should show an itunes logo and usb cable if you were successful. A dialog box will appear in iTunes that states an iPod/iPhone in recovery mode has been detected if you are successful.
    5. Click ok, then click the Restore button
    After that you should be up and running in no time!
    I hope that this is helpful.

  • Where or how can we input the Intermediary Bank info in Vendor Master?

    Hi
    I would like to know if there are specific fields were we can include information of an Intermediary Bank when we are creating the Vendors Account Information.
    For instance, if we have the following information, how and where should we input the Intermediary Bank information?
    Vendor's Name:    ABY COMPANY
    Vendor's Address:    Miami, Florida
    Vendor's Account:    123789456
    Vendor's Bank Name:    CITIBANK N.A.
    Vendor's Bank Address:   Miami, Florida
    Vendor's Bank BIC Code:   CITIUS33MIA
    Vendor's Bank ABA Code:   266086554
    Vendor's Bank Intermediary Bank Name: CITIBANK, N.A.
    Vendor's Bank Intermediary Bank Address: New York, New York
    Vendor's Bank Intermediary Bank BIC Code: CITIUS33XXX
    Vendor's Bank Intermediary Bank ABA Code: 021000089
    Where or how can we input the Intermediary Bank information?
    Tks in advance for your reply
    reg
    vishnu

    Hi
    Thanks for your inputs
    Actually we need to create a link between Vendor mail bank and Vendor Intermediary bank, is there any possiblility in Vendor master data?
    As you explained i checked the settings, how can i create link between from main bank to intermediary bank?
    reg
    Vishnu

  • How can I input Chinese in the Playbook?

    How can I input Chinese in the Playbook?  such as in browers and contact

    I think the only way to do that is to download an app, that lets you input pinyin for instance, then copy and paste from there. The last time I checked, there are 3 apps in the app world, all by the same person. I've no idea what the difference between them is.

  • Password Remember Button does not function; Can't input 3rd Party Passwords for Social Networks/Emails.

    My "Remember" button doesn't work. Simple as that. The "Not Now"
    Button still works, and closes the pop-bar. Remember doesn't do anything.
    [Exception... "'User canceled master password entry, login not added.' when calling method: [nsILoginManagerStorage::addLogin]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame :: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsLoginManager.js :: anonymous :: line 445" data: no]
    Occurs when trying to input 3rd Party extension passwords.
    I have no master password set, I have also read the "Password not remembered topic", and it didn't help.
    Error Console yields this:
    "'''Warning: The 'charCode' property of a keyup event should not be used. The value is meaningless.
    Source File: https://support.mozilla.com/en-US/questions/new?product=desktop&category=d6&search=Password+Remeber+Button+does+not+function%3B+Can%27t+input+3rd+Party+Passwords+for+Social+Networks%2FEmails.&showform=1#question-form
    Line: 0'''"

    Okay, I have started Firefox in Safe Mode, and the Remember button still didn't work. After checking the error console, It had the following message again:
    "Error: uncaught exception: [Exception... "'User canceled master password entry, login not added.' when calling method: [nsILoginManagerStorage::addLogin]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame :: file:///C:/Program%20Files/Mozilla%20Firefox/components/nsLoginManager.js :: anonymous :: line 445" data: no]"
    After I Evaluated it (In the error console) it gave me a slightly different version:
    "Error: missing ; before statement
    Source File: javascript:%20Error:%20uncaught%20exception:%20[Exception...%20"'User%20canceled%20master%20password%20entry,%20login%20not%20added.'%20when%20calling%20method:%20[nsILoginManagerStorage::addLogin]"%20%20nsresult:%20"0x8057001e%20(NS_ERROR_XPC_JS_THREW_STRING)"%20%20location:%20"JS%20frame%20::%20file:///C:/Program%2520Files/Mozilla%2520Firefox/components/nsLoginManager.js%20::%20anonymous%20::%20line%20445"%20%20data:%20no]
    Line: 1, Column: 8
    Source Code:
    Error: uncaught exception: [Exception... "'User canceled master password entry, login not added.' when calling method: [nsILoginManagerStorage::addLogin]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame :: file:///C:/Program%2"
    I read the Troubleshooting extensions & Themes, but It didn't help.
    When I tried to read "http://kb.mozillazine.org/Password_Manager" I get a page that says:
    "ERROR
    The requested URL could not be retrieved
    While trying to retrieve the URL: http://kb.mozillazine.org/Password_Manager
    The following error was encountered:
    * Connection Failed
    The system returned:
    (110) Connection timed out
    The remote host or network may be down. Please try the request again.
    Your cache administrator is root. "
    Also, this error occurs in ALL 3rd Party extensions. It can't log me into E-Mail accounts, Facebook, Twitter, anything. The error message has a window title of [JAVASCRIPT APPLICATION] if that says anything.

  • Just bought the Titanium HD - Can it input my xbox 360? Does it have low ASIO Latency?

    Hi, I had a amazon credit and just purchased the X-Fi Titanium HD. I wanted a card that had low latency when using ASIO as I produce music using Cubase and Midi Instruments. I like to be able to play the sounds in real-time without latency and clipping.
    Also, I read that it has a Digital Input on the back of the card. A thread I found here: [url=http://forums.techarena.in/monitor-video-cards/1374952.htm">http://forums.techarena.in/monitor-video-cards/1374952.htm
    [/url]...mentioned that it might be able to input the xbox 360's audio.
    I have a few questions before Amazon ships out my card.
    1.) Is this the best card to choose from Creative in terms of ASIO latency? (Mainly got it for this reason)
    2.) Can I input my Xbox 360 (using Optical In or Coax in) so I can play the sound through my PC? I'm tired of having to switch my receiver's input every time and being able to only listen to one audio source.
    3.) I have the Z-5500 Speakers. Does this sound card come with the cables necessary to hook it up to my Z-5500 via Analog, Coax, or Optical In?
    Thanks!!

    1. Yes it is
    2. Yes you can but only in stereo, no DD/DTS decoding from spdif
    3. Yes you can, THD come with 2 toslink->minitoslink optical cabels
    sry for my english

  • SRM User defined fields -- can not input values

    Hi,
    We are using SRM 4.0. I have created a user defined field at the PO header according to note 672960. But I can not input anything to this field.
    This is what I did:
    1. in both structures INCL_EEW_PD_HEADER_CSF and INCL_EEW_PD_HEADER_CSF_PO add the append structure with the new field ZZCONTRACT.
    2. in BADI BBP_CUF_BADI_2 created an implementation Z_BBP_CUF_BADI_2. In method MODIFY_SCREEN set: xdisplay = 'X' and xinput = 'X' for this new field.
    This new field showed up in SRM, but it is greyed out. I can not type in anything. Could anyone tell me what I did wrong or what I have missing? Thanks a lot!

    hi,
      If you can see the custom fields,the problem is with the BADi implementation.You can write something like this in the method for the PO cust fields:
    IF iv_doc_type = 'BUS2201'.
      *Hide all customer fields
    *Will change this coding if any other document type needs
    *customer fields
          LOOP AT et_fields INTO wa_et_fields.
            wa_et_fields-xdisplay = 'X'.
            MODIFY et_fields FROM wa_et_fields.
          ENDLOOP.
         ENDIF.
    Save and activate the implementation.
    HTH.
    BR,
    Disha.
    Pls reward points for useful answers.

  • Can I input a document, edit it, and then print it out?

    Can is input a document, edit it, and then print it out?

    Hi Yekoms12,
    CreatePDF is an online application used to convert and combine files of any other format to PDF or converting PDF files to MS Word/ Excel or RTF, but you cannot edit PDF files in Adobe CreatePDF. In order to edit PDF you need to purchase Adobe Acrobat XI.
    For more information on using CreatePDF, please follow the link: http://helpx.adobe.com/acrobat-com/kb/using-createpdf.html
    For more information on Adobe Acrobat XI, please follow the link: http://helpx.adobe.com/acrobat/topics.html

  • Can't input MIDI file into project

    Hi,
    I can't input MIDI files into a garageband project. I used to do this very easily, just drag & dropping the file into a blank GB project. That was on my previous older computer, with a previous version of GB. Now I just got a brand new iMac G5 with the most up to date version of GB, and it is not working, the MIDI files just will not drop. I even tried by doing an 'open with', selected GB as the software, and got a message saying 'Garageband cannot open files in the midi audio format' !!!
    What's even crazier is that a couple weeks ago I had the same problem, and ****** around with trying different things, and at some point GB did accept the files ! But now it doesn't, and I have no idea what I did different then, probably nothing much.
    Any ideas ? It sure is highly frustrating (trying to stay polite here) when a brand new, expensive machine cannot do the simple things that a 5 year old one could.

    Have you tried different files? Maybe one that you're sure worked on your old computer? Some midi files can be tricky.

  • How to create a TextField that only numbers can be input?

    Hi,
    I just want to create such TextField that you can just input numbers (0-9) in it. Is there any advice about that?
    I will appreciate any help.

    Look at the IntField in this sample: https://gist.github.com/1962045
    I think you will find some other solutions by searching the forum.

  • HT201412 my iPad is frozen.. it won't shut off.. i can't do a forced restart.. it doesn't respond to that either.. i can't connect it to iTunes because it needs passcode entered but again the iPad is frozen so i can't input the passcode- can't do recovery

    my iPad is frozen.. it won't shut off.. i can't do a forced restart by holding the sleep/wake and home button.... it doesn't respond to that either.. i can't connect it to iTunes because it needs passcode entered but again the iPad is frozen so i can't input the passcode… I also can't do recovery mode as the ipad won't shut down for me to do a recovery mode.... HELP

    Erase iPad and setup iPad from scratch
    1. Launch web browser on your computer
    2. Sign in to www.icloud.com
    3. Tap on Find My iPhone
    4. Select the iPad to be erased
    5. Tap Erase iPad
    6. Message: All your content and settings will be erased. An erase iPad cannot be located or tracked
    7. Tap Erase
    8. Enter Apple ID and Password
    9. Tap Next
    10. Enter a phone number where you can be reached. It will be shown on your iPad after it has been erased
    11. Enter phone number
    12. Tap Next
    13. Tap Erase iPad
    14. This message will be shown on your iPad after it's been erase "This iPad has been lost. Please call 12345678"
    15. Done
    16. Erase started
    16. OK
    17. Remove from Account (this will allow iPad to be activated and used by another person)
    Setup wiped iPad
    1. Slide to unlock
    2. Select English
    3. Select Country
    4. Choose Wi-Fi Network
    5. Enter Wi-Fi password
    6. Activate iPad
    7. Apple ID and Password
    8. Apple ID and Password
    9. Enable Location Service
    10. Select "Restore from iCloud Backup"
    11. Enter iCloud password
    12. Agree to Terms and Conditions
    13. Choose backup
    14. Select "Backup file in iCloud"
    15. Hello (Welcome)
    16. Slide to unlock
    17. Update Completed
    18. Continue
    19. Enter Apple ID and Password
    20. Updating iCloud
    21. Select "Don't Add Passcode"
    22. Welcome to iPad
    23. Get Started
    24. Restore Apps and Media. Your settings have been restored. Connect to power to save battery while apps and media are downloading
    25. Sign in to iCloud

  • Making a jframe that i can put input into....

    hey guys i was wondering if i could have a very easy beginer code sample ofr making a small jframe that i can put input into....and can we display our own home written code on the forums i checks the conduct thingy but it didnt say...tyvm for the help
    System.out.println("JAVA FOR LIFE!!!");

    [http://java.sun.com/docs/books/tutorial/uiswing/index.html]

Maybe you are looking for