Selection Screen in Report Painter

Dear Experts,
I have an issue in the report painter. While executing the report from GRR2, selection screen is not displayed but report is coming as I expected.
I want to create the selection screen for this report. I have created this report without copying from the standard report.
Thanks in Advance.
Regards,
Aswimn

Hi,
Please refer following links.
<Link farm removed by moderator>
Regards,
Renuka S.
Edited by: Vinod Kumar on May 25, 2011 10:12 AM

Similar Messages

  • Adding gsber in selection screen of report painter

    To gurus,
    I have a small requirement, I have to get business area  (GSBER) in  selection screen of report.
    I have developed the report using report painter  FGI1 --FAGLFLEXT which is having gsber field.
    In selection screen it self i want this GSBER FIELD .How to achieve it.
    kindly guide me.
    regards,
    padmaja.

    Hi
    What I understand from your question is you want bussiness area value on selection screen you can achive this by just using the by export/import parameter or by get/set  parameter id.
    Please elaborate what exactly you want.
    Regards
    Sagar.

  • Creating Selection screen in Report Painter

    Good day everyone,
      Does anyone know how I could create a selection screen in Report Writer? Thanks!
    >Christian<

    Hi,
    Simple Parameters  or Selec-options statements will suffice.
    Eg : Parameters : p_matnr type mara-matnr.
           select-options : s_matnr for mara-matnr.
    In selection screen, you may have selec-options, parameters, check boxes, radio buttons etc.
    Regards,
    Sujatha.

  • How to Modify the Selection Screen in Report Painter

    Hi All,
    I am working on Report painter and writer,
    can any body helpme how to change the selection screen i.e i want add some more  select options to the exisiting roport .
    how can i  add more select options to the exisiting one
    please let me know the Procedure and provide some relevent documents .
    Thanks and Best regards.
    uma

    Hello...
    In the program ...we can find the following chunk of code..
    selection-screen:begin of block B1 with frame title text-001.
    Parameters : ....
    select-options:.....
    selection-screen:end of block b1.
    if we need to add any more user inputs we can write the code inside the existing
    selection screen....end of block .
    or create a new block ..just the block name should be different...
    if we are using select options...we need to declare the table name using the key word for the field on which we are giving select options ....
    Tables : BSIK.
    Please see the following code:
    Imagine :- we have the current selection screen..
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETERS: P_BUKRS LIKE BSIK-BUKRS DEFAULT SPACE.
    SELECT-OPTIONS: S_LIFNR FOR BSIK-LIFNR.
    SELECTION-SCREEN END OF BLOCK B1.
    we need to add 2 more fields on the selection screen ..this we can do as the following
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETERS: P_BUKRS LIKE BSIK-BUKRS DEFAULT SPACE.
    SELECT-OPTIONS: S_LIFNR FOR BSIK-LIFNR,
                    S_HKONT FOR BSIK-HKONT.
    PARAMETER: P_DATE LIKE BSIK-BUDAT OBLIGATORY DEFAULT
               SY-DATUM.
    SELECTION-SCREEN END OF BLOCK B1.
    OR...create a new block...
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
    SELECT-OPTIONS:   S_HKONT FOR BSIK-HKONT.
    PARAMETER: P_DATE LIKE RFPDO-ALLGSTID OBLIGATORY DEFAULT
               SY-DATUM.
    SELECTION-SCREEN END OF BLOCK B2.
    there are many options available in selection screens..like creating check box,radio button etc..
    for more info press F1 help on the Selection screen in the ABAP editor
    Revert back if not clear and reward if helpful
    Regards
    Byju

  • Settinf selection fields in Report painter

    hi,
    i need to know how to select fields in report painter as selection fields or input fields?
    i just have an idea of library where we select fields.
    but how to select selection screen fields?

    hiiii 
    refer to following link..it will help you for report painter
    http://www.virtuosollc.com/PDF/Get_Reporter.pdf
    regards
    twinkal

  • Printing Selection Variant in Report Painter

    Hi, I am using ECC 5.  There is a requirement for printing the selection variant in Report Painter (GR55) Reports.  Presently there is a provision to print selection fields and values.
    Is any way, I can print a Selection Variant and Name in Report Painter?  I understood that the information is stored in Table VARIT.  This table contains Lang., Report Name, Variant and Short text.  I do not know how to get this info in Report screen.
    Can any one help?
    Advance Thanks
    Venkat

    Hi,Thanks for your reply.  Let me explain.
    When using Transaction Code GR55, enter Report Group, Execute.  This will open a Report Paramenter screen.  In this screen, if you select Goto --> Variant --> Get OR Get Variant icon, this will show the available selection variants.  Select any one of them and run report.
    In report it will pick-up the each selection paramater field and value NOT a variant.
    Is any way to get the variant also printed in report?
    Hope this will is clear.
    Thanks
    Venkat

  • Modification on selection screen of report

    Hello guys,
    I have a requirement where in i need to modify the initial selection screen as per clients requirement. The scenario is as follows:
    Suppose 'EMPLOYEE' and 'PORTFOLIO' are two of the fields of a cube on which the report will be run. Now suppose there are three employees as A, B and C and A handles portfolios X & Y, B handles portfolios W & Y while C handles portfolios X & Z.
    The initial selection screen of report will have two selection fields first as the employee and second as the portfolio.
    When we do F4 at employee it will display A, B and C. Now the requirement is if we F4 at portfolio it should display only the relevant one for that employee.
    For example: if i give employee as A and when i do F4 at portfolio screen it should give me only X and Y and not all the portfolios viz. W, X, Y & Z
    Is there a way to achieve the above scenario????

    Hi Chakradhar,
                             Refer this code :
    SELECTION-SCREEN BEGIN OF BLOCK BL2 WITH FRAME TITLE TEXT-456.
    PARAMETERS PO RADIOBUTTON GROUP RADI USER-COMMAND R.
    SELECTION-SCREEN END OF BLOCK BL2.
    AT SELECTION-SCREEN OUTPUT.
    CALL SCREEN 100.
    when user will click on this radio button , a pop up screen will appear dynamically.
    Reward points if helpful.
    Regards,
    Hemant

  • AT SELECTION-SCREEN stops report

    Hello,
    I run a report using the AT SELECTION-SCREEN stmt.
    Below AT SELECTION-SCREEN is an IF ... ELSE block. Within that block the report checks, whether the user input (made in a SELECT-OPTIONS) complies some requirements.
    I check for example, if that what the user types in matches a defined string...
    But if i use an AT SELECTION-SCREEN, the report does not continue after execution after that!
    It returns to the selction screen...
    How can I achieve, that the report continues with execution...?
    Thx,
    holger

    Hi Holger,
    1. This is the default behaviour.
    2. For report purpose execution,
       the event is
       START-OF-SELECTION ( and not at selection-screen)
    3. However u CAN ACHIEVE this by :
       after all validations , use the syntax
       LEAVE TO LIST-PROCESSING.
    4.  I tried the same at my end,
       its working fine.
    5. However, if u use step 3,
       there will be a problem :
       after the execution of report,
      it wil get HANG. ie. it won't then
      get back using the toolbar buttons.
      U may try it for yourself.
    6. Bottom line is:
       use
      START-OF-SELECTION (FOR FINAL EXECUTION OF THE REPORT)
    Regards,
    Amit M.
    Message was edited by: Amit Mittal

  • How to create multiple selection screens in reports

    How to create multiple selection screens in reports
    Thanks,
    Sridhar

    Ex: hope you will find an idea from the below example :
    SELECTION-SCREEN BEGIN OF BLOCK SEL1 WITH FRAME TITLE TIT1.
    PARAMETERS: CITYFR LIKE SPFLI-CITYFORM,
                CITYTO LIKE SPFLI-CITYFORM.
    SELECTION-SCREEN end OF BLOCK SEL1
    SELECTION-SCREEN BEGIN OF SCREEN 500 AS WINDOW.
    SELECTION-SCREEN INCLUDE BLOCKS SEL1.
    SELECTION-SCREEN BEGIN OF BLOCK SEL2 WITH FRAME TITLE TIT2 .
    PARAMETERS: AIRPFFR LIKE SPFLI-AIRPFROM,
                AIRPTO LIKE SPFLI-AIRPTO.
    SELECTION-SCREEN END OF BLOCK SEL2
    SELECTION-SCREEN END OF SCREEN 5000.
    INITIALIZATION.
    TIT1 = 'ITIES'.
    aT SELECTION-SCREEN.
    CASE SY-DYNNR.
    WHEN '0500'.
       MESSAGE W159(at) WITH 'SCREEN 500'.
    WHEN '1000'.
       MESSAGE W159(at) WITH 'SCREEN 1000'.
    ENDCASE.
    START-OF-SELECTION.
    TIT1 = 'CITIES FOR AIRPORTS'.
    TIT2 = 'AIRPORTS'.
    CALL SELECTION-SCREEN 500 STARTING AT 10 10.
    TIT1 = 'CITIES AGAIN'.
    CALL SELECTION-SCREEN 1000 STARTING AT 10 10.

  • FM to display Selection screen on report output??

    Hi Experts,
    Is there an FM to display Selection screen on report output.
    Thanks In Advance.

    Hi Ashwin,
    Refer to below link
    http://help.sap.com/saphelp_nw04/helpdata/en/2a/755b94ca5911d299af5c9604c10e27/content.htm
    or
    The easiest way is to define your selection screen in the TOP include of your module pool.
    Then call the selection screen.
    Selection Screen
    selection-screen begin of screen 1010 as window title text-001.
    selection-screen begin of block b1 with frame title text-002.
    parameters: p_vornr type resb-vornr,
    p_refno(20) type c,
    p_plnid type zplcfg-plnid as listbox visible length 20,
    p_sorts type c as listbox visible length 20.
    selection-screen begin of line.
    selection-screen comment (20) text-004.
    selection-screen position 33.
    parameters: p_order as checkbox default 'X'.
    selection-screen end of line.
    selection-screen end of block b1.
    selection-screen end of screen 1010.
    Now call the selection screen.
    call selection-screen 1010.
    if sy-subrc = 0.
    perform get_production_orders.
    perform process_orders.
    endif.
    Thanks!!

  • How we can assign the customised selection screen to report category

    hai
    gurus
    how we can assign the customised selection screen to report category

    Hi Naresh,
    You can do like this.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECTION-SCREEN BEGIN OF BLOCK SELECTION WITH FRAME.
    SELECT-OPTIONS: S_FKART FOR VBRK-FKART.
    SELECT-OPTIONS: S_FKDAT FOR VBRK-FKDAT OBLIGATORY.
    SELECT-OPTIONS: S_VBELN FOR VBAK-VBELN.
    SELECT-OPTIONS: S_AUART FOR VBAK-AUART.
    SELECTION-SCREEN END OF BLOCK SELECTION.
    SELECTION-SCREEN END OF BLOCK B1.
    if you give me brief i can help you out more.
    Thank you .
    Regards
    Ram

  • REPORT PAINTER - Add a field to a selection screen - custom report

    Hi,
    I'm trying to add a field to a selection screen to a CUSTOM REPORT that has been made in REPORT PAINTER (Y_DVL_xxxxxxx). How should I proceed to do so?
    Thanks a lot,
    Julien

    Hi Julien Girard ,
        Could you please check the below link :
    http://help.sap.com/saphelp_erp2005/helpdata/en/56/32e339b62b3011e10000000a11402f/frameset.htm
    Regards,
    S.Manu.

  • Selection values in Report Painter Report

    Hi All,
    I am creating a report  painter report for Plan/Actual values using  library 0FL.In my characteristic value column I included fiscal year as a  value and  hard coded the fiscal year so i dont need this parameter in my selction screen.When I execute the report the fiscal year is coming in the selection twice.i.e:
    Fiscal Year
    Fiscal  Year
    Company Code
    Period
    From Profit Center
    To Profit Center
    How do I wipe out this fiscal year from my selection screen? In GRR2 -> EDIT--> General data selection , I only have  profit center values.I dont  know why this fiscal year is coming up as a selction parameter when I hard coded in the column.Any help.Thanks
    Regards
    Shaun

    HI Shaun
    In GRR2, Against the char, there is a check box where in you specify to treat it as a variable.. DId you check that box? Unless you check that, it wont appear in the selection screen
    Regards
    Ajay M

  • Selection Field in Report Painter Report

    Dear All,
    Could any one tell me the procedure to add new field at selection screen for the report painter report ? To change the report painter selection screen i have to change the Report group or Report of the report group?
    Thank in stack

    In general data selection, i have already cost center, but it is not apprearing at selection screen. Only three field are appearing (Year + Period + Forecast),  and i want to add cost center at the selection screen. How to make cost center field at selection field from General data selection option. Please guide me
    Thank in stack
    Nilesh Shete

  • Selection screen of report writer

    Hi all,
    I am working on a report writer .In this report writer there is one column set which is a key figure set.
    It has two key figures,each is associated with one additional set.
    The fields of additional sets are as follows.
    Additional set 1 -
    period range1
    year1
    record type
    Additional set 2-
    period range2
    year2
    record type
    Its selection screen is automatically taking these as a parameters from additional sets in the following sequence.
    year1
    year2
    period1 to
    period1 from
    period2 to
    period2 from
    I want this sequence to be different i.e. as follows:
    Period1 to
    period1 from
    year1
    Period2 to
    period2 from
    year2
    Can anyone tell me how can  I achieve this.
    Thank You.

    Here is the Code:
    DATA: lt_params  TYPE STANDARD TABLE OF alv_s_param_wp,
    lwa_params TYPE alv_s_param_wp,
    lwa_msg    TYPE bapiret2,
    gt_msg     TYPE TABLE OF bapiret2,
    lv_dcpfm   TYPE xudcpfm,
    gt_data    TYPE STANDARD TABLE OF grwwebdata.
    CLEAR:gt_data,
    lwa_msg.
    REFRESH : gt_data, gt_msg.
    *  SET REPORT painter paramters
    lwa_params-pname  = '$PARAMETER[$1KOKRE'.
    lwa_params-pvalue = c_ccode.   '' (company code = 0010)
    APPEND lwa_params TO lt_params .
    lwa_params-pname  = '$PARAMETER[$1GJAHR'.
    lwa_params-pvalue = p_year.    (2011)
    APPEND lwa_params TO lt_params .
    lwa_params-pname  = '$PARAMETER[$1PERIV'.
    lwa_params-pvalue = s_month-low.     " (1)
    APPEND lwa_params TO lt_params .
    lwa_params-pname  = '$PARAMETER[$1PERIB'.
    lwa_params-pvalue = s_month-high.    "(12)
    APPEND lwa_params TO lt_params .
    lwa_params-pname  = '$PARAMETER[$1VERP'.
    lwa_params-pvalue = p_plan.        " (0)
    APPEND lwa_params TO lt_params .
    lwa_params-pname  = '$SELECT-OPTION[$1KOSET'.
    lwa_params-pvalue = 'I[EQ[1110[3190'.
    APPEND lwa_params TO lt_params .
    CALL FUNCTION 'CRIF_RW_WEB_CALL_REPORT'
    EXPORTING
    i_report_group  = '1SIP'
    *     I_PERS_APPL     =
    *     I_NEW_SELECTION =
    *     I_DISPLAY_LIST  =
    *     I_APPL_ID       =
    *     I_VAR           =
    TABLES
    it_params       = lt_params
    et_data         = gt_data
    et_messages     = gt_msg.

