Free Text in Selection screen

Hi all,
I have a requirement where i need to create a free text field at the time of input selection for filling 10 lines.
Kindly help me.
Thanks & Regards,
Vineela.

Hello Vineela,
You can try to put a pushbutton on the selection-screen & upon clicking the pushbutton call the FM: CATSXT_SIMPLE_TEXT_EDITOR where the user can input his text.
Try like this:
TABLES sscrfields.
DATA: it_text TYPE catsxt_longtext_itab.
SELECTION-SCREEN:
BEGIN OF LINE,
  PUSHBUTTON 12(10) text-020 USER-COMMAND cli2,
END OF LINE.
AT SELECTION-SCREEN.
  CASE sscrfields-ucomm.
    WHEN 'CLI2'.
      CALL FUNCTION 'CATSXT_SIMPLE_TEXT_EDITOR'
        EXPORTING
          im_title        = 'User Input Long Text'
          im_start_column = 10
          im_start_row    = 10
        CHANGING
          ch_text         = it_text.
  ENDCASE.
Hope i am clear.
BR,
Suhas

Similar Messages

  • Hi, unable to display full text on selection screen

    hi all
    please any one tell me how one can display full text on selection screen because whatevery i have defined in text for selection screen variable is not displaying full text, some letters are missing.
    for example :
    Poste(s) du document de facturation       
    above text i want to display on selection screen.
    but only  Poste(s) du document de factur
    is displying. some letters are missing
    please try to solve this
    thanking in advance

    Hi Raj,
    Check this..
    SELECTION-SCREEN COMMENT fmt name.
    Additions
    1. ... FOR TABLE dbtab
    2. ... FOR FIELD f
    3. ... MODIF ID mod
    4. ... ID id
    Effect
    Generates a comment on the selection screen. For the name name , there are two options:
    name takes the form TEXT-xxx where xxx is a three-character name for a text symbol. In this case, the contents of the text symbol are displayed at runtime, i.e. the text cannot be changed dynamically. name is another eight-character name. Here, you create a field with the name name in the length specified in the format fmt< /> and it is then generated as an output field on the selection screen. The contents of these comments must therefore be set at runtime (e.g. at INITIALIZATION or - in the case of comments in the database include program DBldbSEL - in the routine INIT of the database program SAPDBldb . They can also be changed when the selection screen is being processed.
    Note
    The field name is generated automatically and so cannot be defined with DATA .
    With comments, you must always specify a format fmt (see variant ULINE ).
    Note
    You must program a new line yourself via the format fmt .
    <b>Example
    SELECTION-SCREEN BEGIN OF LINE.
      SELECTION-SCREEN COMMENT 10(20) TEXT-001
                       FOR FIELD PARM.
      SELECTION-SCREEN POSITION POS_LOW.
      PARAMETERS PARM LIKE SAPLANE-PLANETYPE.
    SELECTION-SCREEN END OF LINE.
    This code displays a 20-byte long comment followed by the parameter at the normal position ( POS_LOW ) on the same line. If the user presses F1 for both objects, the documentation of SAPLANE-PLANETYPE is displayed.</b>
    Regards,
    Raj

  • Drop down in report for selection texts on selection screen

    Hi,
    I have a selection screen for a custom report on which there is a selection-option for entering text-symbol value from selection texts of the same report.
    Could anybody please let me know how to put a drop-down so that users can see selection texts before entering into this free form field.
    Otherwise, could anybody let me know which table stores text symbols of the report?
    Regards
    Kasi

    Hi,
    Here is the sample code for dropdown list box in the selection-screen,
    SELECT-OPTIONS: LB_MACRO_KOART    MYLIST(1)  5  COMMENT.
    AT SELECTION-SCREEN OUTPUT.
      PERFORM ADD_VALUES_TO_KOART.
      COMMENT = 'Account type'.
    END-OF-SELECTION.
    *&      Form  add_values_to_koart
          text
    -->  p1        text
    <--  p2        text
    FORM ADD_VALUES_TO_KOART .
      TYPE-POOLS: VRM.
      DATA: MY_LIST  TYPE VRM_VALUES,
            VALUE LIKE LINE OF MY_LIST.
           i_tab TYPE TABLE OF bseg WITH HEADER LINE.
      DATA : BEGIN OF I_TAB OCCURS 0 ,
             KOART TYPE C,
             END OF I_TAB.
      CLEAR I_TAB.
      I_TAB-KOART = 'A'.
      APPEND I_TAB.
      CLEAR I_TAB.
      I_TAB-KOART = 'D'.
      APPEND I_TAB.
      CLEAR I_TAB.
      I_TAB-KOART = 'K'.
      APPEND I_TAB.
      CLEAR I_TAB.
      I_TAB-KOART = 'M'.
      APPEND I_TAB.
      CLEAR I_TAB.
      I_TAB-KOART = 'S'.
      APPEND I_TAB.
      CLEAR I_TAB.
    Regards,
    Azaz Ali.

  • How to maximise the length of the Parameter text on Selection screen

    Hello,
    I am putting the text in the selection screen for a Parameter.
    Its text is long and it is not letting me to put the whole text in Text Symbol.
    In the report
    When I click on GOto--> Text Elements --> Selection Texts  
    I am sure there is a way we can maximise this...
    ANy suggestions will be apprecaiated.
    Regards,
    Kittu

    Hello,
    Thank you for all your response!
    Here is my code :
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME.
    PARAMETERS : BOTH  RADIOBUTTON GROUP RG1,
                 EXICLASS RADIOBUTTON GROUP RG1.
    SELECTION-SCREEN END OF BLOCK B2.
    Here for Both, I need to add the selction text as  'BOTH Existing and Non-existing Classifications'
    This is a parameter, can any body explain me how to do it with the Parameters.
    Any suggestions will be appreciated.......
    Regards,
    Kittu

  • Dynamic text in selection screen

    Hi all,
    I have one requirement in selection screen. I have a parameter and one pushbutton in selection screen .
    To the right side of the parameter, i need to display the text based on some manipulation in a internal in the program.
    If I click on the pushbutton in selection screen , manipulations will be done in the program in a internal table. if the result is ok i need to display the text in the right side of the parameter otherwise no need to display.
    How can I achieve this.
    Urgent
    Thanks
    Saravana

    Hi
    Write the code in the
    AT selection-screen ON PARAMETER of the Button.
    So when pressed on button, that code will do some process and the result will be displayed.
    check it, whether it displays the text or not on selection screen.
    see the doc
    AT SELECTION-SCREEN - selscreen_event
    Syntax
      | { ON {para|selcrit} }
      | { ON END OF selcrit }
      | { ON BLOCK block }
      | { ON RADIOBUTTON GROUP radi }
      | { }
      | { ON {HELP-REQUEST|VALUE-REQUEST}
      |   FOR {para|selcrit-low|selcrit-high} }
      | { ON EXIT-COMMAND }.
    Alternatives:
    1. ... OUTPUT
    2. ... ON {para|selcrit}
    3. ... ON END OF selcrit
    4. ... ON BLOCK block
    5. ... ON RADIOBUTTON GROUP radi
    6. ... { }
    7. ... ON {HELP-REQUEST|VALUE-REQUEST} FOR
          {para|selcrit-low|selcrit-high} }
    8. ... ON EXIT-COMMAND
    Effect
    These additions allow individual evaluation of specific elements of the selection screens of the program. The information as to which selection has triggered the event is contained in the system field sy-dynnr.
    Alternative 1
    ... OUTPUT
    Effect
    This event is triggered at the screen event PBO of a selection screen. In the event block, the selection screen can be prepared through assignments to the data objects of parameters and selection criteria and through dynamic screen modifications.
    Note
    The assignments to input fields in the event block AT SELECTION-SCREEN OUTPUT always affect the selection screen and overwrite the user inputs from previous displays of the same selection screen. Assignments in the event blocks LOAD-OF-PROGRAM oder INITIALIZATION, on the other hand, only have an effect at first program start.
    Alternative 2
    ... ON {para|selcrit}
    Effect
    This event is triggered at the screen event PAI of a selection screen if the content of the input field of a parameter para or a line of a selection criterion selcrit was passed to the ABAP program. In the event block, the user input can be checked. Sending a warning or an error message in the event block makes the fields para and selcrit ready for input again.
    No parameter that is defined as a radio button can be specified. For this purpose, the addition ON RADIOBUTTON GROUP is provided.
    Note
    If a user action takes place in the dialog box for the multiple selection of a selection criterion selcrit, the entries of the selection table are passed to the program, line by line. For each line, the event AT SELECTION-SCREEN ON selcrit is triggered.
    Alternative 3
    ... ON END OF selcrit
    Effect
    This event is triggered after the selection table selcrit has been fully passed to the program after a user action in the dialog box for the multiple selection has taken place. In the event block, the entire selection table can be checked.
    Alternative 4
    ... ON BLOCK block
    Effect
    This event is triggered at the screen event PAI of a selection screen if all the input fields of a block block of the selection screen were passed to the ABAP program. In the event block, the user inputs can be checked. Sending a warning or an error message in the event block makes all the fields of the block block ready for input again.
    Alternative 5
    ... ON RADIOBUTTON GROUP radi
    Effect
    This event is triggered at the screen event PAI of a selection screen if all the fields of a radio button group radi of the selection screen were passed to the ABAP program. In the event block, the user input can be checked. Sending a warning or error message in the event block makes all the radion buttons of the block radi ready for input again.
    Note
    The individual fields of a radio button group are not passed individually and do not trigger the event AT SELECTION-SCREEN ON par.
    Alternative 6
    Effect
    The event AT SELECTION-SCREEN itself is triggered as the last event of selection screen processing if all the input values were passed to the program. In this event block, all the user inputs can be checked. Sending a warning or an error message in the event block makes all the screen fields ready for input once again.
    Alternative 7
    ... ON { HELP-REQUEST | VALUE-REQUEST } FOR
        {para|selcrit-low|selcrit-high} }
    Effect
    The two events ON HELP-REQUEST and ON VALUE-REQUEST are triggered at the screen events POH and POV of a selection screen if - for the input field of a parameter para or one of the input fields of a selection criterion selcrit - the field help F1 or the input help F4 was called. Other selection events are not triggered.
    In the event blocks, a self-defined field or input field can be programmed, which overrides any helps possibly defined in the ABAP Dictionary.
    Notes
    These event blocks can only be implemented for fields of the selection screen that are defined in the same ABAP program and not in a possibly linked logical database.
    With the events for the field and input help, no data is transported between the selection screen and the ABAP program. As with general screens, suitable function modules must be used for these. The parameters and selection criteria changed for the input help are transported to the selection screen.
    Alternative 8
    ... ON EXIT-COMMAND
    Effect
    This event is triggered if the user has called one of the functions Back, Exit or Cancel. In the event block, possible clean-up actions can be executed.
    Example
    In these executable programs, a standard selection screen and a further selection screen are defined. In the event blocks AT SELECTION-SCREEN, the inputs in the selection screens can be specially handled using the name p_carrid and the screen number in sy-dynnr.
    REPORT demo_at_selection_screen.
    Global data
    DATA: sflight_tab TYPE TABLE OF sflight,
          sflight_wa  LIKE LINE  OF sflight_tab.
    Selection screens
    PARAMETERS p_carrid TYPE spfli-carrid.
    SELECTION-SCREEN BEGIN OF SCREEN 500.
      SELECT-OPTIONS s_conn FOR sflight_wa-connid.
      DATA s_conn_wa LIKE LINE OF s_conn.
    SELECTION-SCREEN END OF SCREEN 500.
    Handling selection screen events
    AT SELECTION-SCREEN ON p_carrid.
      IF p_carrid IS INITIAL.
        MESSAGE 'Please enter a value' TYPE 'E'.
      ENDIF.
      AUTHORITY-CHECK OBJECT 'S_CARRID'
                          ID 'CARRID' FIELD p_carrid
                          ID 'ACTVT'  FIELD '03'.
      IF sy-subrc = 4.
        MESSAGE 'No authorization for carrier' TYPE 'E'.
      ELSEIF sy-subrc <> 0.
        MESSAGE 'Error in authority check' TYPE 'A'.
      ELSE.
        IF sy-ucomm = 'ONLI'.
          CALL SELECTION-SCREEN '0500'.
        ENDIF.
      ENDIF.
    AT SELECTION-SCREEN.
      IF sy-dynnr = '0500'.
        IF s_conn IS INITIAL.
          MESSAGE 'Please enter values' TYPE 'W'.
        ELSE.
          SELECT *
                 FROM sflight
                 INTO TABLE sflight_tab
                 WHERE carrid = p_carrid AND
                       connid IN s_conn.
          IF sy-subrc <> 0.
            MESSAGE 'No flights found' TYPE 'E'.
          ENDIF.
        ENDIF.
      ENDIF.
    Main program
    START-OF-SELECTION.
    Reward points if useful
    Regards
    Anji
    Message was edited by:
            Anji Reddy Vangala

  • Tool-tip text for Selection screen buttons.

    Hi all,
    Got another requirement and need your help.
    I have a user-defined selection screen in my program. I would like to know if it is possible to have a tool-tip text ( quick info ) for the Pushbuttons on this selection screen.
    Any help is appreciated.
    Regards,
    Anand Mandalika.

    Function Buttons.
    For report programs you declare the selection screen appearence with select-options, parameters and selection-screen commands, function key is one of them.
    So a quick example
    REPORT ZYX.
    TYPE-POOLS: ICON.
    TABLES: SSCRFIELDS.
    DATA: WA_FNTXT  TYPE SMP_DYNTXT.
    SELECTION-SCREEN FUNCTION KEY 1.
    INITIALIZATION.
    WA_FNTXT-ICON_ID    =  ICON_GREEN_LIGHT.
    WA_FNTXT-TEXT       =  'Go Faster'.
    WA_FNTXT-QUICKINFO  =  'NO Speed Cameras'.
    SSCRFIELDS-FUNCTXT_01  =  WA_FNTXT.
    AT SELECTION-SCREEN.
    CASE  SSCRFIELDS-UCOMM.
    WHEN  'FC01'.
    etc.

  • Auth infoobject both in free char and selection screen

    Hi,
    Is it possible that I define authorization on, say operating unit, in BW and then provide the operating unit in free characteristic and query selection screen?
    Are there any restrictions to the above scenario?

    Hi Narendra,
    Appreciate your best practice suggestion.
    What I would like to understand is this:
    1 - SAP provided the feature that if we choose processing by auth, it looks at values, defined in auth objects, and populates
         them on the selection screen automatically. Indeed a great feature.
    2 - SAP even gave us freedom to use user exit variables to make it dynamically chosen.
    3 - Even hierarchy based auth framework is provided. Again a great feat.
    4 - Even when user don't give anything in selection screen and just execute, the report is run only for authorized values.
    Then why can't it happen that when user drags the auth IO from free char to report, SAP looks up the authorized values and shows then against the corresponding data record just like it does when we provide values at selection screen.
    I know I might be questioning the SAP auth design and pardon me for my audacity but I just want to understand the rationale behind this restriction.
    You also mentioned about the work arounds to my problem..can you share some so that I might be able to implement them and see if users are fine with it?
    Regards
    Debanshu

  • INCLUDE BDCRECX1 not displaying selection text in selection screen.

    In my BDC program in using INCLUDE BDCRECX1, When i execute program in selection screen i am not getting selection texts.
    what is the problem?

    You are not getting selection texts because you have not maintained text symbols in your BDC program,

  • Text at selection-screen level

    Hi Folks,
    I have a selection-screen having the matnr and quantity.
    MATNR is going to be fetched from the table but the quantity is going to be given by the user at the selection screen level.Now if the user enters say
    part4 as matnr
    10 as quantity,the unit of measure of this part4 should get displayed besides the Quantity field in the selection-screen.Can anyone here please let me know how to achieve this.
    Thanks,
    K.Kiran.

    hi Kiran,
    pls. see the following code. Pls. note that this is for period and text that will appear is the name of the month, but I think that the concept is the same.
    hope this helps
    ec
    PARAMETERS :     p_mon   TYPE poper DEFAULT '012' OBLIGATORY
                             VISIBLE LENGTH 2.
    SELECTION-SCREEN COMMENT 37(15) lv_monat FOR FIELD p_mon.
    INITIALIZATION.
      PERFORM get_buper USING    p_gjahr
                                 p_mon
                        CHANGING lv_monat.
    FORM get_buper USING    i_jahr   TYPE any
                            i_monat  TYPE any
                   CHANGING p_monam  TYPE any.
      lv_period = i_monat.
      CALL FUNCTION 'G_POSTING_DATE_OF_PERIOD_GET'
        EXPORTING
          period              = lv_period
          variant             = 'L1'
          year                = i_jahr
        IMPORTING
          from_date           = lv_date
        EXCEPTIONS
          period_not_defined  = 1
          variant_not_defined = 2
          OTHERS              = 3.
      IF sy-subrc EQ 0.
        lv_period = lv_date+4(2).
        SELECT SINGLE monam INTO p_monam FROM  t015m
                WHERE  spras  = sy-langu
                AND    monum  = lv_period.
        IF sy-subrc NE 0.
          CLEAR p_monam.
        ENDIF.
      ENDIF.
    ENDFORM.                    " GET_BUPER
    DON'T reward if NOT useful

  • Adding custom text besides selection screen field

    Hi All,
       I need to add some custom text to the selection screen field "CtegoryID" in the Product search screen(thru the link "Internal Goods")....I sthis possible thru change os some template?If yes,which one??
    Regards,
    Disha.

    Well...
    I don't remember an existing search help with some fields using a combo-box.
    In the FM assigned to the search help (the search help exit), you can pre and post process some data.
      IF callcontrol-step = 'PRESEL', 'SELONE', 'SELECT'.....
    But I don't see anything for seach a feature.
    In conclusion, I don't think this is supported by generic search help.
    Rgds
    Christophe
    PS: please reward points for helpfull answers

  • Text bet selection screen

    i want to write text between two fields of selection screen e.g Or 
    how can i do this without text elements
    and i have field input with time wat wud be its type plz help

    You can use command Selection-screen begin of line.
    Here is the example -
    Variant 5
    SELECTION-SCREEN BEGIN OF LINE.
    Variant 6
    SELECTION-SCREEN END   OF LINE.
    Effect
    This enables you to arrange several parameters, comments, pushbuttons or underline blocks, included between the SELECTION-SCREEN BEGIN OF LINE and SELECTION-SCREEN END OF LINE statements, in a single line. The automatic newline after each PARAMETER is suppressed. Furthermore, the system does not output selection texts for parameters.
    Example
    SELECTION-SCREEN BEGIN OF LINE.
      SELECTION-SCREEN COMMENT 1(10) TEXT-001 FOR FIELD P1.
      PARAMETERS: P1 LIKE SAPLANE-PLANETYPE, P2(5), P3(1).
    SELECTION-SCREEN END OF LINE.
    ashish

  • Need to display TEXT in web selection screen

    HI All,
    We are working on CRM-BW  modeling. We have one field called "product" which will have key and medium text. We need to display both key + text in web reporting selection screen. When we ran first time text was not showing in web report. Then we found and change the configuration in search help in SE11 for that field. Then we can see the text+key combination in RSRT but still we can't see the text in web report selection screen...
    Now what we have to do to display text in selection screen on web...
    Please give your inputs  ASAP.....we are in UAT phase....
    Thanks in advance
    Arun

    Hi Arun,
    For you case: Display key & text in selection screen.
    In BW,
    You can go to query designer, then you'll go to the info-object belong to the variable (selection-screen : product). Right-click, find for the properties, Then you'll see the option for <b>display as</b>.
    Choose it for Key and text.
    Then save it.
    Go to the report, in the selection screen, when you're choosing for the help, you'll see the value displayed by key & text.
    Hopefully it can help you a lot.
    Regards,
    Niel
    Thanks a lot for any points you choose to assign.

  • Dynamic text changes in selection screen

    i want to change the title of block into a selection screen after clicking radio button .the changes will be done dynamically.

    Hi Pravik,
    try this code:
    selection-screen : begin of block b1 with frame title text-034.
    selection-screen begin of line.
    parameter : r_mas_dl radiobutton group r user-command btn default 'X'.
    selection-screen comment 3(50) text-060.
    selection-screen end of line.
    selection-screen begin of line.
    parameter:  r_new_dl radiobutton group r.
    selection-screen comment 3(50) text-058.
    selection-screen end of line.
    selection-screen begin of line.
    parameter: r_chn_d1 radiobutton group r.
    selection-screen comment 3(50) text-059.
    selection-screen end of line.
    selection-screen skip 3.
    parameter p_file  type rlgrap-filename modif id a.
    select-options: s_sernr for risa0-sernr modif id b no-extension no intervals.
    selection-screen : end of block b1 .
    at selection-screen output.
      if r_mas_dl = c_x.                                      " For the first Radio button
        set titlebar 'MAS' with text-041. " Header Text1.
        loop at screen.
          if screen-group1 = c_a.
    *        CLEAR p_file.
            if screen-name = text-052. "'P_FILE'.
              screen-invisible = 0.
              screen-input = 1.
            endif.
          endif.
          if screen-group1 = c_b.
            screen-invisible = 1.
            screen-input = 0.
          endif.
          if screen-group1 = c_c.
            screen-invisible = 1.
            screen-input = 0.
          endif.
          modify screen.
        endloop.
      elseif r_new_dl = c_x.                             " For the second radio button
        clear p_file.
        set titlebar 'SIN' with text-058. " Header Text2
        loop at screen.
          if screen-group1 = c_a.
            clear s_sernr.
            screen-input = 0.
            screen-invisible = 1.
          endif.
          if screen-group1 = c_b.
            screen-input = 1.
            screen-invisible = 0.
          endif.
          if screen-group1 = c_c.
            screen-invisible = 1.
            screen-input = 0.
          endif.
          modify screen.
        endloop.
      elseif r_chn_d1 = c_x.                               " For the third radion button.
        clear p_file.
        set titlebar 'CHG' with text-059. " Header Text3.
        loop at screen.
          if screen-group1 = c_a.
            clear s_sernr.
            screen-input = 0.
            screen-invisible = 1.
          endif.
          if screen-group1 = c_b.
            screen-input = 0.
            screen-invisible = 1.
          endif.
          if screen-group1 = c_c.
            screen-invisible = 0.
            screen-input = 1.
          endif.
          modify screen.
        endloop.
      endif.
    hope it helps.

  • Return from ALV  Grid to Selection screen

    hi,
    I want to go back from ALV grid to selection screen.
    I am using the following code:
    WHEN 'BACK'.
    CALL METHOD grid1->refresh_table_display.
    CALL METHOD grid1->free.
    CALL METHOD custom_container1->free.
    CALL SELECTION-SCREEN 1000.
    it is working,but when i press BACK button from selection screen to program it is showing ERROR IN FLUSH 4 Error.
    Also I tried with method FLUSH
    WHEN 'BACK'.
    CALL METHOD grid1->refresh_table_display.
    CALL METHOD grid1->free.
    CALL METHOD custom_container1->free.
    CALL METHOD cl_gui_cfw=>flush.
    it's still showing same Error.
    Please help on this.
    Regards,
    Sankar

    Hi,
    My grid name is grid1.
    I tried with :
    DATA grid1 TYPE REF TO cl_gui_alv_grid.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
    e_grid = grid1.
    CALL METHOD grid1->check_changed_data.
    CALL METHOD grid1->refresh_table_display.
    LEAVE TO SCREEN 0.
    Even, I tried with declaring another grid : grid2
    DATA grid1 TYPE REF TO cl_gui_alv_grid.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
    e_grid = grid1.
    CALL METHOD grid1->check_changed_data.
    CALL METHOD grid1->refresh_table_display.
    LEAVE TO SCREEN 0.
    In both cases, I am getting the following Error : OBJECTS_OBJREF_NOT_ASSIGNED

  • Set the parameter in the selection screen of a program from another program

    Hi ALL,
    I need to call the program RHALESMD from another program and the program RHALESMD takes from date as one of the input parameter.how do i set the from date from the calling program and call RHALESMD
    Thanks
    Bala Duvvuri

    i got the answer
    Program accessed
    REPORT report1.
    DATA text TYPE c LENGTH 10.
    SELECTION-SCREEN BEGIN OF SCREEN 1100.
      SELECT-OPTIONS: selcrit1 FOR text,
                      selcrit2 FOR text.
    SELECTION-SCREEN END OF SCREEN 1100.
    Calling program
    REPORT report2.
    DATA: text       TYPE c LENGTH 10,
          rspar_tab  TYPE TABLE OF rsparams,
          rspar_line LIKE LINE OF rspar_tab,
          range_tab  LIKE RANGE OF text,
          range_line LIKE LINE OF range_tab.
    rspar_line-selname = 'SELCRIT1'.
    rspar_line-kind    = 'S'.
    rspar_line-sign    = 'I'.
    rspar_line-option  = 'EQ'.
    rspar_line-low     = 'ABAP'.
    APPEND rspar_line TO rspar_tab.
    range_line-sign   = 'E'.
    range_line-option = 'EQ'.
    range_line-low    = 'H'.
    APPEND range_line TO range_tab.
    range_line-sign   = 'E'.
    range_line-option = 'EQ'.
    range_line-low    = 'K'.
    APPEND range_line TO range_tab.
    SUBMIT report1 USING SELECTION-SCREEN '1100'
                   WITH SELECTION-TABLE rspar_tab
                   WITH selcrit2 BETWEEN 'H' AND 'K'
                   WITH selcrit2 IN range_tab
                   AND RETURN.
    Thanks
    Bala Duvvuri

Maybe you are looking for

  • Downloading Adobe Photoshop Elements 9

    Hi. I am currently trying to create an account for the Adobe Photoshop Elements 9 that I just now downloaded. I bought it over a year ago.  The process requires me to create a URL for photoshop.com, a website that Adobe Photoshop no longer uses. When

  • HT4009 How do I cancel in apps purchasing for yearly suscription which I did intend to?

    I recently downloaded TripIt. When I tried to figure out the things accidently click on a link and take me to purchase the service with no price displayed. I thought it was free. It actually did purchase one year of TripIt Pro Services for $48.95. Ho

  • Extractor for Purchase Prices?

    Hi all, We would like to use the new extractor for Purchase Prices (Retail) named 0RT_PURCHPRICE_PUORG_ATTR in BI Content 7.03. However, I got issue in activating this data source in BI 7.0. I am wondering if any other BI experts have experiences. An

  • Virtual directory misconfigured

    Exchange server path to kerbauth.dll is wrong / Powershell virtual directory is misconfigured. How to re-created virtual directory for Powershell on affected server. Thanks for ypour replies. Treat as urgent.

  • Adobe reader for iPad disappointed me

    I cant beleive it, Forms, links, bottoms- don't work with Adobe reader for ipad. ¿Why?