Selection Screen Excel File Format

Hi,
I developed a BDC report to upload data. Data is uploaded Perfactly.
parametrs: p_file TYPE rlgrap-filename.
and Excel file format is Storage Location Matnr Stock_Qty
                                     1000    Mat_00001    50
but i want to give eaxel file screen shot with sample data
is it possible to give excel format screen shot on selection screen
before   parametrs: p_file TYPE rlgrap-filename.

Hi,
I was telling if  its only  to tell user we can print like comment at the end .I have pasted the code for you .
it will look at at the bottom of your screen.
After you declare your slection screen parameters then paste the  code and first text you create text element which has- MS EXCEL format types
Second textelemnt-Give column1 - "so and so ......
was i clear this time...
It not poss to give scrreen shot thriugh above way but throuh your text elemnt message you convery what is colum 1,2 .... to user
Thank You
Poornima
Edited by: Pendyala_poornima on Oct 7, 2011 3:01 PM
Edited by: Pendyala_poornima on Oct 7, 2011 3:01 PM
Edited by: Pendyala_poornima on Oct 7, 2011 3:03 PM

Similar Messages

  • How to download alv grid output(with field catalog) into excel file format

    Hi all,
    How to download alv grid output(with field catalogs) into excel file format and same file has to download to application server.
    Please help.
    Regards,
    Satya.

    Hi,
    On list where alv is displayed, select export icon( green color -> ),select spread sheet.
    This will display records in Excel sheet.

  • Tranfer table content in to excel file format

    HI
    I have Created one table .and I want to download this table in to excel file format.how can i do this.

    Hi Vijay
    1) Type the t-code SE16
    2) Type the table name, for example USR02
    3) Press F7 to view the table contents
    4) If you need filter the data in the next screen you could do it.
    5) Press F8 or press the execute bottom.
    In the next screen you will find the result.
    In the menu, follow the options:
    System->List->Save->Local File->Spreadsheet
    Type the excel name, and click generate
    Hope it helps, and please reward points if helpful
    Regards

  • Output report data to excel file format or csv format

    Is there any way to save softcopy of report output to excel file format or csv format.

    Hi,
    Regarding csv file format, i have no issues. The file is generating without any issues in using oracle reports without using any PL/SQL code.
    My requirement is to design oracle reports to generate excel (.xls) file with multiple worksheets. Each sheets are having many data and graphs(chart).
    Using oracle reports alone, how to achieve this.
    In oracle reports 10g 1.2.0 version, I tried by creating .rdf file but, it is generating single worksheet only.
    In oracle reports 10g 1.2.0 ver, I tried by creating .jsp file. For this first i am creating excel template about how my ouput column headings all that going to be with one sample hard coded data and save the excel file as web page.
    Eg employee.html.
    Next open the html file in oracle reports builder and double click the websource now, you will see the jsp tags, html and xml tags. Now include the contentType="application/vnd.ms-excel " and charset also.
    Next, include the <rw:foreach id="G_EMPNO_1" src="G_EMPNO">
    here insert the fieldl for each column by removing the hard coded values.
    close the tag
    </rw:foreach>
    Save the file as .jsp and deploy it in oc4 enabled folder (say, devsuite_home/reports/j2ee/reports_ids/web
    Start the oc4J server
    Run it in the browser http://server:port/reports/emp.jsp?useride=uid/pwd@db
    It is invoking the Microsoft excel with 3 sheets default and my emp table output in the first page.
    We can save this output file as .xls file by clicking file -> save as.
    1) The question is, it is working fine with Microsoft excel 97-2003 version. But for excel 2007, i am not able to create single html file like how 2003 save web page option.
    2) I found this in oracle getting started demo
    http://www.oracle.com/technology/products/reports/htdocs/getstart/demonstrations/index.html
    Which is more useful. This is what i am looking for.
    I done that in excel 2003 as per demo. But excel 2007 with reports 10g issues.
    Is there any demo for 10g with excel 2007
    3) For most of excel issues working fine with excel 2003 and 10g. But excel 2007 with 10g reports are issues.
    I want the excel output from oracle reports with multiple worksheet similar to the above demo.
    Thank you.

  • Conversion of internal table into excel file format &put it on app server

    Hi,
    My requirement is to convert the internal table into excel file format and I have to store it on application server so that administrator can send the file thr e-mail attachment.
    So, please let me know how to convert the records of internal table and store it on application server in Excel file format.
    TIA,
    Nitin

    Hi,
      Use FM GUI_DOWNLOAD to download the data from inernal table to excel sheet.
    Then Using tcode CG3Z u can transfer file to application server.
    *&      Form  sub_download
          text
    -->  p1        text
    <--  p2        text
    FORM sub_download.
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
        BIN_FILESIZE                    =
          filename                        = p_path
         filetype                        = 'ASC'
        APPEND                          = ' '
         write_field_separator           = 'X'
        HEADER                          = '00'
        TRUNC_TRAILING_BLANKS           = ' '
        WRITE_LF                        = 'X'
        COL_SELECT                      = ' '
        COL_SELECT_MASK                 = ' '
        DAT_MODE                        = ' '
        CONFIRM_OVERWRITE               = ' '
        NO_AUTH_CHECK                   = ' '
        CODEPAGE                        = ' '
        IGNORE_CERR                     = ABAP_TRUE
        REPLACEMENT                     = '#'
        WRITE_BOM                       = ' '
        TRUNC_TRAILING_BLANKS_EOL       = 'X'
        WK1_N_FORMAT                    = ' '
        WK1_N_SIZE                      = ' '
        WK1_T_FORMAT                    = ' '
        WK1_T_SIZE                      = ' '
      IMPORTING
        FILELENGTH                      =
        TABLES
          data_tab                        = it_final
        FIELDNAMES                      =
      EXCEPTIONS
        FILE_WRITE_ERROR                = 1
        NO_BATCH                        = 2
        GUI_REFUSE_FILETRANSFER         = 3
        INVALID_TYPE                    = 4
        NO_AUTHORITY                    = 5
        UNKNOWN_ERROR                   = 6
        HEADER_NOT_ALLOWED              = 7
        SEPARATOR_NOT_ALLOWED           = 8
        FILESIZE_NOT_ALLOWED            = 9
        HEADER_TOO_LONG                 = 10
        DP_ERROR_CREATE                 = 11
        DP_ERROR_SEND                   = 12
        DP_ERROR_WRITE                  = 13
        UNKNOWN_DP_ERROR                = 14
        ACCESS_DENIED                   = 15
        DP_OUT_OF_MEMORY                = 16
        DISK_FULL                       = 17
        DP_TIMEOUT                      = 18
        FILE_NOT_FOUND                  = 19
        DATAPROVIDER_EXCEPTION          = 20
        CONTROL_FLUSH_ERROR             = 21
        OTHERS                          = 22
      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.                    " sub_download
    Otherwise use OPEN DATASET and TRANSFER statement to download data from internal table to direct application server
    Regards,
    Prashant

  • Screen Shot file format

    Is there any way to change the default screen capture file format from .png to something like .jpg?

    In addition to what Niel suggested, you could use a program called Deeper that offers you a GUI interface to change not just screenshots, but many other aspects of OS X. It's available from Apple Downloads as well as from places like versiontracker.com.

  • Exporting pdfs to word and excel file formats  and translating

    Hello, I am new to this forum and came here because I am a professional translator. Although we should be given documents in their original file format, in the real world translators have to convert pdfs such as manuals or annual reports into word or excel files. Given the fact we often work for agencies, and/or do not work directly with the people who created the original files inthe first place, with the best will in the world we normally have to make do with converting the pdf file, or lose the job.
    I would like advice on the best way to learn more about  pdf to word and excel conversion and ways of keeping formatting when it is helpful and removing what is not.
    The general problem is (well the problem is really ignorance on my part!) of course getting the "look and feel" similar in the converted document and knowing more about manipulating the formating and elements which get converted.
    Any help or pointers to online tutorials whether multimedia or text much appreciated.
    David Hardisty (david1610)

    Thank you Lori, this is so clear! I am a teacher as well and there are clear presentations and wonderfully clear presentations and this is in the latter category.
    A tiny suggestion. You would not believe how many pdf files exported to word I have received that are Portuguese content and the sender has not set the language to Portuguese! So in your text entry you might want to mention the language setting. I know it is obvious, but as we know sometimes we cannot see the obvious!
    I will need to look far more carefully at the final things in your video.
    Are there any special considerations for exporting pdf files as Excel? My original doubt was I had to translate some accounting documents. 95% of the document was numbers which did not changing (except for commas to periods and vice versa due to different separator conventions). I did not now how to just select e.g. the vertical column with text. I will go back and try with this suggestion because in this case the look and feel of the numbers was important and the precise fonts etc. seemed to cause problems. But now I am getting out of my depth!
    Thank you again!
    DavidHardisty

  • Screen Capture File Format

    Does anyone know a way to change the default file format in the Mac OS screen capture utility to a different format other than PNG? Thanks.

    cbenham wrote:
    Does anyone know a way to change the default file format in the Mac OS screen capture utility to a different format other than PNG? Thanks.
    There are two default screen capture mechanisms in Leopard:
    The direct ⌘ shortcut, and the application, grab.
    I presume you are referring to the ⌘ shortcuts since the default for grab is tiff
    ⌘-Shift-3 = Screen
    ⌘-Shift-4 = Selection
    ⌘-Shift-4 + Spacebar = Window
    To change the format, in a terminal enter
    defaults write com.apple.screencapture type image_format
    where "image_format" can be
    tiff
    jpg
    pdf
    and possibly others.
    When using the terminal, you are on your own and if you are unfamiliar with it, be very careful.
    Message was edited by: nerowolfe

  • Can I Write Data to a *.xlxsx File Without Screwing Up the Excel File Formatting?

    I'd like to programatically add LabVIEW-generated data to a nicely-formatted *.xlsx file, one with all the right borders and column widths, etc.  But every time I try to add the LabVIEW data, the xlsx file formatting gets all screwed up and the file gets corrupted.  Is there a way around this?
    Thanks!
    - FB
    Solved!
    Go to Solution.

    FB,
    I was able to find the following link on the NI website.  I think it addresses the issue you are describing using the Excel ActiveX interface.
    AutoFit Columns and Rows in Excel Using LabVIEW: http://digital.ni.com/public.nsf/allkb/8697100BBFA68902862571D4006D893B?OpenDocument
    Regards,
    Isaac S.
    Regards,
    Isaac S.
    Applications Engineer
    National Instruments

  • Excel File Format Problem while downloading in ALV Grid

    Hi All,
    My program gives an ALV Grid Output which contains the file download button , when I choose spread sheet as the file format , the actual data starts only from 4th line and the lines above it contain date, heading etc and the rest are blank. Is it possible that I can download only the records in the grid output with the column names and not the unnecessary log?
    Also the format is not proper excel format, this same file will be used for upload into another program using the Function Module 'TEXT_CONVERT_XLS_TO_SAP'. When I load the file saved in the above format, this Function Module always fails.
    Please let me know any solution for this problem
    Thanks in Advance.

    Hi
    try this code----
    *&      Form  DOWNLOAD_EXCEL_TEMPLATE
          text
    -->  p1        text
    <--  p2        text
    FORM download_excel_template .
      TYPES: BEGIN OF lt_data,
                field1(20),
                field2(30),
                field3(20),
                field4(20),
                field5(20),
                field6(30),
                field7(15),
                field8(10),
                field9(10),
                field10(20),
                field11(20),
                field12(10),
                field13(20),
                field14(20),
              END OF lt_data.
      DATA: lv_file TYPE rlgrap-filename,
            li_data TYPE STANDARD TABLE OF lt_data,
            wa_data TYPE lt_data,
            lv_pathcheck type c,
            lv_file1 type string.
      wa_data-field1 = ''.
      APPEND wa_data TO li_data.
      REFRESH gi_header.
      wa_header-name = 'Company Code'.
      APPEND wa_header TO gi_header.
      wa_header-name = 'Main Asset Number'.
      APPEND wa_header TO gi_header.
      wa_header-name = 'Asset Sub Number'.
      APPEND wa_header TO gi_header.
      wa_header-name = 'Document Date'.
      APPEND wa_header TO gi_header.
      wa_header-name = 'Posting Date'.
      APPEND wa_header TO gi_header.
      wa_header-name = 'Asset Value Date'.
      APPEND wa_header TO gi_header.
      wa_header-name = 'Item Text'.
      APPEND wa_header TO gi_header.
      wa_header-name = 'Reference'.
      APPEND wa_header TO gi_header.
      wa_header-name = 'Allocation'.
      APPEND wa_header TO gi_header.
      wa_header-name = 'Amount Posted'.
      APPEND wa_header TO gi_header.
      wa_header-name = 'Percentage Rate'.
      APPEND wa_header TO gi_header.
      wa_header-name = 'Quantity'.
      APPEND wa_header TO gi_header.
      wa_header-name = 'Prior-Yr Quantity'.
      APPEND wa_header TO gi_header.
      wa_header-name = 'Curr-Yr Quantity'.
      APPEND wa_header TO gi_header.
      lv_file = gv_file.
      lv_file1 = gv_file.
      CALL METHOD cl_gui_frontend_services=>directory_exist
        EXPORTING
          directory            = lv_file1
        RECEIVING
          result               = lv_pathcheck
        EXCEPTIONS
          cntl_error           = 1
          error_no_gui         = 2
          wrong_parameter      = 3
          not_supported_by_gui = 4
          OTHERS               = 5.
       FIND '.xls' IN lv_file IGNORING CASE.
      IF sy-subrc = 0.
        REPLACE '.XLS' IN lv_file WITH ' ' IGNORING CASE.
      ENDIF.
      FIND '.TXT' IN lv_file IGNORING CASE.
      IF sy-subrc = 0.
        REPLACE '.TXT' IN lv_file WITH ' ' IGNORING CASE.
      ENDIF.
      CALL FUNCTION 'MS_EXCEL_OLE_STANDARD_DAT'
        EXPORTING
          file_name                 = lv_file
          data_sheet_name           = 'DATA'
        TABLES
          data_tab                  = li_data
          fieldnames                = gi_header
        EXCEPTIONS
          file_not_exist            = 1
          filename_expected         = 2
          communication_error       = 3
          ole_object_method_error   = 4
          ole_object_property_error = 5
          invalid_pivot_fields      = 6
          download_problem          = 7
          OTHERS                    = 8.
      IF sy-subrc <> 0.
        MESSAGE ID gv_msgid TYPE 'E' NUMBER 002.
      ENDIF.
    ENDFORM.                    " DOWNLOAD_EXCEL_TEMPLATE
    regards,
    Prashant

  • Distinguishing between CSV and Excel file formats

    I am trying to distinguish between CSV and Excel files.   Most of the files I need to process are CSV, but some have been opened and re-saved in Excel format.  I know about the Excel toolbox available, but haven't used it yet. 
    I need to be able to open a spreadsheet file regardless of if it is in CSV or Excel format.  Any help would be greatly appreciated.
    Here are two example files, one CSV and one Excel.  Both have .XLS file extensions. 
    Attachments:
    20-4-XLS.xls ‏21 KB
    20-5-CSV.xls ‏8 KB

    Hi Paul,
    I think the matter is not the extention (xls or csv or whatever) but the format of the data written in your file.
    To see what I mean, open the xls file you posted with notepad... What does it look like ?
    You have tobe sure of the format of the file you want to read so that you can develop an appropriate VI... if you want to be able to read different type of data format, do a test before reading the file and then use an appropriate routine for each format.
    Hope this helps you...
    BTW, to read the one named CSV, a simple "read from spreadsheet file" VI will do the job
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • Customizing Excel File format for "Export to Excel" command

    HI All,
    we are developing a classic planning application using Hyperion 11.1.2.2
    There is a option in Hyperion web through which user can Export data to Excel from Data from; via following procedure:
    Open Data Form which you want to Export
    Once data form go to Tool -> Export to Excel; this will open up an excel with with that dataform loaded in it.
    I am wondering is there any way to customize that excel file ; like changing font color, font size etc in excel file

    Hi,
    The one which you are going to get from the export would be a static file and you cant get POV as a drop down even to select , for color you can validations which will give you color based on some condition etc.
    Thanks
    Amith

  • CVI/Excel file format 2 *.TDMS format

    Does anyone has plugins to convert Excel/CVS file format into *.TDMS  format?  Instead of write a CVI or LabVIEWS application.

    How does your Excel file look like?
    Is it XLS or CSV?
    For CSV file there is a wizard to generate import plugins since DIAdem 10.
    For xls there is a new import wizard since DIAdem 2011 and an old one.

  • Screen Capture (file format) used to be pdf

    Is there a way to change the default file format for a screen capture. The file format in OS 10.3 used to capture as a PDF. Now the format is PNG. I know you can open the file in preview and resave it.
    I just want to see if there is someway to change preferences or something so it will default as a pdf file.
    thanks

    Hi, amantia and costicladop —
    amantia, welcome to Apple Discussions!
    There are various options to accomplish your objective.
    OnyX 1.6.5 (a free utility) and Cocktail 3.6.5 ($14.95 shareware utility) offer the option to change graphic file format with a "single click" — in OnyX »» Appearance »» Screen Capture and Cocktail »» Interface »» Misc. »» Screenshot file format, respectively.
    They're both just implementing Terminal commands — which provide another option.
    bmp, gif, jpg, jpg-2000, pdf, photoshop, pict, png, sgi, tga, and tiff options are available in both utilities.
    Hope this helps . . .
    Regards,
    Dean
    p.s.  costicladop — following your link engages an automatic download. (Duh.) Wanting to read something first, I went to http://www.arenasoftware.com/ — which forwards to http://www.digitalarena.co.nz/. The software page on that site only mentions three software products, none of which is shotChoice. Could you provide a descriptive link? Thanks!

  • Excel file format  to FTP server

    hi all,
    By using FM's i am able to upload data from SAP to FTP in .XLS format
      CALL FUNCTION 'FTP_R3_TO_SERVER'
        EXPORTING
          handle         = w_hdl
          fname          = 'test.xls'      "file path of destination system
          character_mode = 'X'
        TABLES
          text           = it_data1
        EXCEPTIONS
          tcpip_error    = 1
          command_error  = 2
          data_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
        RAISING invalid_output_file.
      ENDIF.
    While viewing this excel sheet a popup is triggering  as ''The file you are trying to open is in different format than specificed by the extention.Verify the fileis not corruptedabd is from  a trusted source before opening  the file .Do you want to open the file now ?   Yes     or   No "
    If Yes selected data is opened correctly only but i need to ignore this message .
    When i see the SAVE AS TYPE   its showing text format  and FILENAME as test.xls
    When i change SAVE AS TYPE to EXCEL 97-2003 its fine.but i need this should be updated automatical when i send from SAP itself.

    Sachin, this question is asked several times each week in the forum. There are solutions, in short: DOI or OLE for dialog, external softwares for other cases. As said by breakpoint, you'll be able to process these files more easily and quickly, if they are saved under other (text) formats: txt, csv, xml, xslx.
    Please search and read these posts and revert back if any question.

