Printing List output

Hi,
i have a list output like this, i want to print this in an A4 size paper, how can i do this...
                                                     page no : 1
Name : 111111111111
Occupation : 22222222
Country : 33333333333
                                                     page no : 2
Name : 444444444444
Occupation : 555555
Country : 666666666
thanks in advance,
vinayaka

Hi,
Try out using the help of below programs.
Printing without archiving
DATA PARAMS LIKE PRI_PARAMS.
DATA: DAYS(1)  TYPE N VALUE 2,
      COUNT(3) TYPE N VALUE 1,
      VALID    TYPE C.
CALL FUNCTION 'GET_PRINT_PARAMETERS'
  EXPORTING DESTINATION           = 'LT50'
            COPIES                = COUNT
            LIST_NAME             = 'TEST'
            LIST_TEXT             = 'Test NEW-PAGE PRINT ON'
            IMMEDIATELY           = 'X'
            RELEASE               = 'X'
            NEW_LIST_ID           = 'X'
            EXPIRATION            = DAYS
            LINE_SIZE             = 79
            LINE_COUNT            = 23
            LAYOUT                = 'X_PAPER'
            SAP_COVER_PAGE        = 'X'
            RECEIVER              = 'SAP*'
            DEPARTMENT            = 'System'
            NO_DIALOG             = ' '
  IMPORTING OUT_PARAMETERS        = PARAMS
            VALID                 = VALID.
IF VALID <> SPACE.
  NEW-PAGE PRINT ON PARAMETERS PARAMS NO DIALOG.
  WRITE / 'First line'.
ENDIF.
Example
Printing with archiving
DATA: PARAMS   LIKE PRI_PARAMS,
      ARPARAMS LIKE ARC_PARAMS,
      DAYS(1)  TYPE N VALUE 2,
      COUNT(3) TYPE N VALUE 1,
      VALID    TYPE C.
CALL FUNCTION 'GET_PRINT_PARAMETERS'
  EXPORTING DESTINATION            = 'LT50'
            COPIES                 = COUNT
            LIST_NAME              = 'TEST'
            LIST_TEXT              = 'Test NEW-PAGE PRINT ON'
            IMMEDIATELY            = 'X'
            RELEASE                = 'X'
            NEW_LIST_ID            = 'X'
            EXPIRATION             = DAYS
            LINE_SIZE              = 79
            LINE_COUNT             = 23
            LAYOUT                 = 'X_PAPER'
            SAP_COVER_PAGE         = 'X'
            RECEIVER               = 'SAP*'
            DEPARTMENT             = 'System'
            SAP_OBJECT             = 'RS'
            AR_OBJECT              = 'TEST'
            ARCHIVE_ID             = 'XX'
            ARCHIVE_INFO           = 'III'
            ARCHIVE_TEXT           = 'Description'
            NO_DIALOG              = ' '
  IMPORTING OUT_PARAMETERS         = PARAMS
            OUT_ARCHIVE_PARAMETERS = ARPARAMS
            VALID                  = VALID.
IF VALID <> SPACE.
  NEW-PAGE PRINT ON PARAMETERS PARAMS
                    ARCHIVE PARAMETERS ARPARAMS
           NO DIALOG.
  WRITE / 'First line'.
ENDIF.
Thanks,
Kartavya

