Delete_header in ALV causes PROBLEMS with export to MS Excel

hello:)
Displaying the ALV table I deleted the headers with
->delete_header( ).
function. Why? I misuse the lines as headers, so I can have a table with many headers in the middle of my alv.
Than, in the explorer/firefox I wanted to export the avl to excel and I got this:
==========================================================
Note
The following error text was processed in the system X12 : <b><i>Access via 'NULL' object reference not possible.</i> </b>
The error occurred on the application server bisata53_X12_00 and in the work process 0 .
The termination type was: RABAX_STATE
The ABAP call stack was:
Method: IF_SALV_WD_EXPORT_XML~COLLECT_COLUMN of program CL_SALV_WD_XML_20=============CP
Method: IF_SALV_WD_EXPORT_XML~COLLECT_COLUMNS of program CL_SALV_WD_XML_20=============CP
Method: IF_SALV_WD_EXPORT_XML~EXECUTE of program CL_SALV_WD_XML_20=============CP
Method: IF_SALV_BS_XML~EXECUTE of program CL_SALV_WD_XML_20=============CP
Method: EXECUTE of program CL_SALV_BS_A_EXPORT_BASE_XML==CP
Method: EXECUTE of program CL_SALV_WD_EXPORT_C8R=========CP
Method: IF_SALV_WD_COMP_TABLE_EVENTS~ON_EXPORT_EXCEL of program CL_SALV_WD_C_TABLE_V_TABLE====CP
Method: IF_SALV_WD_COMP_TABLE_EVENTS~ON_EXPORT of program CL_SALV_WD_C_TABLE_V_TABLE====CP
Method: IF_SALV_WD_COMP_TABLE_EVENTS~ON_SERVICE of program CL_SALV_WD_C_TABLE_V_TABLE====CP
Method: IF_SALV_WD_COMP_TABLE_EVENTS~DO_FUNCTION_STD of program CL_SALV_WD_C_TABLE_V_TABLE====CP
==========================================================
My questions are:
1) Is it a general NO NO, to deleting the headers when desiring to export to excel?? I have not found any documentation saying so, but who knows. Or is it simply a bug?
2) If not, what the problem might be? Did anyone have sth like this before?
best regards
simon:)<b></b>

I guess, if it there hasn't been answeren for such a long time, and setting headers resolved my problem(but didn't answered my question) I will mark it as answered.
regards
simon:)