Maybe you are looking for

  • Set type COMM_PR_UNIT does not exist

    Hi All How do i make set types available for assignment to categories if they are not available but are there in comm_settype. Getting errors as follows: Set type COMM_PR_UNIT does not exist. Please assist Regards, Patrick Edited by: Patrick Chidarar

  • MacBook Air 11" for photographer?

    Hey everyone, my name is Brandon Isaiah Garcia & I'm an 18 year old photographer & college student. I am going to purchase a MacBook Air, but I need your help to decide which size I should get! This MacBook Air will be my primary device, because I pl

  • CS5.5 Design Prem - Illustrator won't install

    Hi I just ran CS5.5 Design Premium (subscription version) installer but Illustrator didn't get installed. Checked the log file and found this at the end of the file: ERROR: DW050: The following payload errors were found during install: ERROR: DW050: 

  • Blackberry Curve 8300, how to download AIM & MSN

    I have recently got a used blackberry curve from a friend of mine, and I would like to download AIM & MSN but when i tried to download them i got a message saying my device didnt support the software.  If anybody knows a way i can get these downloade

  • Question, is my mac safe now?

    ok so i have a week 25 macbook, been using it very regularly since i got it june 24. but everyday that i have used it i have never touched the armrest because ive been using a sleeve i sewed to go over it. so basically at this point is discoloration