SE16N Export Local File - Header Line Every 60,000 Records

Good Day,
   After a recent system upgrade to SAP ECC 6.0 Release 701, Level 007 (from Level 004), we received word that exporting to a local file from SE16N now creates a header line after every 60,000 records.  This occurs on both SAP GUI 7.10 Patch 15 and SAP GUI 7.20.
   We found notes 1309128 and 1017586, but our service pack level already implements the correction instructions listed. Is there a parameter (either system wide or SAP GUI specific) that needs to be set to disable the header lines? Is there anything else that we can check?
Thank you for any help you may be able to provide!

Hi,
Sure it is unusual.
have you checked whether the "header" was not repeated in the internal table itself?
Best regards,
Guillaume

Similar Messages

  • F.31- Missing List - Export - Local File Option

    Hi Guys,
    We have just upgraded to ECC6.0 from 4.6 . An issue we encountered is that one of the methods of exporting the data from F.31 is now grayed out. This is via List->Export->Local file.
    Also in the previous version we do have a Statistics at the end of the report, which is not available anymore.
    So I'm wondering if this is just by SAP design? Does anyone with ECC6.0 have use of the List->Export->Local file feature?
    Thanks

    Hello,
    Check mentioned SAP note ,which can guide you.
    1406744 - RFDKLI40, RFDKLI41: Unsupported functions available in menu
    Rgds
    Mani

  • Need to commit after every 10 000 records inserted ?

    What would be the best way to Commit after every 10 000 records inserted from one table to the other using the following script :
    DECLARE
    l_max_repa_id x_received_p.repa_id%TYPE;
    l_max_rept_id x_received_p_trans.rept_id%TYPE;
    BEGIN
    SELECT MAX (repa_id)
    INTO l_max_repa_id
    FROM x_received_p
    WHERE repa_modifieddate <= ADD_MONTHS (SYSDATE, -6);
    SELECT MAX (rept_id)
    INTO l_max_rept_id
    FROM x_received_p_trans
    WHERE rept_repa_id = l_max_repa_id;
    INSERT INTO x_p_requests_arch
    SELECT *
    FROM x_p_requests
    WHERE pare_repa_id <= l_max_rept_id;
    DELETE FROM x__requests
    WHERE pare_repa_id <= l_max_rept_id;

    1006377 wrote:
    we are moving between 5 and 10 million records from the one table to the other table and it takes forever.
    Please could you provide me with a script just to commit after every x amount of records ? :)I concur with the other responses.
    Committing every N records will slow down the process, not speed it up.
    The fastest way to move your data (and 10 million rows is nothing, we do those sorts of volumes frequently ourselves) is to use a single SQL statement to do an INSERT ... SELECT ... statement (or a CREATE TABLE ... AS SELECT ... statement as appropriate).
    If those SQL statements are running slowly then you need to look at what's causing the performance issue of the SELECT statement, and tackle that issue, which may be a case of simply getting the database statistics up to date, or applying a new index to a table etc. or re-writing the select statement to tackle the query in a different way.
    So, deal with the cause of the performance issue, don't try and fudge your way around it, which will only create further problems.

  • ALV download to local file, splits line in two

    Dear Abapers,
    I have a quite wide ALV report, when downloading to local file, I get the "long" line splitted in 2 (in case of spreadsheet format) and in 3 in case of unconverted format.
    Is there a turn arround in order to have only one line?
    It's not an excel limitation, once there are enough columns to paste the "lower" part of the line on the right of the "upper" part.
    Thanks in advance.
    FLP

    Hi,
    I download the report, pressing the "Local File... (CtrlShiftF9) icon on the ALV, after I choose "Uncoverted" or "Spreadsheet" radio button. If by "Excel in place" you mean press the "Microsoft Excel" icon, for some stransge reason, on my pc and some other users this doesn works, nothing happens or a blank spreadsheet is opened, if you mean something else, plese revert, once I didn't understand it correctly.
    Thanks in advanve
    FLP

  • NXSD translator for CSV file (Header-Line-Trailer)

    Hi,
    We have to process the file coming in below format.
    File Format-
    Header Line (Only once)
    Payload lines. (is unbounded)
    Trailer Line (only once) ----> this is what i like to skipped by adapter.
    Sample file-
    2013-10-10
    1,2,3,4,4,5,1
    35,5,5,66,6,1,1
    2
    We don't have any record identifier to identify the record type. Only info we have is that first record will be the header and last records will be the trailer and in between that we will get payload.
    Can some one tell how to create XSD for above type of file?
    Thanks,
    Ab

    Hi Puneet,
    As you suggested I generated a separate schema for header+payload and trailer and tried to merge them using both choice and sequence. But not of them seems to be working.
    are you sure that we can handle this scenario in xsd?  Below is the generated schema.
    File Format-
    Header Line (Only once)
    Payload lines. (is unbounded)
    Trailer Line (only once) ----> this is what i like to skipped by adapter.
    Actual data file-
    2013-10-10
    5561386532;11111111;INDIA
    5561386532;44444444;INDIA
    2
    Schema for Trailer-
    <?xml version="1.0" encoding="UTF-8" ?>
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
                xmlns:tns="http://TargetNamespace.com/bn"
                targetNamespace="http://TargetNamespace.com/bn"
                elementFormDefault="qualified"
                attributeFormDefault="unqualified"
                nxsd:version="NXSD"
                nxsd:stream="chars"
                nxsd:encoding="US-ASCII"
    >
      <xsd:element name="Root-Element">
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="rec" minOccurs="1" maxOccurs="1">
              <xsd:complexType>
                <xsd:sequence>
                  <xsd:element name="C1" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="${eol}" nxsd:quotedBy="&quot;" />
                </xsd:sequence>
              </xsd:complexType>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
    </xsd:schema>
    Schema for Header+Payload-
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                xmlns:nxsd="http://xmlns.oracle.com/pcbpel/nxsd"
                xmlns:tns="http://TargetNamespace.com/bn"
                targetNamespace="http://TargetNamespace.com/bn"
                elementFormDefault="qualified"
                attributeFormDefault="unqualified"
                nxsd:version="NXSD"
                nxsd:stream="chars"
                nxsd:encoding="US-ASCII"
                nxsd:hasHeader="true"
                nxsd:headerLines="1"
                nxsd:headerLinesTerminatedBy="${eol}"
    >
      <xsd:element name="Root-Element">
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="rec" minOccurs="1" maxOccurs="unbounded">
              <xsd:complexType>
                <xsd:sequence>
                  <xsd:element name="C1" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy=";" nxsd:quotedBy="&quot;" />
                  <xsd:element name="C2" type="xsd:int" nxsd:style="terminated" nxsd:terminatedBy=";" nxsd:quotedBy="&quot;" />
                  <xsd:element name="C3" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="${eol}" nxsd:quotedBy="&quot;" />
                </xsd:sequence>
              </xsd:complexType>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>  
      </xsd:element>
    </xsd:schema>

  • Invalid file header - pink noise on audio recording

    Hi I sometimes get pink noise on a recorded audio region.. when i reload the song Logic alerts me: invalid file header repair? it fixes it, but it *****

    LpGroove,
    Take a look at the Movie Creation Guide (in your product and also at: http://www.soundblaster.com/products...ationGuide.pdf) chapter 7, and page 7-6 in particular. Make sure your audio source is connected to the correct audio inputs (near the video inputs) and the Creative Mixer settings are correct.
    -Chris

  • Creating an Excel file from table with 40,000 records

    I need help with creating an Excel file for client that has a
    table of 40,000 records. I have code that generates the Excel and
    has worked well in the past but with this much data it is timing
    out.
    I've already informed the client that Excel has limit of
    66000 records. So it might be better to export to CSV as the data
    in this table is going to keep growing.
    If you have time to work with me on this , contact me a
    alexagui [at] gmail [dot] com
    and I can send you more details so you can put together an
    accurate quote.
    Thanks,
    Alex

    asdren_one wrote:
    > I need help with creating an Excel file for client that
    has a table of 40,000
    > records. I have code that generates the Excel and has
    worked well in the past
    > but with this much data it is timing out.
    >
    > I've already informed the client that Excel has limit of
    66000 records. So it
    > might be better to export to CSV as the data in this
    table is going to keep
    > growing.
    >
    > If you have time to work with me on this , contact me a
    alexagui [at] gmail
    > [dot] com
    > and I can send you more details so you can put together
    an accurate quote.
    For so many records my guess is that the concatenation times
    the most
    time so you'll need to use StringBuffer to build the string.
    Google for
    coldfusion and stringBuffer:
    http://www.stillnetstudios.com/2007/03/07/java-strings-in-coldfusion/
    Mack

  • Exporting Local File in background

    Hi,
      I want to export a flat file in background mode. I am currently using WS_DOWNLOAD but this doesn't work in background. What I think is that I will save it in UNIX directory. Can you please give some sample codes for this? or if there's still a way using WS_DOWNLOAD to do this in background?
    I appreciate your response.
    Thanks!

    Use the transaction CG3Z to upload your file into application server.
    Then you can use
    open dataset.
    transfer dataset.
    close dataset.
    commands to access that file from application server.

  • Header line missing for multiple records in the Receiver Email.

    I have a file to email scenario
    I see the content in mapping has proper output with all the HDRs and ITMS. but when it comes throught the receiver it is missing the HDRs.
    Source
    HDR1***   ITM1***  ITM2****
    HDR2***   ITM1***  ITM2***ITM3**
    The email Body looks like the following:
    HDR1***   ITM1***  ITM2***ITM1**  ITM2***ITM3*
    I am missing the HDR for the subsequent recodrs and the subsequent items are shown as if they are the items of the first HDR1. I checked the Mapping the mapping output and it looks good, but when i actually get the email i see it missing susequent HDRs.

    When I was at a client on 11.5.10, I ended up creating a personalization on the Requisitions screen.
    If someone created a requisition with 2 ship to orgs, it raised an error.
    It was not full proof but it was deemed satisfactory by the client.
    You can consider personalization or you can modify the requisition approval workflow to include the check for multiple ship-to condition.
    Hope this helps
    Sandeep Gandhi
    Independent Techno-functional Consultant

  • F. 31 List Export local file_, =  *local file* became greyed out

    Hi,
    Recently we have Upgraded our SAP system with  EHP5, after that in T.code F.31 after executing, we are unable to down load the file as its grayed out,
    F. 31 > List > Export > local file, =  local file became greyed out  after upgrade. the user unable to download this file,
    please post your suggestion ASAP.
    Thanks in Advance.

    Hi,
    Try by Ctrl + Shift + F9, other wise download it from table KNKK,same information lied in to this table.
    Regards
    Ram

  • Runtime Error during export ALV Grid to Local File and Print Priview

    Hi all,
             While Exporting ALV grid to local file using menu List->export->local file , I m getting following runtime error,
             Field Symbol has not yet been assigned.
    Details of Errors:
    Program : SAPLKKBL
    Include :   LKKBLF99
    Module Type : (FORM)
    module name : GEN_FIELD_OUT2
    So. pls Suggest any good solution.
    Thanks & Regards,
    Sandip Sonar.

    hi
    this is happening just because you might have declared that your ALV list should have a checkbox, but defined no field as "checkbox" into your internal table.
    and one more thing to check up is that before you call the REUSE_ALV_GRID_DISPLAY, you need to fill a few parameters for instance is_layout. This one has a field box_fieldname, in which you have to enter the name of the field of the internal table that will store the 'X' as and when the checkbox is checked.
    hope this helps
    regards
    Aakash Banga

  • Exporting to a local file

    Hi,
    I have written a report and when i export the output to a local file (using: list - export--local file) it gives me short dump: GETWA_NOT_ASSIGNED.
    Thank you.
    Regards,
    Fred.

    Hi Fred,
    There is no need to use any function module for this requirement. As your report is a ALV report, you can use the standard toolbar of ALV for this purpose.
    There is a Export button present on the toolbar.You can proceed this like this:
    Export>Local File>spreadsheet(any from options)
    So you can tell your client to use this export button in toolbar for downloading purpose.
    Hope this solves yours problem.
    Regards,
    Brajvir

  • Export alv grid to local file

    Hi all,
             I m displaying records using ALV Grid , I want to export that ALV Grid to Local File ,
    using Menu->List->Export->Local File.
           I m able to export it in spreadsheet using option List-> Export->Spreadsheet, but while exporting to local file i m getting short dump with error  *Field Symbol Has not yet been Assigned*.
    Pls, Suggest any good Solution.
       Thanks & Regards ,
      Sandip Sonar.

    hi,,,,
    In your output are there any empty Columns, Because field Symbol Not assigned generally occurs if any one of your Internal table column is Blank, Just remove that Blank Column and then try it.
    Thanks
    Saurabh

  • GL Center is a required field!  Check file definition format in file header

    Hi
    I am new in Hyperion FDM. I am trying to load a txt file using multiload feature of FDM. I have created a VBScript to load data. When i run the script it finishes without error but doesnt load any data. I get the following errors in the log file
    ** Begin FDM Runtime Error Log Entry [2012-01-29 16:20:07] **
    ERROR:
    Code............................................. 2621
    Description...................................... GL Center is a required field! Check file definition format in file header (Lines 1-6)!
    File=10_SAMPLE_Actuals_JAN - 2011_RM.txt
    Procedure........................................ clsMPLoader.fStructGetText
    Component........................................ upsWMPLoaderDM
    Version.......................................... 1111
    Thread........................................... 3212
    IDENTIFICATION:
    User............................................. admin
    Computer Name.................................... RAJNEESH
    App Name......................................... testfdm1
    Client App....................................... WorkBench
    CONNECTION:
    Provider......................................... ORAOLEDB.ORACLE
    Data Server......................................
    Database Name.................................... orcl
    Trusted Connect.................................. False
    Connect Status.. Connection Open
    GLOBALS:
    Location......................................... SAMPLE
    Location ID...................................... 748
    Location Seg..................................... 2
    Category......................................... ACTUALS
    Category ID...................................... 12
    Period........................................... Jan - 2012
    Period ID........................................ 1/31/2012
    POV Local........................................ False
    Language......................................... 1033
    User Level....................................... 1
    All Partitions................................... True
    Is Auditor....................................... False
    Here is the contents and format of the text file that I am trying to load
    SAMPLE
    ACTUALS
    Jan - 2012
    1
    R,M
    a,v,e,v
    a1,version1,e1,100
    a2,version1,e1,100
    a3,version1,e1,100
    Obviously there is something wrong in the txt file above. Can anybody let me know whats wrong I am doing. I also see following error in the tbatchcontents database table after the VBScript finishes running
    10_SAMPLE_ACTUALS_JAN - 2011_RM.TXT_CHECK-IN-FAILED (CODE=2621)
    Need your help. Thanks.
    Edited by: rajneesh sharma on Jan 29, 2012 2:02 PM

    Please see this post => Essbase Multiload
    Thank you,
    Todd Rebner

  • Downloading Report output to a Local File

    Hi,
    I want to download the my ALV Report output to a local file.
    I am following the menu options from ALV output:
      LIST --> Export --> Local File --> Unconverted Format  --> I entered a text file name on the desktop.
    The data is being downloaded to Local text file, but some columns are missing.
    I don't know what is the reason?  Can anybody tell what may be the reason?
    Has anybody come across this issue earlier?
    Please let me know the solution.
    Thanks in advance,
    Sreenivas Reddy.

    Hi vik,
    I have followed the same steps
       LIST --> Export --> Local File --> Here I enter test.xls file on the desktop.
    I am missing the same columns, The heading are displayed for all fields, but data for some initial columns are missing.
    Can you please through some light on this error.
    Thanks,
    Sreeni.

Maybe you are looking for