Supress Background Print parameters when user executes ALV report by F9

Hi friends,
     How can we Supress Background Print parameters pop-up, when user executes ALV report by F9
or by navigation from selection screen -i.e;  Program ->>Execute in Background.
Please guide me
Thanks in Advance,
Ganesh

Sorry,
i need to supress the POP-UP which asks for background Print Parameters in the ALV report. when i press F9 in a selection - screen of a Tcode
as we supress Pop-up for a smartform or script by passing the Print Parameters
This 'RS_SET_SELSCREEN_STATUS' excludes the commands(say F9 function code) in report
I think we need to set the Print paramters in the Program
please guide me
Thanks,
Ganesh

Similar Messages

  • Setting background print parameters for a Smartform

    Hi,
    I have created a Smartform being triggered from a report program. On the selection screen we have given option for the user to select printer of their choice. When I run the report in foreground it works fine and prints for whatever printer specified. However we need to run this report in the background and print to a specific printer, when I run it in background it always picks local printer as default. Can anyone help me on this?Any advise would be greatly appreciated and rewarded..
    Thanks,
    -Anthony.

    Hi
    Set the control parameters using FM
    Import parameter of the generated function module: CONTROL_PARAMETERS
    Component type: SSFCTRLOP
    you can refer standard driver program RLB_INVOICE
    http://help.sap.com/saphelp_nw2004s/helpdata/en/71/9ccd9c8e0e11d4b608006094192fe3/frameset.htm
    Regards
    Shiva

  • What is the actual use of the background print parameters

    Hello all,
    When we are scheduling a job it asks for print parameters like output device:
    Can any one please let me know what is the actual meaning of print parameters and what it does when we set spool parameters.
    Thanks, kumar.

    Hi Bharani,
    Normally when you execute a job in the back ground say like time taking reports or daily Scheduled background jobs, system will create a spool request for that so that you would be able to view the output of the report later and further take the printout etc. Hence, it is asking for print parameters.
    Print parameters are those where you specify the output device, print preview, spool retention period etc, Basically those are the settings required for the way a print job needs to be triggered.
    Regards,
    Ravi Kiran

  • Calling standard printer driver program RVADOR01 from ALV report

    I have ALV report (Sales order documents) and one of columns in report is icon type with print preview link (hotspot). When user press icon, I would like to call standard print program RVADOR01 (actually we have custom Z_RVADOR01 and custom smartform which are working fine when using Document -> Output in VA03) to display print preview. I don't know how to call (trigger) print driver routine and pass needed parameters to it (ex. SO number).
    Marko

    Actually I did that. But then you are at least three clicks away from print preview screen. For testing purpose I've created custom smartform and run it from my report. It is working like I want. Now, instead of my procedure I want to run standard printer driver program with needed parameters. I believe that all it needs is document number (vbeln) and all the rest is already there, program, smatform... I just don't know how to use it (ex. pass parameters).
    I know I maybe complicating too much but I am ABAP beginner and want to learn as much as possible. Thank you anyway!

  • Printing a Special Message in ALV Report

    Hi,
    I have a requirement to print a special message in an ALV report. Customer wants to see this single line message between Report Header and ALV grid. This is a dynamic message to be displayed based on the values in the ALV table. Please suggest me with a suitable solution.
    Thanks,
    Kannan

    Hello Kannan,
    if you are using OOPs ABAP to create this ALV then you can put a text field in your Calling screen just above the "Custom Control" Area. make the text area output only.
    Now you can pass a variable data to this screen variable from your program.
    change the value of this variable based on your condition on PBO part of the called screen.
    OR
    In case you are using REUSE_AVL then you need to pass the value at.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program       = sy-repid
        it_fieldcat              = t_fieldcat
        is_layout                = x_layout
        it_sort                  = t_sort
        i_callback_pf_status_set = w_status
        i_callback_user_command  = w_comm
        i_save                   = 'X'
        it_events                = t_event
        i_grid_title             = w_title
      TABLES
        t_outtab                 = t_data
      EXCEPTIONS
        program_error            = 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.
    OR
    * Report title
      CLEAR t_heading[].
      CLEAR x_heading.
      x_heading-typ = 'H'.
      x_heading-info = 'Reporte Prueba'(001).
      APPEND x_heading TO t_heading.
    * Program name
      CLEAR x_heading.
      x_heading-typ = 'S'.
      x_heading-KEY = 'Program: '.
      x_heading-info = sy-repid.
      APPEND x_heading TO t_heading.
    * User who is running the report
      CLEAR x_heading.
      x_heading-typ = 'S'.
      x_heading-KEY = 'User: '.
      x_heading-info = sy-uname.
      APPEND x_heading TO t_heading.
    * Date of execution
      CLEAR x_heading.
      x_heading-typ = 'S'.
      x_heading-KEY = 'Date: '.
      WRITE sy-datum TO x_heading-info.
      APPEND x_heading TO t_heading.
    * Time of execution
      CLEAR x_heading.
      x_heading-typ = 'S'.
      x_heading-KEY = 'Time: '.
      WRITE sy-uzeit TO x_heading-info.
      APPEND x_heading TO t_heading.
    * Top of page event
      x_event-name = slis_ev_top_of_page.
      x_event-FORM = 'TOP_OF_PAGE'.
      APPEND x_event TO t_events.
    Please pass your variable data that you need to the parameter w_status.
    Please give points if you find solution helpful.
    Cheers,
    Suvendu

  • How to print the Grid title in ALV Report?

    Hi All,
    I write ALV Report.When i am going to print this report it is not printing the Grid Header(ie.Title ).even in Print Preview Also i m not getting the title.It shows the Gird with Values.How Can i print the title Also...
    Regards,Ravi

    Hi,
      u will declare the data as below like this
    DATA: LIST_TOP_OF_PAGE TYPE SLIS_T_LISTHEADER,
            TOP_OF_PAGE  TYPE SLIS_FORMNAME VALUE 'TOP_OF_PAGE'.
      DATA : ST_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
             IT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,
             ST_EVENT TYPE SLIS_ALV_EVENT,
             IT_EVENT TYPE SLIS_T_EVENT.
      DATA : ST_LIST  TYPE SLIS_LISTHEADER,
             IT_LIST  TYPE SLIS_T_LISTHEADER,
             IT_LIST1 TYPE SLIS_T_LISTHEADER,
             IT_LIST2 TYPE SLIS_T_LISTHEADER.
    START-OF-SELECTION.
      IF G_FLAG = SPACE.
      W_REPID = SY-REPID.
      G_TOP_PAGE = 'TOP-PAGE'.
          ST_LIST-INFO = '  Title Name '.
          APPEND ST_LIST TO IT_LIST.
          ST_LIST-INFO = '  second Name'.
          APPEND ST_LIST TO IT_LIST.
        ELSE.
      ENDIF.
    FORM TOP-PAGE .
      DATA: V_LOGO(15).
        V_LOGO = 'LOGO'.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY = IT_LIST
          I_LOGO             = V_LOGO.
        I_END_OF_LIST_GRID       =
    ENDFORM.                    "TOP-PAGE

  • How to Print Selection-Screen along with ALV Report output

    Hi,
    I have a requirement wherein i need to also print the Selection Screen of a report when I print the ALV report output.
    Basically i need to print the ALV output along with selection screen.
    Could you plz suggest me the way.
    Regards,
    Nitin

    Hi,
    My selection Screen is a very big one. It contains around 30 select-options.
    So is their any standard method in which you can choose whether you want to take the output printout with or without Selection screen.
    Regards,
    Nitin

  • Need to remove space for a field when displayed in ALV Report

    Hi,
    I have material field of length 18, but the content is only 10 char. I need to remove the extra space when it is displayed on ALV Report.
    Is there any option in ALV field catalogue

    use statement condense.
    condense zmatnr.
    also giv output lenth of alv column as 10.

  • Blank screen when Back on ALV report

    Hello All,
    I have written an ALV report and when I click BACK on the output list, instead of taking me back to selection screen it is giving a blank screen, and again clicking BACK is giving me selection screen.
    ALV output -->> BACK --> Blank screen --> BACK --> Selection screen
    I am unable to trace out why this is happenning. I want behavour as it dies for other alv report.
    ALV output --> BACK --> Selection Screen.
    Any suggestions are highly appreciated.
    Thanks-

    I am using a FM, its a straight forward ALV report,
    Getting data from different tables in to final output internal table, calling a function module to display ALV.
      h_repid                                = sy-repid.
      h_variant-report     = h_repid.
      t_slis_layout_alv-zebra = 'X'.
      t_slis_layout_alv-colwidth_optimize = 'X'.
      PERFORM get_fieldcat_summary.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                i_callback_program = h_repid
                is_layout          = t_slis_layout_alv
                it_fieldcat        = t_fieldcat1[]
                i_save             = 'A'
                is_variant         = h_variant
           TABLES
                t_outtab           = it_main[]
           EXCEPTIONS
                program_error      = 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.
    Thanks-

  • How to restrict the users in ALV Report

    HI Experts,
    I have a requirement that in an ALV report i have 10colums in the otput of an alv report program now if i want the 5 users to see only the 4 column and if i want the other users to see only 3colums how can we do thal please help me on this
    Thanks in advance.

    Hi,
    We can simply Hide those columns in Fieldcat settings According to User Name
    But those columns again appear if the Layout Settings are changed in ALV.
    So,Fill that field cat according to User login i.e, one structure with 4 columns and
    other structure with 3 columns.
    data : begin of itab occurs 0,
                  a type i,
                  b type i,
                  c type i,
                  d type i,
                  e type i,
               end of itab.
    *Here I am filling Fieldcat According to user names and
    * FILL_FIELDCAT is a Subroutine write your code to fill  Fieldcat
    if sy-uname = 'DDIC'.
    perform fill_fcat using a.
    perform fill_fcat using b.
    elseif sy-uname = 'SAP*'.
    perform fill_fcat using a.
    perform fill_fcat using b.
    perform fill_fcat using c.
    perform fill_fcat using d.
    elseif sy-uname = 'SAPUSER'.
    perform fill_fcat using a.
    perform fill_fcat using b.
    perform fill_fcat using c.
    perform fill_fcat using d.
    perform fill_fcat using e.
    endif.
    Regards,
    Raghava Channooru

  • Problem when dowloading the ALV report output to Excel Sheet.

    Hi ,
    I am dowloading the ALV report output to Excel Sheet.
    There is field Condition Unit(KOMP-KMEIN) in the output of the ALV, this has values PC and CSE , but when I download to Excel Sheet, CSE is appearing as CSE ,but PC is appearing as ******.
    Can you please help me in knowing the reson for this.
    Regards,
    Madhu.

    hi
    refer to following link
    http://www.****************/Tutorials/ALV/ColorSALV/Demo.htm
    http://www.sap-img.com/abap/download-to-excel-with-format-border-color-cell-etc.htm
    Cheers
    Snehi
    Edited by: snehi chouhan on Jul 11, 2008 12:42 PM

  • Not appear the value when i execute the report

    Hi, what reasons could be:
    appear "#" instead a value for example "100", but only forthe records of the last load, the other records of another loads are ok, the report show
    Infoobject value = 200
    KF = 1,
    but for the last record in the query
    Infoobject value = #,
    KF=  1
    in the cube exist this record, it not must be # , is 100, the only thing that i did was change an attr Nav, of this infoobject, just mark the check of lowercase allowed,
    i dont know what can i do to solve this problem that i made i m sure because i execute this report yesterday and it was ok....
    help

    i reactivate the Master data,
    i was checking and this Infoobject has 10 records in the cube and in the KF that i evaluate has record 1 = 1, record 2= -1,  you know, and the others records that appears in the report has just 1, i guess this happend because i run the Delta load twice, i have just to load only one record trought Repair  load and now appear ok in the report, but the problem is i can do this repair for all the records because it works with delta, and the delta works wrong....

  • EXCEL attachment as EMAIL to USER - When USER executes REPORT in BACKGROUND

    Hi Friends,
    I have 10 records in Internal Table. In BACK GROUND execution, I have to send this 10 records as EXCEL attachment through EMAIL to the USER who executed in background.
    How to do this? Thanks in advance.
    Regards,
    Viji.

    hi,
    the following excerpt converts to excel:
    REPORT ZEX_DATATOEXCEL .
    Parameters: P_file like RLGRAP-FILENAME.
    data : begin of int_head occurs 0,
    Filed1(20) type c,                     " Header Data
    end of int_head.
    data : begin of int_data occurs 0,
    Field1(20) type c,                     " Data
    Field2(20) type c,
    Field3(20) type c,
    Field4(20) type c,
    end of int_data.
    int_head-Filed1 = 'Sales Ord'.
    APPEND int_head.
    CLEAR  int_head.
    int_head-Filed1 = 'Sold-to-Party'.
    APPEND int_head.
    CLEAR  int_head.
    int_head-Filed1 = 'Purchase Ord'.
    APPEND int_head.
    CLEAR  int_head.
    int_head-Filed1 = 'Ship-to-Party'.
    APPEND int_head.
    CLEAR  int_head.
    int_data-field1 = '1JOHN'.
    int_data-field2 = '2TOM'.
    int_data-field3 = '3BRAD'.
    int_data-field4 = '4PETER'.
    Append int_data.
    Clear int_data.
    CALL FUNCTION 'MS_EXCEL_OLE_STANDARD_DAT'
    EXPORTING
    file_name = p_file " path offile where u need to download
    * CREATE_PIVOT = 0
    * DATA_SHEET_NAME = ' '
    * PIVOT_SHEET_NAME = ' '
    * PASSWORD = ' '
    * PASSWORD_OPTION = 0
    TABLES
    * PIVOT_FIELD_TAB =
    data_tab = int_data "internal table with data
    fieldnames = int_head "internal table with header
    EXCEPTIONS
    file_not_exist = 1
    filename_expected = 2
    communication_error = 3
    ole_object_method_error = 4
    ole_object_property_error = 5
    invalid_filename = 6
    invalid_pivot_fields = 7
    download_problem = 8
    OTHERS = 9
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    got it from
    http://abaplovers.blogspot.com/2008/05/abap-internal-table-to-excel-sheet.html.
    then you can export to spool and mail it.
    ags.

  • Error while loading document when user executes IW32

    we have brand new laptops and desktops installed SAP GUI 6.40 patch level 27 and microsoft office 2003.when the user tries to execute IW32 and click on the long text button.when we try to change the editor it is giving ERROR WHILE LOADING DOCUMENT
    ERROR WHILE LOADING DOCUMENT
    message no .sofficeintegration142
    DIAGNOSIS
    An internal error occured in the SAP Document  Container Control while loading  a document
    PROCEDURE
    If the error recurs,enter a problem message.There are notes relating to how to create the log file using the report SAPROFFICEINTEGRATIONTRACE1

    Hi Rajanarenderreddy,
    Were you able to resolve your problem?
    If so how? We have a customer that is experiencing the same problem.
    Thank you for your feedback.
    Br,
    Tom.

  • Is there a way to print 5 reports together when User wants full report?

    I have 5 reports that were created, which make up the entire report.  Is there a way to have them through oracle forms either viewed as one document through the WEB or just have them printed/saved by the user as one whole report in RTF?  Also, when i do EXPORT a report into an RTF report, the formatting is getting slightly changed.  One field will be on top of another.  any way to stop that from happening?
    I'm running Oracle Reports, v 10.1.2.0.2.
    thank you,

    If you have 5 report definitions, than that is what you get: 5 report outputs. If you want to merge them together after the outputs are created, you need some tool to do that. There are free PDF merge tools (just google it).
    If you just want to print the reports, I don't see the problem: how does the user know that there were actually 5 reports when he picks up a load of paper from the printer? Unless other reports quickly print between the print jobs, of course.