Similar Messages

  • ABAP List Output Printing Error

    Hi All,
    I am facing a problem while printing the ABAP List Output. First Page is printing fine and from the second page its not printing. Where as in Standard reports everything is printing OK.
    Thanks in Advance.
    Best regards,
    Shahid Malayil

    Hello Shahid,
    For list printing: Add to affected reports with NEW-PAGE PRINT ON LAYOUT/ SUBMIT... TO SAP-SPOOL LAYOUT (print at list generation). For printing from list display, adjust REPORT width specification to force selection of the format and move format to SAP namespace (name "X....").
    May be this can help you.
    Cheers
    Mudassir.

  • PRINTING A LIST OUTPUT WITHOUT USING SP01 TCODE

    Dear All
    I have developed an pf report which is of list output format i have used WRITE statements ...and i want to print this output ; like whenever i click print option on menu bar it should ask for print preview option and after confirmation i will print it without going to SP01 tcode .is there any way i could achieve this functionality .. kindly help me in this regard or suggest me a better way of doing it
    Thanking you

    do a F1 on NEW-PAGE statement its all there...

  • Printing report list output in A4 paper

    Hi!
    Is it possible to fit the list output of a report having a line-size of 240 into an A4 paper ?...when I was trying to print the output is being cut. Some columns at the right were not printed since all columns do not fit on the paper even on landscape. The system defaults format is X_65_255 which has 65 rows and 255 lines. How can I make it fit an A4 paper?
    Thanks in advance!

    Hi Mervin,
    To make printing possible on A4 paper you'll need to define a new output format.
    For this use transaction SPAD.
    Press the button "Full Administration" (F7).
    Select the tab "Device Types".
    Press the button "Page formats".
    Set the screen in Change Mode (press Change button or F8).
    Press the Create button (Shift+F1).
    Give a name (starting with Z, like Z_LAND).
    Select Orientation "Landscape".
    Set papersize width/unit to 255 CH
    Set papersize height/unit to 65 LN
    Save your work.
    Go back to tha SPAD tabpages.
    Press the button "Format Types".
    Set the screen in Change Mode (press Change button or F8).
    Press the Create button (Shift+F1).
    Enter in the screen a format name (starting with Z or Y).
    Set the format type to type L (Format type for ABAP lists).
    Set the page format to your created format (like Z_LAND).
    Enter the number of lines that can be printed on A4 (e.g. 65)
    Enter the number characters (columns) that can be printed on one row on A4 (e.g. 255).
    Give a comprehensive comment.
    Save your work.
    Go back to tha SPAD tabpages.
    Select tab "Devices / servers".
    Press the button "Output devices".
    Select your printer.
    Set the screen in Change Mode (press Change button or F8).
    Go to tabpage "Tray info".
    Choose the right tray for your selected printer and fill in the previously created page format.
    Save your work.
    Leave transaction SPAD.
    This format can be used to print your reports.
    Remove your own printerdefault (Via menu System --> User profile --> Own data, tabpage Defaults).
    When printing a dialog appears where you now can choose the modified printer (with modified page settings).
    As you can see, this is more of a job the the admin guys.
    As a remark: The default page formax X_65_255 should print 255 columns on paper (landscape). Most likely a small character set is used for this. The character size can also be modified (in the same transaction) to fit an entire row.
    Hope this gives you a clue where you can influence the way lists are printed.
    Regards,
    Rob.

  • Printing the list output.

    Hi All,
    I want to print the output of the report. I am printing it using NEW-PAGE PRINT ON . and concluded by NEW-PAGE PRINT OFF. I am doing this under the usercommand.  The problem is,, when I say print,(user command), I can print the output but the it is leading to the previous screen. I want to be in the same screen after my printing. I am pasting the code also. Can any one suggest me, where I am doing the mistake.
    <b><REMOVED BY MODERATOR></b>
    CASE P_UCOMM1.
        WHEN 'PRINT11'.
          CALL FUNCTION 'GET_PRINT_PARAMETERS'
            EXPORTING
              COPIES         = '1'
              DESTINATION    = 'LOCL'
              IMMEDIATELY    = 'X'
              LINE_COUNT     = 25
              LINE_SIZE      = 132
              NO_DIALOG      = 'X'
              USER           = SY-UNAME
              ABAP_LIST      = 'X'
            IMPORTING
              OUT_PARAMETERS = L_PARAMS
              VALID          = L_VALID.
    &--'REUSE_ALV_HIERSEQ_LIST_DISPLAY'--
          DATA:FLAG(1).
          CLEAR FLAG.
          IF L_VALID <> SPACE.
            NEW-PAGE PRINT ON PARAMETERS L_PARAMS NO DIALOG.
            CALL FUNCTION 'REUSE_ALV_HIERSEQ_LIST_DISPLAY'
              EXPORTING
                I_CALLBACK_PROGRAM       = GD_REPID
               I_CALLBACK_PF_STATUS_SET = 'PF_STATUS_SET1'
               I_CALLBACK_USER_COMMAND  = 'EXEC'
                IS_LAYOUT                = M_LAYOUT
                IT_FIELDCAT              = I_FLDCATALOG
                IT_EVENTS                = I_EVENTS
                I_TABNAME_HEADER         = 'I_MHEAD'
                I_TABNAME_ITEM           = 'I_MITEM'
                IS_KEYINFO               = M_KEYINFO
              TABLES
                T_OUTTAB_HEADER          = I_MHEAD
                T_OUTTAB_ITEM            = I_MITEM.
            REFRESH I_FLDCATALOG.
            CLEAR M_LAYOUT.
            CLEAR M_KEYINFO.
            NEW-PAGE PRINT OFF.
            CLEAR L_PARAMS.
            CLEAR L_VALID.
          ENDIF.
          LOOP AT I_HITEM INTO W_HITEM.
            IF W_HITEM-CHECK = 'X'.
              W_HITEM-PFLAG = 'PRINTED'.
              MODIFY I_HITEM FROM W_HITEM INDEX SY-TABIX TRANSPORTING PFLAG
            ENDIF.
          ENDLOOP.
          IF SY-SUBRC = 0.
            LOOP AT I_PFLAG INTO W_PFLAG.
              UPDATE RESB SET WEMPF = 'X'
                          WHERE AUFNR = W_PFLAG-AUFNR
                            AND MATNR = W_PFLAG-MATNR
                            AND DUMPS = 'X'.
              COMMIT WORK.
              WAIT UP TO 1 SECONDS.
            ENDLOOP.
          ENDIF.
      ENDCASE.
    Thanks
    Ramesh.
    Message was edited by:
            Alvaro Tejada Galindo

    Hi,
    When you get the list output .
    click on print button to print it. A dialog box will come.
    In that dialog box, there will be settings button . when you click on this button, you will get many options and the value of those options that can be set defualt for that report output.
    In that there is s option of printer , select that option  and enter a value and then set that as default.
    I hope this will solve your problem.
    For any more help, please revert back.
    Thanks and regards
    Gurpreet Singh

  • Set Printer for List Output

    Is there any way to set a default printer in the program for printing the list output?
    Jyotsna loomba

    Hi,
    When you get the list output .
    click on print button to print it. A dialog box will come.
    In that dialog box, there will be settings button . when you click on this button, you will get many options and the value of those options that can be set defualt for that report output.
    In that there is s option of printer , select that option  and enter a value and then set that as default.
    I hope this will solve your problem.
    For any more help, please revert back.
    Thanks and regards
    Gurpreet Singh

  • ALV top of page - heading depending upon list output

    Hi All,
    My alv grid report shows the report containing vendor account group and some other details.
    My requirement is to get the page break for every new vendor account group and also print the vendor account group description at the top of the list (in header section).
    I have achieved this by using * in sort table for page break and in top of page , I am reading the vendor acct grp desc table to print the header based on index sy-pagno.
    But this solution is only working in print preview mode. If I print the output, actual page breaks are getting applied and I am not getting the desired output as logic using sy-pagno is giving wrong output.
    My question is is there any way to get the current list in the top of page event? So that depending upon the displayed vendor acct grp per page, I will print its description?
    OR is there any other way to achieve this functionality?

    Any suggestions?

  • Any means to print the output from an abap report immediately

    Hi,
    I would like to know if there are any means to print the output of an abap program immediately. Our user wants to execute the program online and once the result list is displayed on screen, user wants the same list to be printed simultaneously without the need to press the 'Print' button.
    Thanks in advance for your help and advises.
    Francis

    Hi
      We can print the list while displaying using NEW-PAGE PRINT ON.
      below is the syntax for this.
         NEW-PAGE PRINT ON [NEW-SECTION]
                    [<params> | PARAMETERS <pripar>]
                    [ARCHIVE PARAMETERS <arcpar>]
                    [NO DIALOG].
    Regards
    Ramanjaneya Reddy.
    [email protected]

  • Print List Processing Report to PDF

    hi all,
    i've read many forums about convert info into PDF. but i'm very new to understand those forums.
    In case I want to print list processing report as PDF (not hard copy thru printer). First, user types the data on the screen then click on 'Execute' button, then the system shows the result on screen. After that user asks system for print the screen on menu bar by List=>Print.
    So please advise me how to get the spool id, then export as pdf. As my opinion, i may use CONVERT_ABAPSPOOLJOB_2_PDF and GUI_DOWNLOAD. But where is the place I should put the methods on?
    Thanks in advance.
    Peerasit

    Hi,
    Go through The simple Anallise this program.
    report zabap_2_pdf.
    *-- Enhancements: only allow to be run with variant.  Then called
    *-- program will be transparent to users
    *-- TABLES
    tables:
      tsp01.
    *-- STRUCTURES
    data:
      mstr_print_parms like pri_params,
      mc_valid(1)      type c,
      mi_bytecount     type i,
      mi_length        type i,
      mi_rqident       like tsp01-rqident.
    *-- INTERNAL TABLES
    data:
      mtab_pdf    like tline occurs 0 with header line,
      mc_filename like rlgrap-filename.
    *-- SELECTION SCREEN
    parameters:
      p_repid like sy-repid, " Report to execute
      p_linsz like sy-linsz default 132, " Line size
      p_paart like sy-paart default 'X_65_132'.  " Paper Format
    start-of-selection.
    concatenate 'c:\'
                p_repid
                '.pdf'
      into mc_filename.
    *-- Setup the Print Parmaters
      call function 'GET_PRINT_PARAMETERS'
       exporting
         authority= space
         copies   = '1'
         cover_page                   = space
         data_set = space
         department                   = space
         destination                  = space
         expiration                   = '1'
         immediately                  = space
         in_archive_parameters        = space
         in_parameters                = space
         layout   = space
         mode     = space
         new_list_id                  = 'X'
         no_dialog= 'X'
         user     = sy-uname
       importing
         out_parameters               = mstr_print_parms
         valid    = mc_valid
       exceptions
         archive_info_not_found       = 1
         invalid_print_params         = 2
         invalid_archive_params       = 3
         others   = 4.
    *-- Make sure that a printer destination has been set up
    *-- If this is not done the PDF function module ABENDS
      if mstr_print_parms-pdest = space.
        mstr_print_parms-pdest = 'LOCL'.
      endif.
    *-- Explicitly set line width, and output format so that
    *-- the PDF conversion comes out OK
      mstr_print_parms-linsz = p_linsz.
      mstr_print_parms-paart = p_paart.
      submit (p_repid) to sap-spool without spool dynpro
                       spool parameters mstr_print_parms
                       via selection-screen
                       and return.
    *-- Find out what the spool number is that was just created
      perform get_spool_number using sy-repid
                 sy-uname
        changing mi_rqident.
    *-- Convert Spool to PDF
      call function 'CONVERT_ABAPSPOOLJOB_2_PDF'
        exporting
          src_spoolid= mi_rqident
          no_dialog  = space
          dst_device = mstr_print_parms-pdest
        importing
          pdf_bytecount                  = mi_bytecount
        tables
          pdf        = mtab_pdf
        exceptions
          err_no_abap_spooljob           = 1
          err_no_spooljob                = 2
          err_no_permission              = 3
          err_conv_not_possible          = 4
          err_bad_destdevice             = 5
          user_cancelled                 = 6
          err_spoolerror                 = 7
          err_temseerror                 = 8
          err_btcjob_open_failed         = 9
          err_btcjob_submit_failed       = 10
          err_btcjob_close_failed        = 11
          others     = 12.
    call function 'DOWNLOAD'
         exporting
              bin_filesize            = mi_bytecount
              filename                = mc_filename
              filetype                = 'BIN'
         importing
              act_filename            = mc_filename
         tables
              data_tab                = mtab_pdf.
          FORM get_spool_number *
          Get the most recent spool created by user/report              *
    -->  F_REPID               *
    -->  F_UNAME               *
    -->  F_RQIDENT             *
    form get_spool_number using f_repid
         f_uname
                    changing f_rqident.
      data:
        lc_rq2name like tsp01-rq2name.
      concatenate f_repid+0(8)
                  f_uname+0(3)
        into lc_rq2name separated by '_'.
      select * from tsp01 where  rq2name = lc_rq2name
      order by rqcretime descending.
        f_rqident = tsp01-rqident.
        exit.
      endselect.
      if sy-subrc ne 0.
        clear f_rqident.
      endif.
    endform." get_spool_number
    Regards
    swamy

  • Invoice List Output

    Hello Friends,
    I am having issue with Invoice list output, when I  print my invoice it prints the shipping  quantity of material only as only ONE even when there is a multiple quantity, I want my invoice list output to print exact amount of quantity.Is there anyway I can deal with this issue to make sure that it prints multiple quantity in one line or in multiple line.,whatever--,I am a functional consultant not very comfortable with coding, detail explanation will be helpful.
    Appreciate ur reply.
    Thanks.
    Mohammed.

    DEAR I HAVE TO ASK SOME QUESTIONS
    what is the program logic
    if you have ABAP person ask him what is the layout type
    like SMARTFOEM, SCRIPT or ALV
    really issue is in the program layout.

  • Print List Archiving

    hi,
    When i see job log for print list link, i am getting messgae as
    Print list size exceeds 2 GB limit in spool system.
    How to reduce the size of print list.

    Hi Soyab,
    The note does exist:
    Summary
    Symptom Before you use RSBCS_REORG: After you implement this note, you must also implement Note 1003894 (RSBCS_REORG: Corrections).
    You need to reorganize the data relevant to the sending of documents or the use of SAPoffice/Business Workplace.
    Send requests, which are displayed using transaction SOST, are no longer required and should be deleted.
    The related tables (SOOD, SOOS, SOC3, SOFFCONT1, BCST_SR, BCST_CAM and so on) are increasing over time. Part of the data is not required and should be deleted.
    Other terms
    Reorganization, SBWP, SOST, send request, RSBCS_REORG
    Reason and Prerequisites
    You could do the reorganization previously using the RSCBCSRE03 report. Depending on the volume of data and release level, you must also start the RSSORE00 report. These reports do not perform this task, however, because they
    have too few selection criteria
    release dependent references mutually and therefore, may need to be started several times in turn to delete all data.
    issue too little information relating to deleted and non-deleted data.
    This note is valid for releases as of Release SAP_BASIS 620. Note 922565 is valid for Release SAP_BASIS 4.6C.
    Solution
    This note includes a new report RSBCS_REORG, which includes all of the functions of RSBCSRE03 (and those of the reports RSBCSRE00, RSBCSRE01, RSBCSRE02 that are called) as well as those of report RSSORE00. All of these reports have become obsolete due to report RSBCS_REORG, and should no longer be used. Reports RSSORE01 and RSSORE02 are also obsolete.
    Due to the very extensive corrections, we recommend that you import the relevant Support Package to use the report.
    You can also implement the corrections using Note Assistant 2.0, that is, for SAP_BASIS 620 as of SAPKB62055, and for SAP_BASIS 640 as of SAPKB64013, as well as for higher release levels. This new solution is not provided for lower Support Package levels, for which reports RSBCSRE03 und RSSORE00 must still be used. The reason for this is that you must create several new classes that will be used by RSBCS_REORG. Therefore, it is also not sufficient to create the report manually.
    You are also restricted when you use the report with Note Assistant due to missing texts that should have been translated (several texts are only available in English).
    For more information about the use of the report and reorganization in the Business Communication Services area, see the related notes.
    Read this information carefully, because deleted data cannot be restored!
    Report RSBCS_REORG
    The report RSBCS_REORG always assumes that a document is to be deleted, since send requests can only be deleted if the related document is deletable.
    The report reads all the main documents that fulfill the selection criteria, and checks if these and possibly related send requests can be deleted. If the checks show that no uses exist, all related data will be deleted. In the output of the report, the number of selected and deleted (and to be deleted) documents are output.
    The setting options in the selection screen are described below.
    Reorganization mode
          Here you can set which documents are to be reorganized: Documents for which send requests exist, or documents for which no send requests exist. Both options are selected by default, which corresponds to the behavior of the report RSBCSRE03 as of Release SAP_BASIS 640.  We recommend this setting because it is the best setting for selecting the data. If only documents without send requests are to be reorganized, this corresponds to the behavior of report RSSORE00. If none of the fields are selected, nothing is deleted.
    Selection period
              o Specify creation date
                If this field is selected, you can specify the creation date of the documents in the fields below.
              o Specify age in days
                If this field is selected, two other fields are displayed in which you can specify the age of documents relative to the actual date. The system determines the related creation date during runtime (or by choosing <ENTER>). If you double-click an input field, you can (as with all selection options) choose free selections. With the setting "Larger", for example, you can select "Delete documents that are older than 90 days".
    Further restriction of choice
          By choosing "Document data" and "Send requests", you can restrict the selection further.
              o Document class, object year, object number
                These correspond to the ID of the document on the database (table SOOD). A document can be clearly identified in this way. The object year is a number, which begins in 1975 with 0 Therefore, object year 30 is the year 2005. You can find values for the fields mentioned above in transaction SOST (for example), by choosing 'Details' for a send request. Note that you can create main documents only. The definition of attachments is also created in the SOOD. However, documents are only deleted together with the respective main document.
              o Address type and status code
                Note that these attributes are recipient-dependent. If values are entered in these fields, a document may not be deleted if more recipients with other values still exist.
              o Expired send requests
                If the field "Only expired send requests" is selected, only documents whose related send requests have an expired expiry date or documents that have been selected explicitly for deletion are deleted. Send requests without an expiry date are not deleted.
    Options
              o Maximum number of hits
                The maximum number of hits can limit the runtime. Note that the data is not read in a sorted manner from the database, so that not only the oldest documents are created if the maximum number of hits is restricted. The maximum number of hits corresponds to the selected and not the deleted documents. In principal, we recommend that you restrict the maximum number of hits using the selection period.
              o Packet size
                The packet size determines the number of data records that can be read, checked and deleted by the database at one time. In the productive run, a database commit occurs after each packet. An increase in the packet size can produce an increase in performance, whereby more working memory is also required however. Depending on the volume of data and the database system used, small values can also lead to better performance.
              o Detailed output
                If you set the "Detailed Output" option, more details related to the selected documents are displayed. If the field is selected, the number of documents to be deleted per year is output. Furthermore,  the number of documents per year that cannot be deleted for certain reasons is output. You can display a list of the respective documents by double-clicking in the online run. If you double-click a document in this list, all uses for this document are displayed.
              o Test mode
                If the "Test mode" field is selected, no database changes are carried out, but the entries to be deleted are counted and output. All specified counters are approximate values in the test mode, and since no deletions are carried out, the values can deviate from those of the productive run. Furthermore, several entries cannot be created in the test mode (for example, how many address references or Knowledge Provider documents are to be deleted).
    There is a problem with system performance.
    As with the preceding reports, we recommend that you regularly schedule the report RSBCS_REORG as a background job. If a large amount of data has accumulated, you can expect a correspondingly long runtime.
    Packet size
          As already aforementioned, the setting of the packet size can produce an improvement in the runtime, whereby no general rule can be given here. The default value of 500 has proved to the best on average during tests on different systems with different databases.
    Database indices
          The main selection of data occurs in table SOOD. The selection options under "Selection period" and "Document data" correspond directly to fields of this table. The database index DAT for field SOOD-MANDT and SOOD-CRDAT are therefore delivered with the Support Package related to this note. Since the date is the most important selection option, you should create this index manually, and activate it when you implement the corrections using Note Assistant.
    Database statistics
          These statistics should be current when the report is running. This is valid at least for the following tables:
          SOOD, SOOS, SOES, SOFM, BCST_SR, SRBCSBREL
    Header Data
    Release Status:     Released for Customer
    Released on:     05.06.2007  07:49:11
    Priority:     Correction with low priority
    Category:     Program error
    Primary Component:     BC-SRV-COM Communication Services: Mail, Fax, SMS, Telephony
    Affected Releases
    Software
    Component
    Release
    From
    Release
    To
    Release
    And
    subsequent
    SAP_BASIS
    60
    620
    640
    SAP_BASIS
    70
    700
    700
    Correction delivered in Support Package
    Support
    Packages
    Release
    Package
    Name
    A1S_BCC
    100
    SAPK-10008INA1SBCC
    A1S_BCC
    100
    SAPK-10009INA1SBCC
    SAP_BASIS
    620
    SAPKB62061
    SAP_BASIS
    640
    SAPKB64020
    SAP_BASIS
    700
    SAPKB70011
    Corrections Instructions
    Correction
    Instruction
    Valid
    from
    Valid
    to
    Software
    Component
    Type *)
    Ref.
    Correction
    Last
    Modifcation
    517872
    620
    620
    SAP_BASIS
    C
    Y6BK078674
    07.11.2006  08:32:58
    518003
    640
    700
    SAP_BASIS
    C
    Y6DK055623
    07.11.2006  08:35:45
    *) C Korrektur, B Vorarbeit, A Nacharbeit, M noch nicht bestimmte Arbeit
    Related Notes
         1089838 - Deleting BCST_CAM entries
         1071387 - Several entries in the tables SOCX and SOCY
         1003894 - RSBCS_REORG: Corrections
         988057 - Reorganization - Information
         922565 - Reorganisation - New report (4.6C)
         569123 - Reorganizing documents from generic object services
    Print Selected Notes (PDF)     
    Causes - Side effects
    The following SAP Notes correct this Note / Patch
    Note
    reason
    From
    Version
    To
    Version
    Note
    solution
    Version
    Support
    Package
    966854
    1003894

  • Export Simple list output to Excel sheet.

    Hi gurus,
    I have a list output as follows.
    A main header
    Sub header 1
    table entries.
    sub header 2.
    table entries ,......etc.
    now i want to export the same format to an excel sheet which need to sent as a mail attachment.
    Is there any FM for this ? i dont want the format to be disturbed.
    can headers and other entries defferentiated with colors ?
    kindly help on this.
    Edited by: deepan adhi on Oct 4, 2009 9:52 AM

    write the list to memory,
    and the read this memory into an internal table.  this will be exactly the same way as its printed on your screen. download it.
    or
    create an internal table of type string, add pass data from your final internal table in the exact way you are putting it in the output.
    and download this string internal table.

  • Clarifications in pick list output type EK00

    Hello ,
    Have any one of you used the pick list output EK00 . I have
    tried this and I do have some issues with
    We are using SAP R/3 4.7 x 200 version .
    Output type EK00 is not available in the application V2 (
    Shipping ) . Its available in application V4 (Shipping special
    case).
    1. I have assigned the shipping points through T code VOK2 as I
    am not able to find the output EK00 through customization menu.
    2. I have maintained the printers details through VP01SHP ( correct me if I am wrong) . I am using the standard program RVADEK01 and form
    SD_PICK_SINGLE in the output EK00.
    After doing the above setting when I am creating delivery in
    VL01N , the output type EK00 is not assigned automatically and
    when I try to assign it manually , it gives an error message
    "Processing program missing for output EK00 (medium 1)in
    application V2" . I dont know why the system is looking for
    application V2 when it is not available in V2 and only available
    in V4 .
    Am I missing anything in my process . Can some one help me in this .
    With regards,
    Joseph Anand.B

    Dear Joseph,
    Have you done the following setting in transaction v/38:
    1.On the Display View "Output Types": Overview screen, in the Output type group box, select EK00. (Application V4)
    2.In the left frame, under Dialog Structure, double-click on the Processing routines folder.
    3.On the Change View "Processing Routines": Overview screen, choose  .
    4.In the first medium, for Print output, enter the Smart Form print program /SMB40/RVADEK01 under Program and Smart Form /SMB40/SDPIK_L under SmartForm.
    Document Types        Picking List
    Output Types          EK00
    Transaction Code      v/38
    Smart Form Program    /SMB40/RVADEK01
    Smart Form            /SMB40/SDPIK_L
                          /SMB40/SDPIK_A
    5. Save the changes.
    Regards,
    Naveen.

  • To increase font size in List Output in Report

    Hi, I have to increase the font size of my report's list output. I dont have to print it. So, please dont suggest print control. Only it needs to be displayed as an output.....
    Thanks.

    Sagar,
          If you want the font size to be more you can do that using the SAP GUI settings .The output will then appear in the increased format as it is only a list output that you are trying to see.press ALT+F12.Choose New Visual Design and then increase font size to maximum.
    Hope this helps.
    Cheers
    Nishanth

  • Spool problem when printing list

    Hi Friends,
    In my report program - I am using ALV_GRID_DISPLAY and generating the output in the SPOOL.
    If I check in spool - The first page contains as:
    Data statistics           No. of Records
    Records passed           15
    and in the second page - my actual ALV output is getting printed with 15 records.
    I dont know how the first page is getting generated ?  I dont want to see this first page. Only my second page data as per my report logic should appear in spool.
    For your reference: - I am using like this:
    PERFORM field_catalog.
    NEW-PAGE PRINT ON
                      PARAMETERS wa_params
                      NO DIALOG.
    PERFORM alv_output.
    NEW-PAGE PRINT OFF
    Please let me know.
    Regards,
    Hari

    Hi ,
    Any clue on this?
    What I understand is that When I checked in Settings -> List status
    This is actually printing in the first page in spool. But only, my output should only be printed.
    How can I hide so that only my list output only should be generated in spool ??
    Regards,
    Hari