Maybe you are looking for

  • Select options restriction

    Hi experts, is it possible to restrict the select options so that the user can select only from a limited list based on previous selections? Example: user selects value "A" of attribute1 from drop-down list, then in the select options he/she would be

  • Fact and Dimension vs Normalization

    I have a huge chunk of table with some columns and massive amount of data.I want to automate the entire system hence I need to modify the arrangement of the table.I have 2 options: 1) Arrange it into fact and dimension tables. and 2) Normalize the ta

  • InDesign CS4 crashing upon startup after migration to new iMac

    Hi, I recently used Migration Assistant to move the contents of my old iMac that was running OS X 10.5.8 to my new iMac that is currently running OS X 10.7.3.  Unfortunately, everytime I attempt to start up InDesign CS4, it crashes without giving me

  • Help Urgent. How to stop rsync copy

    I have referred the article http://www.macosxhints.com/article.php?story=20071025220746340 to do file copy. But I copy to the wrong place so my local drive is about to be full. How can I stop the rsync copy with Terminal?

  • EIGRP IPv6 Configuration

    Hoping someone can help me out here.  We have 2-6500 running VSS and also running VRF Lite.  The IOS version we are running is: s72033-advipservicesk9_wan-mz.122-33.SXJ2.  We have recently enabled IPv6 and I am trying to enable "IPv6 router eigrp  x"