Excel Spread sheet dialog box pop-up

Hi Experts,
Afte executing the Tcode QA32 when I want to export the output in to Excel from the Excel button on the ALV toolbar I am getting a dialog box with heading "Export List object to XXL" with two radio buttons of Table and Pivot Table. But, Imy requirement is when I click on the Execl button  I should get the dialog box with "Select Spread Sheet" with radio buttons of Excel ( in MHTMLb format), All avaliable Formats and Always Use Selected Format.
Please need a quick help on this......
Regards
Sharath

Hi Martin,
From there, I can export it fine, but one our consultants requirement is what I have mentioned in the problem and I have analyzed and came to a conclusion that this is due to difference in support pack level.
I found a note Note 1083248 - ABAP ALV Export dialog box for selecting spreadsheet.pdf where it asks that for the option which I wanted the support patch of SAP_BASIS 640 should be 20. The present patch is 18 in the system
Anyhow, I have requested for downtime for installing the patches and need to check after that.
Once I check after installing the patches I will confirm in this message.
Thanks for the reply and please let me know if there is any othe way.
Regards
Sharath

Similar Messages

  • I want to open excel spread sheets make additions and export back to pc users.  Is numbers suitable for this activity?

    I want to open excel spread sheets make additions and export back to pc users.  Is numbers suitable for this activity?  I am using a MACBook Air

    just read this in an other answer:
    Pages can open docx files, Numbers can open xlsx files. Each can export to  can export .doc or .xls to the newest Word or Excel format.respectvely, but not to the more recent .docx or .xlsx.
    Translation is not perfect in either direction. Numbers and Excel handle some similar features (eg. pop-up menus vs data validation) differently, and the translator cannot translate from one implementation to the other.
    If much of your work is going to be transferred between your machine and Windows machines running either MS Excel or MS Word, with editing taking place at both ends of the tunnel, then you'll probably be better off with Office, or one of the Office clones on the Mac end.

  • Telephone numbers in a excel spread sheet not recognized by Adobe Acrobat DC

    Before my upgrade to Adobe Acrobat DC on my iPhone, telephone numbers in a excel spread sheet was recognized by Acrobat Reader as such i.e. You would touch and hold the number, then a 'pop up' would appear that gave the option to 'CALL' or 'SEND A MESSAGE'. This function no longer works in Adobe Acrobat DC, why not?

    Hi,
    Acrobat DC for iOS uses the Apple iOS SDK to display the preview of non-PDF documents (e.g. Word, Excel, PowerPoint).
    It looks like an Apple bug for failing to auto-detect phone numbers only in Excel spreadsheets.
    I opened my Excel (.xlsx and .xls), Word (.docx), PowerPoint (.pptx) documents with phone numbers in Acrobat DC for iOS.   The phone numbers in the Word and PowerPoint documents were correctly recognized as such.  In the preview, the plain text turns into blue underlined text.  When you press and hold over the phone number, you will get the options that you have mentioned.
    On the other hand, the phone numbers in the Excel spreadsheet were not recognized in the preview.  In Excel, I used Format Cells > Number > Special > Phone Number with United States (English) as language.  But it did not fix the problem.
    As it turns out, the Apple Mail preview (on iOS 8) has the same problem.  You can also email your Excel spreadsheet to yourself and open it in Apple Mail on your iPhone to confirm that it is an Apple bug.
    You may want to post a question in the Apple Support
    iPhone - Mail, Contacts, Calendars - Apple Support
    or use Word documents instead for auto-detection of phone numbers.
    Sorry for the inconvenience.

  • Dialog boxes pop up on wrong monitor

    I have my workspace spread out over two monitors, with a third preview screen on a TV. My timeline and preview monitors are on my center screen with the main title bar, considered the "main" screen by OSX. However, any time a dialog box pops up, it appears on my leftmost monitor. It's a pain, since the majority of my work takes place on the center screen, to constantly have to move back and forth between monitors to address any dialog boxes that pop up to adjust clip speed, export settings, watch preview render progress, cancel auto-saves, etc. Is there any way to change the default position of these dialog boxes? Moving them over when they appear doesn't seem to change anything.

    Thanks for the suggestion—it led me to the solution. It turns out the dialog boxes appear on whichever screen contains the "main" window box—that is, the window with the bar at the top that shows the directory path of the project you're working on. Rearranging my workspace so the window was on the main screen fixed the problem.

  • I have been trying to save a document in illustrator and every time I try to, a dialog box pops up and says the following- Can't save the illustration. You do not have enough access privileges. id: -5000....This has been happening ever since I switched to

    I have been trying to save a document in illustrator and every time I try to, a dialog box pops up and says the following- Can't save the illustration. You do not have enough access privileges. id: -5000....This has been happening ever since I switched to CC and whenever I try to save something in indesign, I get a dialog box that says that my file is corrupt. How do I fix this? I cannot get any work done !!!

    You should ask in Illustrator
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • I am trying to connect Garritan Personal Symphony to Logic Express and Garageband. A dialog box pops up and asks for plugin Garritan-P. Where do I find it and what do I do with it. I can't locate this plugin doing searches on any of the porgrams.

    I am trying to connect Garritan Personal Symphony to Logic Express and Garageband. A dialog box pops up and asks for plugin Garritan-P. Where do I find it and what do I do with it. I can't locate this plugin doing searches on any of the porgrams.

    I'm not sure which version of Garritan Personal Orchestra you have or when you are getting a window pop-up, but check this link for starters:
    http://afjohnston.blogspot.com/2009/11/using-garritan-personal-orchestra-gpo.htm l

  • How to transfer a set of data from Excel spread sheet to an Access database

    hi,
    Can any one please tell me how to transfer a set of data from Excel spread sheet to an Access database using SQL query.I'm using java API currently. I have done all sorts of ODBC connection in administrative tools.The file is in correct location. I have done certain coding but with errors.Help me to get rid of these errors,
    Coding:*
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection datacon=DriverManager.getConnection("jdbc:odbc:exdata","",""); *//For Excel driver*
    Connection datacon1=DriverManager.getConnection("jdbc:odbc:stock1","",""); *// For mdb driver*
    Statement datast=datacon.createStatement();
    Statement datast1=datacon1.createStatement();
    ResultSet excelrs=datast.executeQuery("select item_code,sdata,closing_stock from phy "); *//phy is the excel file*
    while(excelrs.next())
    String ic=excelrs.getString("item_code");
    System.out.println(ic);
    String d=excelrs.getString("sdate");
    double cs=excelrs.getDouble("closing_stock");
    int dbrs=datast1.executeUpdate("insert into second values('"+ic+"','"+d+"',"+cs+")"); *//second is the mdb*
    excelrs.close();
    }catch(Exception e)
    System.out.println(e);
    Error:*
    java.sql.SQLException: [Microsoft][ODBC Excel Driver] The Microsoft Jet database engine could not find the object 'C:\JavaGreen\phy.xls'. Make sure the object exists and that you spell its name and the path name correctly.
    thanks,
    kumar.

    JAVA_GREEN wrote:
    No i haven't mixed up.But the file from where i have to retrieve the data is in csv format.Even though i created another csv driver.and tried but i cud not find a solution to load/transfer a set of records from one file(in Excel/csv format) to another file(in mdb format).plz help me.Is there any other methods for this data transfer.A csv file is NOT an excel file.
    The fact that Excel can import a csv file doesn't make it an excel file.
    If you have a csv file then you must use a csv driver or just use other code (not jdbc) to access it. There is, normally, a ODBC (nothing to do with java) text driver that can do that.

  • Problem in writing data to excel spread sheet using jdbc

    Hi Friend,
    I have written a jdbc application ,that retrives data from oracle8i database and writes to excel spread sheet.
    Here I am facing a problem while writing date vales to the spread sheet.
    It is just writing 00.00.0 , instead of a date like 21/10/2005, where I am going wrong , can any one guide me.
    Thanks in advance.

    Don't cross-post!
    http://forum.java.sun.com/thread.jspa?threadID=643815&tstart=0
    Especially when you already got your answer in the other post jackass. If you don't understand the answer then say so there.

  • Problem in writing data to excel spread sheet

    Hi Folks,
    I have developed a jdbc application that writes data to excel spread sheet.while trying to write data to excel, it could not write date values properly.it is writing 00.00.0 for all the date feilds.
    Can some one help here.
    Thanks in advance.

    You can try VistaJDBC at http://www.easyhr.com.au/software/easy_mdb_mde_compactor.htm .
    Otherwise you can write your code to csv/xml/dbase III format, since Excel can open those file format easily.

  • How can I form a group in address book. I need to transfer a large number of emails from an excel spread sheet to form a group to send emails to.

    I need to transfer a large number of emails from an excel spread sheet to form a group to send emails to. I can either use address book or transfer them to BTYahoo contacts and send from there.

    Hello, if you have the font that Photoshop is supposed to use to write the barcode, and each image is also listed in the spreadsheet, you can use the little known feature called variables: http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7417a.h tml
    see this video: 
    http://www.youtube.com/watch?v=LMAeX5pexNk
    Or this one:
    http://tv.adobe.com/watch/adobe-evangelists-julieanne-kost/pscs5-working-with-variables/

  • When I download an excel spread sheet from a Ford web site I seem to be getting code and not the work sheet. Example- MIME-Version: 1.0 X-Document-Type: Workbook Content-Type: multipart/related; boundary="====Boundary===="

    I have a Macbook Air. I have MS office installed and work in Excel often with no issues. But When I download an excel spread sheet from a Ford web site I seem to be getting code and not the work sheet.
    Example-
    MIME-Version: 1.0
    X-Document-Type: Workbook
    Content-Type: multipart/related; boundary="====Boundary===="
    --====Boundary====
    Content-Location: file:///C:/HOLD.XHT
    Content-Transfer-Encoding: 8bit
    Content-Type: text/html; charset="utf-8"
    <html xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:x="urn:schemas-microsoft-com:office:excel"
    xmlns="http://www.w3.org/TR/REC-html40">
    <HEAD>
    <meta name="Excel Workbook Frameset">
    <xml>
    <x:ExcelWorkbook>
      <x:ExcelWorksheets>
       <x:ExcelWorksheet>
        <x:Name>BTB</x:Name>
        <x:WorksheetSource HRef="./IBIT0001.xht"/>
       </x:ExcelWorksheet>
       <x:ExcelWorksheet>
        <x:Name>GSM</x:Name>
        <x:WorksheetSource HRef="./IBIT0002.xht"/>
       </x:ExcelWorksheet>
       <x:ExcelWorksheet>
        <x:Name>RODetail</x:Name>
        <x:WorksheetSource HRef="./IBIT0003.xht"/>
       </x:ExcelWorksheet>
      </x:ExcelWorksheets>
    </x:ExcelWorkbook>
    </xml>
    </HEAD>
    </HTML>
    --====Boundary====
    Content-Location: file:///C:/IBIT0001.xht
    Content-Transfer-Encoding: 8bit
    Content-Type: text/html; charset="utf-8"
    <html xmlns:v="urn:schemas-microsoft-com:vml"
    xmlns:o="urn:schemas-microsoft-com:office:office"
    xmlns:x="urn:schemas-microsoft-com:office:excel"
    xmlns="http://www.w3.org/TR/REC-html40">
    <HEAD>
    <meta http-equiv=Content-Type content="text/html; charset=utf-8">
    <style>
    <!--table
            {mso-displayed-decimal-separator:"\.";
            mso-displayed-thousand-separator:"\,";}
    @page
            {margin:1.0in .75in 1.0in .75in;
            mso-header-margin:.5in;
            mso-footer-margin:.5in;
            mso-page-orientation:landscape;}
    tr
            {mso-height-source:auto;}
    col
            {mso-width-source:auto;}
    br
            {mso-data-placement:same-cell;}
    .style21
            {color:blue;
            font-size:10.0pt;
            font-weight:400;
            font-style:normal;
            text-decoration:underline;
            text-underline-style:single;
            font-family:Arial;

    Try search/ask in the forum devoted entirely to Excel issues:
    http://answers.microsoft.com/en-us/mac/forum/macexcel

  • Exporting Content of a JSP page into Excel Spread Sheet

    I am trying to export the content of a JSP page into an excel spread sheet. I know this issue had been posted before, but if you any one has the source code of a sample that's working please send it to me at [email protected]
    Your help is appreciated.
    Jamais.

    http://forum.java.sun.com/thread.jspa?threadID=664249

  • Dialog Boxes pop up behind other windows :(

    Once in a while an application wants my attention. It would then throw up a dialog box and start bouncing in the Dock. So far so good.
    Unfortunately, if the application's window is positioned behind something else, the dialog box pops up in front of its parent window, but BEHIND whatever is in front of it!
    Now I know that the app needs my attention but I have to find it and then find its dialog box (the app itself is unresponsive till I deal with the dialog).
    This behavior happens in many different apps (Toast and ControllerMate are good examples) and is a real pain. Is there a setting somewhere that I missed or mis-interpreted?
    Many thanks in advance
    A>

    Thanks!
    I thought I was just being stupid ( I do that sometimes).
    Followup: is there an app out there that would bring dialog boxes upfront, so that I do not have to hunt them down?
    Or maybe there is an applescript that activates a bouncing app?
    Thx!

  • Exporting each articles button names to an Excel Spread Sheet or other form

    Is there a way to export a list of all the button names in each article to an Excel spread sheet or some other form? If someone knows of a script that does this that would work to. The button names are based on their function: OL = Overlay, TAB = Tab and BTN = Button. Here is an example of one of the articles that we have gone through and named the buttons and what they do. We just do not want to have to go to each button in each article and copy and past it to an Excel doc.

    @stephen0218 – with the following line or the ones that you are using:
    app.documents[0].buttons.everyItem()
    you will hardly address all buttons in a document.
    At least not in a document that is prepared for ADPS.
    You'll get just the ones that sit plain on the page: not inside groups, not inside other objects like rectangles or states of MultiStateObjects (MSOs).
    You will have more luck if you are using "allPageItems" and sorting out the buttons.
    But be aware that "allPageItems" is blind to objects (also buttons) in states of MSOs that do not belong to the active state.
    Uwe

  • How to convert Oracle Report Output to Excel Spread Sheet..

    Hello Sir,
    How to convert Oracle Report Output to Excel Spread Sheet..
    Thanks..

    Hello,
    Please give us more information what kind of report(s). Sample example etc.,
    Sri

Maybe you are looking for

  • How to open files from the SAP DMS (DOC Mgt. System) ?

    Hello All,         I making the Transaction CV04N in BSP. When I execute this CV04N I should give a DOC Nr and the list is generated for this DOC.Now in the List if I select one Record and then Press Display Icon then the content of this list is open

  • Problem with spot channels when importing PSD into AI CS3

    tried the Windows forum, and adobe tech support in The Netherlands. Hopefully someone here can help. b Problem description: I make spot colour separations of full colour artwork by using the index separation method in Photoshop. This creates several

  • How to pass the value between two screen in dialog programming.

    hi everybody, In case of dialog programming I have two screens 200 & 300.I want to get the value of textfield in screen 200 in scrren 300 in a label or in textfield. Thanks byee

  • Where is the MIRO "Note" field contents stored  ?

    Hi all, I need to print the text stored in the field NOTE of the transaction MIRO. Does anyone know in which tables is it stored ? i'd appreciate your help. Thanks !

  • Workflow error in project server

    Hi,  I have created stages in project server and trying to create workflow using sharepoint designer if i click on check error its showing no errors found,but if i am trying to publish the workflow its showing an error "Errors were found when compili