Spool Output Error - last 2 lines of the list were dropped on spool output

Hi,
I am having problem of printing a report in ALV format. The last 2 lines were dropped on the spool output.  It was actually dropping the last 2 lines on every row break.
This problem occurs ever since we did a support pack upgrade to SAPKH47030 and SAPKB62064.
Please help.
Thanks
Giana

Apply OSS note 1100728 which was corrected in SAPKB62065.
Problem was caused by support pack SAPKB62063 and SAPKB62064.

Similar Messages

  • Possible to mark and unmark every line of the list (ALV

    Hi Experts,
    I would like to develop stock compensation report for a client my requirement as below.
    It must be possible to mark and unmark every line of the list (ALV). On top of the list a button (Create Sales Document) is needed. Pressing this button starts the creation of the sales documents for every line of the list which is marked. The button is only active when the simulation flag is initial!
    Since this is a working list it must be possible to double-click on each line and see the line item details. The line item details should be shown as a ALV list as well. The list contains the following fields:
    u2022     Sold-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018AGu2019)
    u2022     Name of sold-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018AGu2019  ADRC-NAME1)
    u2022     Ship-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018WEu2019)
    u2022     Name of ship-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018WEu2019  ADRC-NAME1)
    u2022     Material number (VBRP-MATNR)
    u2022     Material description (VBRP-ARKTX)
    u2022     Old Price List (determination see above)
    u2022     New Price List (determination see above)
    u2022     Compensation Value List (determination see above)
    u2022     Compensation Quantity List (determination see above)
    u2022     New Compensation Quantity List (determination see above)
    After pressing the creation button a sales document for every marked line is created. When this is finished a log is issued for every line. The log shows the following information:
    u2022     Sold-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018AGu2019)
    u2022     Name of sold-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018AGu2019  ADRC-NAME1)
    u2022     Ship-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018WEu2019)
    u2022     Name of ship-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018WEu2019  ADRC-NAME1)
    u2022     Sales document number or error message if no document is created
    How to create check boxes for eachline in the ALV output for mark or unmark purpsoe and how to create create sales document button in the output and how to create the sales order process . please help me out.
    Moderator message: more "spec dumping", please work yourself first on your requirement.
    Edited by: Thomas Zloch on Mar 29, 2011 4:32 PM

    hi
    i have a code for drop down list use this
    this code is for selection-screen deop-down list yu can add this same code in ALV
    REPORT  ZCHETANA_PRAC10                         .
    Type-pools: VRM.
    data: name type vrm_id,
          list_month type vrm_values,
          list_year type vrm_values,
          value type vrm_value.
    selection-screen: begin of block b with frame.
    parameter: p_year(10) type c as listbox visible length 10,
               p_month(10) type c as listbox visible length 10.
    selection-screen: end of block b.
    at selection-screen output.
    value-key = 'JAN'.
    value-text = 'JAN'.
    append value to list_month.
    value-key = 'FEB'.
    value-text = 'FEB'.
    append value to list_month.
    value-key = 'MAR'.
    value-text = 'MAR'.
    append value to list_month.
    value-key = 'APR'.
    value-text = 'APR'.
    append value to list_month.
    value-key = '1998'.
    value-text = '1998'.
    append value to list_year.
    value-key = '1999'.
    value-text = '1999'.
    append value to list_year.
    value-key = '2000'.
    value-text = '2000'.
    append value to list_year.
    CALL FUNCTION 'VRM_SET_VALUES'
      EXPORTING
        ID                    = 'P_MONTH'
        VALUES                = list_month
    EXCEPTIONS
      ID_ILLEGAL_NAME       = 1
      OTHERS                = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'VRM_SET_VALUES'
      EXPORTING
        ID                    = 'P_YEAR'
        VALUES                = list_year
    EXCEPTIONS
      ID_ILLEGAL_NAME       = 1
      OTHERS                = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    start-of-selection.
    write:/ p_year,
           p_month.

  • Mark and unmark every line of the list in alv

    Hi experts please help me for the following requirement.
    The report must issue a list with the following fields:
    u2022     Sold-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018AGu2019)
    u2022     Name of sold-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018AGu2019  ADRC-NAME1)
    u2022     Ship-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018WEu2019)
    u2022     Name of ship-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018WEu2019  ADRC-NAME1)
    u2022     Total compensation Value per customer (sold-to) and ship-to
    It must be possible to mark and unmark every line of the list (ALV). On top of the list a button (Create Sales Document) is needed. Pressing this button starts the creation of the sales documents for every line of the list which is marked. The button is only active when the simulation flag is initial!
    Since this is a working list it must be possible to double-click on each line and see the line item details. The line item details should be shown as a ALV list as well.
    Please help me how to put to check box or column for selection the particular line in the output . how to put the button create slaes document button and also how to process when Pressing  button starts the creation of the sales documents for every line of the list which is marked.
    please help me out for the requirement.
    Moderator message: "spec dumping", please work yourself first on your requirement.
    Edited by: Thomas Zloch on Mar 29, 2011 4:29 PM

    Hi Have you used.
    The  totals_text(60) type c,       " text for 1st col. in total line from type group slis.
    It is alvailable in  begin of slis_layout_alv_spec1,
    Try it out.

  • Error on populating group in the list

    dear all
    i have following group which is not populated the list item is base table item
    it gives error no 41337can not populate the list from group
    rg_id := create_group_from_query('level_code','select tlm_desc,tlm_level_code from itax_level_master where tlm_level_code like ''0%''');
    errcode := Populate_Group(rg_id);
    clear_list('trs_level_code');
    populate_list('trs_level_code',rg_id);
    pls help

    As Tony said, datatype is probably wrong. Try this:
    rg_id := create_group_from_query('level_code','select tlm_desc,to_char(tlm_level_code) from itax_level_master where tlm_level_code like ''0%''');
    errcode := Populate_Group(rg_id);
    clear_list('trs_level_code');
    populate_list('trs_level_code',rg_id);

  • How to modify the list item drop down context menu in SharePoint 2010

    Hi All,
    I have a requirement to add my name in the list item drop down context menu, already "Assigned ticket" option is available in the context menu and some names are available in the assigned ticket option. but i can't able to add my name in this options.
    Attached screenshot for reference. Thanks in advance for your assistance!
    Thanks
    Arun Prakash

    Do you know how the currently listed values got there in the first place? Some sort of custom code or action? Some background information would help. There is obviously a source feeding it from somewhere, but it's impossible for us to tell you exactly
    what just by looking at your scribbled-over screenshot
    Check WSPs that are deployed to the farm. Check for any non-OOTB site features that are turned on...

  • How to remove the last blank line in the downloaded text file?

    Hi All,
    I am downloading the one internal table content using the GUI_DOWNLOAD to a text file(.txt). The cursor is in last position of the text file where there is no content. For example consider the below is downloaded txt file:
    This is test file.
    Downloaded from the internal table
    using GUI_DOWNLOAD
    | <----
    In above the internal table content first three lines..
    Once I press page down in the text file, the cursor goes below the third line..(i.e., next to the last line)
    How to avoid that ?
    Thanks in Advance,
    Regards,
    Raghu

    I solved this problem with BIN mode.
    See this code example
    DATA: FILESIZE TYPE I.
    CALL FUNCTION 'SCMS_TEXT_TO_BINARY'
    IMPORTING
       OUTPUT_LENGTH         = filesize
      TABLES
        TEXT_TAB              =   i_record
        BINARY_TAB            = i_Record
          filesize = filesize - 1. "TRUNCATED LAST LINE!!!
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          BIN_FILESIZE = filesize
          filename                = l_file
          filetype                = 'BIN'
         TRUNC_TRAILING_BLANKS = 'X'
         TRUNC_TRAILING_BLANKS_EOL = 'X'
         WRITE_LF_AFTER_LAST_LINE = ' '
       TABLES
          data_tab                = i_record
    Hope this can help you.

  • Neither of my iPods will connect to iTunes.. iTunes recognizes that there's an iPod for each.. but that it can't open it in iTunes..  they were both connecting fine prior to the last update. went through the list of trouble shooting.

    Since the last update, I iTunes pops up with an error message when I connect both iPods.. the older Nano (4th or 5th generation) will show up as a dirve on Windoes.. but the new Nano (the latest generation) will show up as a dirve until the error message pops up on itunes.. then it dissapearsll.. and both get the same error message..  that itunes detects an ipod, but it can not be identified properly.. it suggest I unplug and replug. (done that several times) or the uninstall and reinstall iTunes (won't work either) .. and the trouble shooting isn't changing anything.
    They both worked fine before the last update

    Since the last update, I iTunes pops up with an error message when I connect both iPods.. the older Nano (4th or 5th generation) will show up as a dirve on Windoes.. but the new Nano (the latest generation) will show up as a dirve until the error message pops up on itunes.. then it dissapearsll.. and both get the same error message..  that itunes detects an ipod, but it can not be identified properly.. it suggest I unplug and replug. (done that several times) or the uninstall and reinstall iTunes (won't work either) .. and the trouble shooting isn't changing anything.
    They both worked fine before the last update

  • Using Pages, I have created a document and inserted a Table for use in logging an inventaory. When I came to print this off however the lines for the table were missing but the text was in the Table format, weird! How do I print the Table?

    Using Pages, I have created a document and inserted a Table for use logging an inventory. When I came to print this document the lines and boarders of the Table feature did not print however the text did print in the table format. How do I get the lines and boarders to print also?

    Using Pages, I have created a document and inserted a Table for use logging an inventory. When I came to print this document the lines and boarders of the Table feature did not print however the text did print in the table format. How do I get the lines and boarders to print also?

  • First I had the last date up and now all of a sudden stands the last date under the list of incomming emails how can I get the last date again up the list

    I hope you understand what I mean because English is not my language but Dutch.
    Example: 17-11-2014
    16-11-2014
    15-11-2014 so I recieved my e mails and now
    15-11-2014
    16-11-2014
    17-11-2014
    and I want that the newest date become up
    I hope their is someone to help me.
    Thanks.
    Heinja

    In English: ;-)
    Click on "Date" to sort by date. Click it again to reverse the sorting.
    Or, in the menu, '''View|Sort By''' and select '''Date''' and '''Ascending '''or '''Descending '''as you require. You probably want '''Unthreaded''' too.

  • The Windows XP links tool bar at the bottom of the screen now hides the last line or lines of the browser screen. Why? (V3.6.16)

    I use V 3.6.16 and since a recent update, it looked as if I'd lost a line or two at the bottom of the screen. What happened is that the Windows task bar showing quick launch icons, links to running programs (tabs) and the clock, etc., now obscures the last few lines of the browser display. This is since approximately a week. I assume it's due to FF updates rather than to WinXP but of course I don't know. I don't see a problem with other programs. In particular, IE doesn't do it which makes me think it's an issue with FF and it's new. I looked for something under options I could change but couldn't find one. Anyone have an idea?
    System is working fine -- Windows XP SP/3 with all updates. Avira antivirus. Thanks!

    Oops... sorry! Problem was that the window was not full screen! Darn, I'm a dummy. It was almost full screen so I didn't bother to check. Issue solved. Sorry for the false alarm.

  • ALV Totals and Subtotals line in the output

    Hi!
       I want to display an ALV report in which there should be totals and subtotals buttons are to be displayed without displaying the totals and subtotals line when the list is displayed. It should be displayed only when the user clicks the button. If i take do_sum in the fieldcat table it'll display the subtotal button and also the totlas line and that shouldn't happen. If i take no_totalline in the layout it'll not display the totals line even the user selects the totals button. So is there any possibility like this. Please help me.
    Thanks & Regards,
    Swathi

    Hi Swathi,
              Have a look at these good links-
    <b>Add subtotals</b>
    http://www.sapfans.com/forums/viewtopic.php?t=20386
    http://www.sapfans.com/forums/viewtopic.php?t=85191
    http://www.sapfans.com/forums/viewtopic.php?t=88401
    http://www.sapfans.com/forums/viewtopic.php?t=17335
    You can also search for the same in the below links-
    www.sap-img.com
    www.sapfans.com
    www.sapgenie.com
    Reward points if you find the links useful.
    Regards,
    Tanuja.

  • Report Footer overlapping Last four records in the report body.

    <p>Hi All,</p><p>In all of my reports have more than 20 Pages. All of my reports are Webintellegence format. these reports we deployed in Java Appplication. Java Application is in Tiles Frame Work Architecture. </p><p><strong>Here Problem is all of my reports have report footer. that footer is Overlapping Last Four rows in the Report Body. in Infoview it&#39;s looks fine. in Application only this problem we are facing. </strong></p><p>In Application just we are displaying HTML Content. This HTML content Contains everything. Report  Header and Body and Footer</p><p>We are not able to understand this. Please tell me where is the problem this is in Businessobjects problem or Application Problem.</p><p>If any one facing same problem please let me know the solution.</p><p>Thanks & Regards</p><p>Vallabhaneni </p>

    Every page should leave last two line of the body to print other content (some summary)

  • How to ignore last four lines in file

    Hey All,
    We have a requirement where we have to ignore the last four lines of the text file using file sender communication channel. We are using file content conversion and there is no identifier as such which would identify this four lines separately.
    Please reply back to me soon.
    Thanks and Regards,
    Sandeep Maurya

    1.you can do that by writing a  commondline script if have unix operation system iam not sure if we can do that same by in windows by ingoring the last line of a file.
    or
    2. wirte a Module Processor code
    3. wirte a UDF in mapping and and not map the last four lines but you need to check for every field.
    Regards
    Sreeram.G.Reddy
    Message was edited by:
            Sreeram Reddy

  • Error :cannot show the value of the filter.The Field may not be filterable or the number of items returned exceeds the list view threshold enforced by administrator

    Issue : In sharepoint 2013, I am experiening below error while using filter in the list view due to the number of items in this list exceeds the list view threshold, which is 10000 items. Tasks that cause excessive server load (such as those
    involving all list items) are currently prohibited.
    Error :cannot show the value of the filter.The Field may not be filterable or the number of items returned exceeds the list view threshold enforced by administrator
    Could you please suggest a way to avoid this issue apart from incrementing the list view threshold limit .
    Prashanth

    Reorganizing content, or creating more specific views. sharepoint is warning you that the content is structured in such a way that it can cause performance issues, which should be addressed in some way.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • How do I display customized icons next to menu bar instead of on the same line as the URL?

    Thought I already submitted this. If this is a duplicate set of details, apologies. If previous answer posted, there was no message to that effect.
    In Windows 7, icons for most add-ons and for icons you can add with customization appears to the right of the menu bar. Now, in Windows 8, they are appearing to the right of the URL line.
    There isn't enough room on the URL line, so I would prefer they show on the menu bar line. If this isn't possible in Windows 8, count this question as a complaint about the change. If it is possible, I couldn't findl the solution in your help or forum.

    NO! In Windows 7, the command icons show to the right of the line with the '''FILE''', etc. drop-down menus, the line BELOW the top line which contains the Firefox icon (see the image).
    In windows 8, they show to the right of the line in which you enter a URL or a search string. There is not much vacant room on that line, so you can only fit a couple of icons.
    I don't know how to say it any more clearly than this.
    I want to know if it is possible to move the command icons in Windows 8 so they are in the same location as in Windows 7. If not, I'd like to know why the decision was made to do this, if deliberate, or if it was an oversight that will be fixed.

Maybe you are looking for

  • How to reformat usb flash drive after formatting it in mac

    I know this might sound stupid but I used a 16gb kingstonflash drive for a backup for my macbookpro since there are only few to back up and I was thinking I can copy the backup files to an external disk after. With that said, I used the time machine

  • How do i get rid of Album by Artist

    Down the left hand side of iTunes music list there is a column that is labled "Album by Artist."  It is not too bad to if you have songs sorted by Album but if you sort by song name you get all these large blocks on the left and the list is long and

  • New Mac Mini for Logic Pro 9

    Would a new 2.66 Core2Duo Mac Mini with 4GB Ram, external FW hard drive and RME Fireface UC USB interface be sufficient for a an ITB dance music studio running many softsynths. Freeze is always an option. Would this be a much higher powered system th

  • Error programmatically deploying shared variable lvlib from an installed app

    I'm using shared variables in my app.  According to what I've read, I need to deploy the lib programmatically using the app invoke node deploy library.  I do this and it works fine for the app exe on my machine.  But then I created an installer and t

  • StuffIt Expander thinks it is a Classic app

    When I try to open the StuffIt Expander that installed with my OS X or try to open a compressed file that sends a request to open Expander, I get the message "Sorry, Expander will not work without the StuffIt Engine. Please reinstall from the origina