Maybe you are looking for

  • How do I remove payment information from my account, like the credit card number and information?

    *NO THIS DOESN'T HELP ME AT ALL* V       V        V         V          V          V "Symptoms When there is a mismatch between the iTunes Store's records and your credit card company's records, you will receive an error message stating that your cred

  • Word 2013 crashing opening Microsoft Word 97-2003 Document

    Hi I am having a major problem with a large number of Word docs which have been copied to my file server. The docs are in Microsoft Word 97 – 2003 format and open fine with Office 2007. I recently rolled out Office 2013 to a department. When they try

  • Concept of Transfer Posting?

    Hi, What is the concept of transfer posting when trabsferring the material (my scenarion is transfer of material from plant to depot) Usefull answer will be rewarded Thanks

  • Validation for Business place and section for With holding tax

    Dear friends I defined validation for MIRO with respect to Business place and Section code to make mandatory, it is working fine. But in case of F-47 / F-48 and FB60 I defined validation but not working. Please help me in this regard Thanks in advanc

  • Set Default Spry Tabbed Panel As Close Until Mouse Over

    Dear All, Is there a way to set the default spry tabbed panel to be closed when the page load untilI mouse over it?? here is the link to my page http://www.senhuiauto.com/model_code_link.html. As you can see, it roll down by default. How to fix?? Bel