Similar Messages

  • Problem with Exporting Data to Excel

    Hi Everyone,
    I have problem with exporting the data to a excel file. I am using a XP
    system in German which uses comma "," as the decimal point , and I also set
    "Use localized decimal point*" under the FronPanel Options to be true. But
    the exported excel file can not recognize (or just ignore) the comma for a
    whole column (flow rate), for examle "1,234" (1.234 in non-german system)
    would be 1234. But if I open its text file where the data came
    from by calling Excel directly, there will be no problem. Is this a bug of
    LabVIEW, or I forget some settings?
    Thanks a lot!
    Le
    P.S: The LabVIEW version is 8.2.1 and the Office version is Office2007.

    Hi Le,
    Sound familiar; here in The Netherlands we have the same problem.   That is why we use the English versions for XP and Office.
    I don’t quite understand how you interface to Excel. Directly with ActiveX or through a CSV file.
    Can you explain a bit more ?

  • Problem with exporting a report to excel vial citrix server

    Hi,
    We are encountering a problem with exporting a report to excel through ALV local file icon.A spread sheet is downloading only one row (From header) instead of many rows from the ALV output .  
    Above is working fine for the GUI installed on my PC, but not throgh the Citrix server.
    Can any body have idea on above mentined?
    Regards,
    SK.

    I understand that you're trying to download the file to a local computer  through Citrix. In this case you need autorizations in Citrix for your user ( CItrix user)

  • [AS] Problem with exporting all pages individually

    Hi, I ain't found any solutions by my self or on the web, so I hope, someone can help here.
    I wrote this piece of AS code. I wish it exports all the pages as separate PDFs.
    Alas, it crashes saying that the script ca't understand the page range.
    Could you please telle me where I do bad ?
    set Fpath to (choose folder with prompt "pick") as string
    tell application "Adobe InDesign CS3"
    set mydoc to active document
    set pcount to count pages of mydoc
    repeat with p from 1 to pcount
    tell PDF export preferences
    set page range to p as string
    end tell
    set docname to "toto" & "_" & p & ".pdf"
    set pdfname to Fpath & docname
    export to file (pdfname) format PDF type using "[PDF/X-1a:2001]" without showing options
    end repeat
    end tell
    thanks in advance,
    Loic

    Hi Loic,
    Here is a little altered version of the ExportEachPageAsPDF script from the examples provided by Adobe. I assume, from the script you posted, that you want exported files to be named in the following way: toto + _ + page number + .pdf. But in my judgement, it would be more reasonable to use the name of active document without extension instead of "toto".
    Why are you trying to reinvent the wheel? Isn't it better to take a ready-made script and remake it to your needs?
    Kasyan
    tell application "Adobe InDesign CS3"
    if (count documents) is not equal to 0 then
    my myChooseFolder()
    else
    display dialog "Please open a document and try again."
    end if
    end tell
    on myChooseFolder()
    set myFolder to choose folder with prompt "Choose a Folder"
    --Get the folder name (it'll be returned as a Unicode string)
    set myFolder to myFolder as string
    --Unofficial technique for changing Unicode folder name to plain text string.
    set myFolder to "class ktxt" of (myFolder as record)
    if myFolder is not equal to "" then
    my myExportPages(myFolder)
    end if
    end myChooseFolder
    on myExportPages(myFolder)
    tell application "Adobe InDesign CS3"
    set myDocument to active document
    --set myDocumentName to name of myDocument
    repeat with myCounter from 1 to (count pages in myDocument)
    set myPageName to name of page myCounter of myDocument
    set page range of PDF export preferences to name of page myCounter of myDocument
    --Generate a file path from the folder name, the base document name, and the page name.
    --Replace any colons in the page name (e.g., "Sec1:1") so that they don't cause
    --problems with file naming.
    set myPageName to my myReplace(myPageName, ":", "_")
    set myFilePath to myFolder & "toto" & "_" & myPageName & ".pdf"
    tell myDocument
    --The export command will fail if you provide the file path
    --as Unicode text--that's why we had to convert the folder name
    --to plain text.
    export format PDF type to myFilePath using "[PDF/X-1a:2001]"
    end tell
    end repeat
    end tell
    end myExportPages
    on myReplace(myString, myFindString, myChangeString)
    set AppleScript's text item delimiters to myFindString
    set myTextList to every text item of (myString as text)
    set AppleScript's text item delimiters to myChangeString
    set myString to myTextList as string
    set AppleScript's text item delimiters to ""
    return myString
    end myReplace

  • Problem with Exporter for MS Access 3.2 in SQL Developer

    Hi,
    I have problem with exporting tables and data from MS Access to XML with Exporter for MS Access 2000.
    This error ocurr: 'Error #5 - XML Exporter'
    When I use Exporter for MS Access 2002 this error ocurr: 'Error #3478 - XML Exporter'
    Any leads how to solve this problem ?

    Thread moved to Forum Home » Database » SQL Developer
    SQL Developer
    Please, stay tune there.
    Nicolas.

  • I have two Iphones with different email addresses sharing one Apple ID. Will that cause problems with using messaging and FaceTime?

    I have two Iphones 5 with different email addresses sharing one Apple ID account.Both are using IOS 8.
    I would like to set up a new Apple Id for one of the phones and remove it from the old account.
    If I do that, can I move all of the purchased apps and songs to the new Apple account?
    Also, will sharing one Apple ID account with two devices cause problems with using messaging and FaceTime?

    Sharing an iCloud account between two devices can be done without causing issues with iMessage and FaceTime, just go into Settings for each of these functions and designate separate points of contact (i.e. phone number only, or phone number and unique email address).  While that works, you'll then face the problem where a phone call to one iPhone will ring both if on the same Wi-Fi network -- but again, that can be avoided by changing each phone's settings.
    Rather than do all that, don't fight it -- use separate IDs for iCloud.  You can still use a common ID for iTunes purchases (the ID for purchases and iCloud do not have to be the same) or you can use Family Sharing to share purchases from a primary Apple account.

  • I just updated my latest java but the update is causing problems with some externale devices. So i would like to uninstall this latest java update and get back the previous one. That should solve to problems with my external device

    i just updated my latest java but the update is causing problems with some external devices. So i would like to uninstall this latest java update and get back the previous one. That should solve to problems with my external device.
    Is this possible and how do i do that?
    Anyone who responds thanks for that!
    Juko
    I am running
    Hardware Overview:
      Model Name:          Mac Pro
      Model Identifier:          MacPro1,1
      Processor Name:          Dual-Core Intel Xeon
      Processor Speed:          2,66 GHz
      Number of Processors:          2
      Total Number of Cores:          4
      L2 Cache (per Processor):          4 MB
      Memory:          6 GB
      Bus Speed:          1,33 GHz
      Boot ROM Version:          MP11.005D.B00
      SMC Version (system):          1.7f10
      Serial Number (system):          CK7XXXXXXGP
      Hardware UUID:          00000000-0000-1000-8000-0017F20F82F0
    System Software Overview:
      System Version:          Mac OS X 10.7.5 (11G63)
      Kernel Version:          Darwin 11.4.2
      Boot Volume:          Macintosh HD(2)
      Boot Mode:          Normal
      Computer Name:          Mac Pro van Juko de Vries
      User Name:          Juko de Vries (jukodevries)
      Secure Virtual Memory:          Enabled
      64-bit Kernel and Extensions:          No
      Time since boot:          11 days 20:39
    Message was edited by Host

    Java 6 you can't as Apple maintains it, and Java 7 you could if you uninstall it and Oracle provides the earlier version which they likely won't his last update fixed 37 remote exploits.
    Java broken some software here and there, all you'll have to do is wait for a update from the other parties.

  • I'm having problem with exporting video from premiere pro cc 2014

    I'm using Adobe Premiere Pro CC 2014 and I'm having problem with exporting video.
    When I click Export and media, the window for exporting appears and it starts exporting video.
    But after a few minutes, it looks like it has completed exporting video and says there's a bug in exporting.
    It literally says it has a problem with compiling, but I don't know what the real problem is.
    I tried many things like restarting computer and Premire Pro but it's no use.
    But it works when I use Adobe Media Encoder CC 2014 for exporting video.
    If anyone knows any possibilities about why this problem happens, please let me know.

    I'm having a similar issue.  When I go to export my project, I add it to the render queue, set it up with the h.264 settings that I've used with countless past versions of the program, and then hit render.  Randomly, at some point in the process, the render just stops and the ETA just keeps climbing.  I actually had to save an XMF file of the CC 2014 project and bring it into the previous CC version of Premiere just to finish it.  Even a clean re-install of CC 2014 doesn't work.

  • If I install the update to Adobe Reader 10, will that cause problems with Acrobat Pro 9?

    Firefox (version 15.0.1) is telling me I need to install an update to Adobe Acrobat 9.4 in order to view pdf files in my browser. I use Acrobat Pro 9. The update is actually Adobe Reader 10, and I am wondering if I install this, will it cause problems with my version of Acrobat Pro?
    Because I am not sure if this is so, I have temporarily disabled the plug-in and now pdf files download automatically rather than display in my browser. I would prefer they open in my browser but do not want to upgrade to Acrobat X.
    My OS is Windows Vista. I did not include the "troubleshooting information" file because I'm not sure what specific info is being requested.
    Thanks for any help.

    Hi WMdotcom
    did you try to view pdf with your acrobat pro 9 ?
    see
    [https://support.mozilla.org/en-US/kb/change-firefox-behavior-when-open-file Change what Firefox does when you click on or download a file]
    [https://support.mozilla.org/en-US/kb/set-how-firefox-handles-different-file-types
    Set how Firefox handles different types of files]
    thank you

  • Reduce folders in Windows 7 for pictures without causeing problems with PSE11

    I want to simplify  my Windows 7 folders and reduce the number of the folders. Can you please advise me on the best way to do this so as not to cause problems with PSE11 finding the pictures? Thank you.

    19441965 wrote:
    I want to simplify  my Windows 7 folders and reduce the number of the folders. Can you please advise me on the best way to do this so as not to cause problems with PSE11 finding the pictures? Thank you.
    The only way to move files or folders/subfolders without causing problems, that is not creating 'missing files' is to do this from within the Organizer, not the OS (Win/Mac).
    You can create folders and move pictures from the Organizer.
    Note that if you are moving the files of several subfolders into a single one, you run the risk of wanting to move files with the same filename into the same folder ; your OS won't allow that. So the Organizer will rename pictures if needed.
    If you want to do such a big reorganizing task, absolutely do a full backup before. There is no advantage  for such a reorganizing from an Organizer point of view, but if you need it for some reason, it has to be done from within the organizer.

  • Problem with exporting devices to non-global zone

    Hi,
    I've problem with exporting devices to my solaris zones (i try do add support to mount /dev/lofi/* in my non-global zone).
    A create cfg for my zone.
    Here it is:
    $ zonecfg -z sapdev info
    zonename: sapdev
    zonepath: /export/home/zones/sapdev
    brand: native
    autoboot: true
    bootargs:
    pool:
    limitpriv: default,sys_time
    scheduling-class:
    ip-type: shared
    fs:
    dir: /sap
    special: /dev/dsk/c1t44d0s0
    raw: /dev/rdsk/c1t44d0s0
    type: ufs
    options: []
    net:
    address: 194.29.128.45
    physical: ce0
    device
    match: /dev/lofi/1
    device
    match: /dev/rlofi/1
    device
    match: /dev/lofi/2
    device
    match: /dev/rlofi/2
    attr:
    name: comment
    type: string
    value: "This is SAP developement zone"
    global# lofiadm
    Block Device File
    /dev/lofi/1 /root/SAP_DB2_9_LUW.iso
    /dev/lofi/2 /usr/tmp/fsfile
    I reboot the non-global zone, even reboot global-zone, and after that, in sapdev zone, there is no /dev/*lofi/* files.
    What i do wrong? Maybe I reduce my sol 10 u4 sparc instalation too much.
    Can anybody help me?
    Thanks for help,
    Marek

    I experienced the same problem on my system Sol 10 08/07.
    Normally, when the zone enters the READY state during boot, it's zoneadmd will run devfsadm -z <zone>. In my understanding this is to create the necessary device files in ZONEPATH/dev.
    This worked well until recently. Now only the directories are still created.
    It seems as if devfsadm -z is broken. Somebody should issue a call to sun.
    As a workaround you can easily copy the device files into the zone. It is important not to copy the symbolic link but the target.
    # cp /dev/lofi/1 ZONEPATH/dev/lofi
    Hope this helps,
    Konstantin Gremliza

  • URGENT : Problems with exporting a translated application

    Hi ! I have a problem with exporting a translated application. Effectively, I exported both applications (The normal and the translated version). I want now to apply the translation XLIFF. I want to know if it is possible to apply my old XLIFF file. The problem is that I can't select the same ID for my application.
    I really have problems!
    Anyone can help me ?

    When I import the translated version, the translation works a little bit. Effectively, all my reports appear but there is no item that appears.

  • I need to download dell drivers to a jumpdrive connected to my iMac.  Will this cause problems with my Mac?

    I need to download dell drivers to a jumpdrive connected to my iMac.  Will this cause problems with my Mac?

    Thanks.  These drivers are for the audio, etc. for a dell laptop I purchased used.  ( Needed something cheap for a training video that would only run on Windows.  Tried Emedia player but picture was too fuzzy.)  Dell support said I should contact Apple support for instructions on how to get the drivers onto the jumpdrive.  Any tips on doing that?

  • My host name changes every few days, since Xmas adding a macbook its changed 6 times. Do I need to stop this? Does it cause problems with sharing between the iMac and macbook?

    my host name changes every few days, since Xmas adding a macbook its changed 6 times. Do I need to stop this? Does it cause problems with sharing between the iMac and macbook?

    There are several possible causes for this problem.
    1. Two (or more) computers on the local network have the same Bonjour name, such as "X's-MacBook-Pro.local".
    2. You have two simultaneous connections to the same local network: probably Ethernet and Wi-Fi. If applicable, disconnect the Ethernet cable or turn off Wi-Fi.
    3. A Mac wakes from sleep due to network traffic. This is due to a bug in OS X that may only affect some models.
    4. A device that gets its network address from the router wakes from sleep, and the address it was using before has been assigned to another device.
    5. A third-party wireless router has incompatible settings or firmware. In that case, refer to the manufacturer or ISP for support. Restarting the router may help, temporarily.
    6. See also this support article.
    Rename the computer in the Sharing preference pane.

  • Have to re install elements 11 & premiere elements 11. cause problem with upgrade windows 8.0 to 8.1

    have to re install elements 11 & premiere elements 11. cause: problem with upgrade windows 8.0 to 8.1.    Lost all software and data.
    how to re install elements11. (downloads purchased in your store 2013-05)
    [email protected]

    have to re install elements 11 & premiere elements 11. cause: problem with upgrade windows 8.0 to 8.1.    Lost all software and data.
    how to re install elements11. (downloads purchased in your store 2013-05)
    [email protected]

Maybe you are looking for

  • Error in Abap code - Unknown column name

    Hi I have this error in my code. Unknown column name "SUM(EKBE-MENGE)" field list. field list. field My code *Select sum(ekbe-menge)        into MCSTRUCT-ZQuant       from ekbe* How do I resolve this. thanks

  • Unable to add or remove items from dock

    First, sorry if this is a duplicate post - I did a number of searches and came up with lots of "frozen dock" and other bugs that weren't this one. There seemed to be pages and pages and after several I just gave up and posted myself. For the past few

  • RAC interconnect switch?

    Hi, We are in the process of migrating from a 10g single instance database to 2 node RAC (Windows Server 2008 OS, EMC storage with 2 SAN swithes,-) and we have some doubts about interconnect. We are having difficulty in selecting the correct intercon

  • Pa30 screen contract area

    hi, I want to hide or delete contract area in PA30 screen. from tabel rp50g ccntr area.when I look from technical settings. screen field is also rp50g-ccntr. does anybody have any idea about this problem, thanks,

  • Several pages of CC aren't working and all my apps including CC is out of date! Please help!

    I have tried many solutions including chatting with a Adobe Support person and he couldn't fix it. Ive uninstalled everything using the cleaner several times and oh so much more. When i open Creative Cloud, the home page will not come up including th