Maybe you are looking for

  • How do I get a web part to display items from a dropdownlist?

    I have a DropDownList that am filling with items from a list. The part of my code that am using to read the list and populating the drop down works just fine. I am now trying to figure out how to display the contents of the drop down on a web part. I

  • Error in sales order creation using BAPI_SALESORDER_CREATEFROMDAT2

    Hi all, Pl look into below code : Here order is getting created , however  ship to party and sold to party  shows the same value. *& Report  ZSD_SALEORDCRE report  zsd_saleordcre. Order header:* - Order type: OR Important you must use the german code

  • Loose coupling transport  in PI 7.0

    Hi,   We are trying to implemet OTO.I am tring to do a loose coupling transport in PI 7.0 from DEV to QUA.  I have created one workbench request in se09 and have exported my IR object. I can see my exported IR object in IR>Tools>Find transports.  But

  • App Crash with Lightroom 4.2

    Why am I getting app crashes while using LR 4.2?  I just installed the 4.2 update on Sept 3rd and already have had three crashes inside first day's use.   Crash details:  "1st crash" Problem signature: Problem Event Name:     APPCRASH Application Nam

  • After installing iOS7the App Store is saving all of the updates.

    How do I clean the clutter.  In the previous IOS 6 they would auto delete after downloading.  Now they don't.  Thanks.