Need Spool output file in Excel format

Hi,
We have background job , which creates a spool output in Internet Explorer format. Customer needs this in Excel format.
Wondering, if any authorizations to be changed for file type? or this is a set in program level?
Thanks,
Sam

Hi Sam,
                 This need to be fixed at the program level only,so you need an ABAPer to make the changes in out put. There is nothing to do with authorizations.
Regards,
Hari.
PS: Award points if helpful.

Similar Messages

  • ALV Grid to be run in background & to generate output file in Excel format

    I use  REUSE_ALV_GRID_DISPLAY in my program for the ALV output
    My Requirement is Program to be run in a background since it is getting timed out when executed in foreground and also to generate the output file in Excel format. And we are using 4.6 C version.
    how do i attain this?

    Hello,
    One alternate solution can be :
    Execute your report in background and then send the data to Spool .
    From this spool , you can download the data in excel file.
              SUBMIT xyz TO SAP-SPOOL
                 SPOOL PARAMETERS gt_print_parameters.
    Regards,
    Sandeep

  • DME output files in CSV format

    Hi,
    Can anybody please let me know whether we can get the DME output files in CSV format using program RFFOJP_L?
    Your help and time will be really appreciate.
    Thanks & Regards,
    Niki Shah
    Edited by: Niki Shah on Aug 5, 2009 10:14 AM

    No it will not work. You need full Photoshop (CS5)

  • Output files in CMYK format

    Currently using Elements 7 and I want to output files in CYMK format. Contacted Adobe and was told to upgrade to Elements 9. Will this actually work? I cannot find any reference to CMYK format in Elements 9.

    No it will not work. You need full Photoshop (CS5)

  • I have built a slideshow in iPhoto -- I need/want the file in .mp4 format.  How do I do that?

    Ok, I don't know why I am here, but!
    I have built a slideshow in iPhoto -- I need/want the file in .mp4 format.  How do I do that?
    The question may have been answered somewhere but I was sent here -- so her I am.
    Still I think I need my slideshow in .MP4 format to play on windows/smartTVs and the .m4v file that export offers seems to be the only option and it fails.
    I am using iPhoto v9.5.1 on a Macbook Air.
    help.

    Try changing the extension to .m4v and see if that will do the trick.  It did for me on another occasion where it wouldn't play as .MP4.  If it works it's a simple solution.
    I compared an .m4v and an .MP4 file in Qujicktime Player via the Winde ➙ Show Movie Inspector menu and both were  the same codec:
    H.264, 1280 × 720, Millions
    AAC, Stereo (L R), 44.100 kHz
    Check to see what codec the Movie Inspector window shows.
    OT

  • Hello, How do I tell sql+ to spool output file from windows to Unix server?

    Hello, How do I tell sql+ to spool output file from windows to Unix server?
    I am new to SQL+ and just learned how to spool the file. But file is saved in my local windows enviroment and since it's 2GB in size...I want to spool it directly to another remote unix server.
    Pls answer in detail... I have been to most of the thread and didn't see relevant answer to above question.
    Am I suppose to develope some script which FTP the spool file directly to the server I want to
    or
    i Have to use UTL_FILE Package ?
    Thanks for reply

    You may not be able to...
    SQL*Plus can only spool to the local machine. If you have mapped a directory on the Unix server from your Windows machine, you can specify that directory in your SPOOL command.
    You could telnet to the Unix server, run SQL*Plus there, and spool the file to a local (Unix) directory.
    If the Unix server is also the Oracle database server, you could use the UTL_FILE package rather than using SQL*Plus to spool a file.
    If the Unix server is also an FTP server, you could also FTP the file from your local machine to the server.
    Of course, I would tend to re-examine a requirement to regularly generate a 2 GB text file. It seems likely that there is a better way...
    Justin

  • HT201279 convert Numbers file to Excel format

    When I convert my Numbers file to Excel format, each worksheet name is appended with "Table - 1". 
    Each subsequent conversion adds another "Table - 1" to the name of every worksheet as well.
    How do I stop this from happening?

    If you are exporting then importing repeatedly, it will keep appending these things to the names.
    Numbers document with two sheets, both with a single table called "Table 1" will get exported as two Excel worksheets: "Sheet 1 - Table 1" and "Sheet 2 - Table 1". It creates a separate Excel worksheet for every table and names each with the sheet and table name.
    Reimporting this to Numbers will result in a Numbers document with a sheet called "Sheet 1 - Table 1" and another called "Sheet 2 - Table 1" and both will contain a single table called "Table 1".  It imports each Excel worksheet as a Numbers Sheet and creates a table for each called "Table 1".
    It really doesn't work well to import & export repeatedly. Much better to use one app or the other.

  • In new Numbers, can you export a file into excel format?

    In new Numbers, can you export a file into excel format? Or is this something else thats been removed!!??
    HELP!!

    Hi AMGracie,
    In Numbers 3.0 on a MacBook Pro running OS X 10.9
    Regards,
    Ian.

  • Download files in excel format

    Hi,
    Can anyone help me for downloading file in excel format? I have scheduled a job repeated everyday at a particular time, but it dumps a text file, NOT in excel format. My programme is an ALV.
    Code snippet would be verymuch helpfull.
    Thank,
    Thushara.

    Hello Thushara,
    here is a code i am giving you . It will take the data from a database , and download it into the excel format..
    You just can customize this program to download the data from an ALV ....
    Here is the sample code...
    REPORT  ZKUN_FILE4                              .
    TABLES: USR03,DD02L.
    DATA: ZX030L LIKE X030L.
    DATA BEGIN OF ZDFIES OCCURS 0.
         INCLUDE STRUCTURE DFIES.
    DATA END OF ZDFIES.
    DATA: BEGIN OF FLDITAB OCCURS 0,
          FLDNAME(11) TYPE C,
          END OF FLDITAB.
    DATA ITABUSR03 LIKE USR03 OCCURS 0 WITH HEADER LINE.
    DATA TNAME LIKE DD02L-TABNAME.
    SELECT * FROM USR03 INTO TABLE ITABUSR03.
    TNAME = 'USR03'.
    PERFORM GETFIELEDS.
    PERFORM SHOW123.
    FORM GETFIELEDS.
         CALL FUNCTION 'GET_FIELDTAB'
          EXPORTING
              LANGU              = SY-LANGU
              ONLY               = SPACE
              TABNAME            = TNAME
              WITHTEXT           = 'X'
          IMPORTING
              HEADER             = ZX030L
          TABLES
              FIELDTAB           = ZDFIES
          EXCEPTIONS
              INTERNAL_ERROR      = 01
              NO_TEXTS_FOUND      = 02
              TABLE_HAS_NO_FIELDS = 03
              TABLE_NOT_ACTIV     = 04.
         CASE SY-SUBRC.
            WHEN 0.
              LOOP AT ZDFIES.
                   FLDITAB-FLDNAME = ZDFIES-FIELDNAME.
                   APPEND FLDITAB.
              ENDLOOP.
            WHEN OTHERS.
                 MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  with  SY-SUBRC.
          ENDCASE.
    ENDFORM.
    FORM SHOW123.
    CALL FUNCTION 'EXCEL_OLE_STANDARD_DAT'
         EXPORTING
              FILE_NAME                 = 'C:\USR03.XLS'
              DATA_SHEET_NAME           = 'USER LIST'
        TABLES
             DATA_TAB                  =  ITABUSR03
             FIELDNAMES                =  FLDITAB
        EXCEPTIONS
             FILE_NOT_EXIST            = 1
             FILENAME_EXPECTED         = 2
             COMMUNICATION_ERROR       = 3
             OLE_OBJECT_METHOD_ERROR   = 4
             OLE_OBJECT_PROPERTY_ERROR = 5
             INVALID_FILENAME          = 6
             INVALID_PIVOT_FIELDS      = 7
             DOWNLOAD_PROBLEM          = 8
             OTHERS                    = 9.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    ENDFORM.
    Hope this solves your problem.
    Regards,
    Kunal.
    Note : Reward points if found useful.

  • Upload a file of Excel Format into Internal Table!!!

    Dear All,
    Currently i have a question for upload a file of excel format, I can just convert the file of excel format to text format first. Then it would be OK.
    As we all know, Frequently,The users would always like to provide the excel format to us. Thus, Is there any solutions directly uploaded the file of Excel format into database for web dynpro for ABAP? Not web dynpro for Java.
    Appreciated what you reply!
    Thanks in advance.
    Richard

    Richard,
    I saw my developer use LSMW to load the excel file to the db table. You must careful with the data that you're going to upload.
    Cheers.
    P/S Point reward is appreciated.

  • Save file to excel format

    -the 3... version of SQL developer has one very important function (from my point of wiev) done unnecessarily difficult.
    - in earlier versions (2...) was simply “export data, -> xls- “ and the out coming file was ..in any editable form of Excel – format
    - I (personally) moved back using TOAD – main reason was because that sort of unnecessary inconvenience of transferring data to the format my clients wants -- it is boring
    Eero M

    I see your point, but I applaud the new Excel output options. I use this feature constantly, and the couple of extra default values and clinks are worth it. Options:
    *Maybe just add a "finish" button to the Wizard so that it skips the next "tab" in it (basically defaults to the old Excel export technique). Even with the new features, I think that it is literally just one extra click compared to prior versions.
    *Fix the issue where there is an empty column appended to the right of the data (this has been there in all versions to date). To see it, unload to Excel. Open the file in Excel and hit ctrl-end.
    *Allow the system to use an Excel "template" so that it uses default fonts, colors, etc. Within the "template", allow you to pick the worksheet and cell that the output goes to (e.g. Summary!A4).
    *Fix the date issues, so that when it is exported to Excel, Excel treats dates as real dates not strings
    *Support the newer Excel 2007 file format (this has been around for 3 years now)
    *Make the SQL easier to read (great feature, difficult to read it). We use SQL Developer to handle a lot of ad hoc queries, and it is convenient to have the SQL worksheet since it saves documenting and debugging time dramatically. The SQL output that is shown on the "Unload Summary" looks right, but when it gets exported, the carriage returns don't display nicely.
    All of the above have been entered into the "Exchange" before. Obviously, we can't expect everything to be done by Oracle, but it is great to see them adding capability to this area of the tool. I'd probably try making an extension, but I don't know Java.

  • When we save a file in excel format from the webpage, the alignment of columns is disturbed which does not happen in IE, P

    We are using Oracle Apps. wherein we have an options to export the contents of the web page. It default stores the file in .tsv format. if we choose to save the file in excel then the file is saved. however when we open the file in excel, the text is garbled. If we try the same option using IE, then the text is automatically aligned as required.

    Dear cor-el, wow you are quick. I understand you better now, but I'm not sure it's a good idea to write to you in dutch, only if you are Dutch yourself.
    Anyway, first the location bar is what I call the address bar.
    Second I work very simple and easy. I never use the address bar when I'm looking for a website.
    I just type the name of whatever I'm looking for in the empty bar on my google page and wait for the response.
    Third, most of the sellers I buy from on ebay, I just discovered by accident and I immediately saved them in my favorites bar.
    So if I need to go to their website(s) I just go to my favorites bar and click on the name of the seller(s) I'm looking for.
    Now to answer the question from your earlier letter, the URL's I'm trying to save are those from the webpage(s) I open on the websites I visit and not from the website(s) itself.
    The second part of your last letter from " You can modify......" is too difficult for me to understand.
    If it's important I'll ask a friend, a mainframe specialist to explain it to me.
    Thanks again for help. Regards, Ruiz

  • Render a CSV file in Excel format

    Hi
    I am trying to render a report from BI Publisher in a CSV format. In OBIEE when the report is downloaded as csv, it gets rendered in Excel format. Is there some way to do the same in BI Publsiher also?
    Regards
    Sujith

    Now, i dont think, you can get it automatically open with excel.
    Even if you create RTF template, and get excel output, its not going to be a comma separated file, but it will be a excel file.
    I guess, you have to create RTF template and choose excel option and see, if it fits your requirement.

  • Issue with Saving the Query output data in Excel format

    Hi,
    Recnetly we had upgraded from 4.6c to ECC 6.0.
    In ECc 6.0 environment, when user try to export the query output , we are getting only XML option to save the data.
    But user want to save the data in EXcel format, he was able to do that in 4.6C.
    pleas eprovide some inputs, on this issue.
    Thanks,
    Sanketh.

    I cannot for the life of me imagine, why a link to a post in the 'Business One Forum' where one uses ODBC to transfer query-data to MicroSoft Excel is of relevance to the OPs question, even if the same is not a security issue.
    Never mind. [note 40155|https://service.sap.com/sap/support/notes/402155] deals with various symptoms in the ALV-Excel combination as as of release 4.6C. There are various others, mostly in components BC-SRV-ALV and BC-ABA-LI - also: I remember that when we upgraded from 4.5B to 4.7C there was an issue with Excel-templates -> the solution was in the release notes somewhere. So, in addition to SMP you might want to check the release notes and/or upgrade guide for solutions.
    And yes, moderators ... this is not a security issue, this should go to ECC-Applications/Upgrade.

  • Converting Text seperated file into excel format file without opening Excel

    Hello Sir,
    I am posting this question again,since i did not get any response,sorry for the inconvinience caused..
    I have a Text file(Test.txt,the data inside it is in specific format seperated by TAB) which i would like to convert it into an Excel file(Test.xsl) without opening MS-Excel.Is there any java code to accomplish it.If yes, can i please get the source code for the same or some Utility.
    I am working on a Windows 2000 platform, on J2EE application server and on CRM based application.
    I had gone through many topics related to my problem,but could not get satisfactory results...
    Any help would be appreciated,
    Thanks in advance

    Hello Sir,
    I am rephrasing my question,i have a Comma Separated File (1042-1.txt)which i would like to convert it into an Excel file (1042-1.xls) without opening MS-Excel using java code...
    So that the data in the Text file gets populated into the columns of the Excel sheet using the java code.
    I am working on a CRM based application and the application is generating a Text file(1042-1.txt) through PL/SQL Packages on the Servers particular directory and this file is getting Downloaded.
    My requirment is that the Users of my application should be presented with an Excel file(1042-1.xls), so that they do not have to Open the Text file in Excel and then do the Importing...instead they should be provided with the Excel file itself...
    Please Can anybody provide me with a solution for the same...
    Thanks,
    Regards.

Maybe you are looking for

  • "Project Collective Settlements Scheduled to run in the background, CJ8G

    HI Sap Guru's Please assist with solution for background scheduling of CJ8G(Project Collective Settlements). I have created the variant in program RKO7CJ8G and going to the attributes I wish to maintain the current period and fiscal year. I presume t

  • Gui_download, not able to write to the file

    Hello all, I am testing file I/O....and have following code: parameters filename(128) default 'd:\test1.txt'. data fname type string. fname = filename. Data itab2 like sflight occurs 10 with header line. Select * from sflight into itab2 where carrid

  • Changed TV out to off but ipod still only plays audio and no video

    Just recently my ipod decided not to play video. All the videos in the video folders are gone and now appear in the music folder. Even the video podcasts no longer appear in the video podcast folder. I have changed the TV to out to off and still it c

  • Itunes amongs other apps wont open

    Hi, I seem to be having issues opening my itunes and other applications such as Safari, microsoft manager etc... everytime i try to open one of these applications it seems to want to open and then quickly closes. I have tried to remove Itunes complet

  • Scanning to Acrobat 8.1.3

    Acrobat 8.3.1, OSX 10.6.8. Create pdf > from scanner (Epson stylus photo Rx620), no devices are list from which to select; how do I solve this? NB. I've updated Epson drivers and scanning works with Preview, but would be more efficient via Acrobat.