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

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

  • How to use table field values as dynamic parameters on selection screen

    Hi,
    I need help on dynamic selection parameters.
    I need to display no. of parameters from the fields of a database table.
    Basically i want to pass field values of a table to selection screen and we can use those values as parameter on selection screen.
    If there are 10 entries in a table field( say field is field_name and entries are bukrs,kunnr etc.)
    I need to display as many parameters on screen as many values are there in field_name( In this case it is 10)
    SELECTION-SCREEN: BEGIN OF BLOCK b2 WITH FRAME TITLE text-t02.
    PARAMETERS:
                           p_bukrs(5) ,
                           p_kunnr(5) ,
    SELECTION-SCREEN END OF BLOCK b2.
    Thanx

    Hi,
    You can create it using Dynamic Program.Check this link below.
    [Creating Dynamic Programs|http://help.sap.com/saphelp_46c/helpdata/en/9f/db996135c111d1829f0000e829fbfe/content.htm]
    Hope this might help you.
    Thanks,
    Prashanth

  • Mapping function module paramters dynamically with a selection screen

    Hi Experts,
    I got a situation,
    i am maintaining data of a function module paramters in a dictionary table.
    in the screen pbo i will fetch the the fm data from that table into the internal table(ITAB).
    in my report screen i am having the selection screen and the selection screen parameters are also mentioned in the FM Dictionary Table, we are having the those details in our internal table (ITAB).
    now the issue is how to call the FM by using the ITAB values.
    example: ITAB
    fmname          parametr          type        str_name           ss_field
    get_notif        im_notif            import     qmnum                 s_notif
    here s_notif[ ] is having the values in it which is nothing but selection screen parameter.
    and we are having S_NOTIF as a string values in the ITAB.
    now how can i link this S_notif(type string) to s_notif(value of notification) ?
    what i have done is ,
              loop at itab into wa_itab where type = 'import'.
                  case wa_itab-parameter.
                      when 'IM_NOTIF'.                                             " for example im dealing with only one parameter this can have  many
                              get reference of S_NOTIF[ ] to v_notif.
                       endcase.
              endloop.
    now i dont wanmt hard code the parameter name ,
    is there any way to do it dynamically... ?
    experts please help me on this ?
    thanks

    Hi ,
    This sample will help you.
    DATA: lv_fname TYPE string,
            lt_ptab TYPE abap_func_parmbind_tab,
            ls_ptab TYPE abap_func_parmbind,
            lt_etab TYPE abap_func_excpbind_tab,
            ls_etab TYPE abap_func_excpbind.
    *** Table
      ls_ptab-name = 'IT_TABLE'.
      ls_ptab-kind = abap_func_tables.
      GET REFERENCE OF <itab> INTO ls_ptab-value.
      INSERT ls_ptab INTO TABLE lt_ptab.
    *** Exceptions
      ls_etab-name = 'DATA_NOT_FOUND'.
      ls_etab-value = 1.
      INSERT ls_etab INTO TABLE lt_etab.
      lv_fname = 'GET_MY_DATA'." Function Name
      CALL FUNCTION lv_fname
        PARAMETER-TABLE
          lt_ptab
        EXCEPTION-TABLE
          lt_etab.
      IF sy-subrc NE 0.
      ENDIF.

  • 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 program on selection screen

    hi friends i want to add one insert button on selection screen and when someone click that insert button a new parameter field should gets add on the screen.

    Hi,
    Chk this code.But here i took radio buttons instead of pushbuttons.Hope it will help you out.
    *& Report ZHAR_DYN_SELSCR.
    *& This program demonstrates how easy it is to set selection screen
    *& element properties dynamically
    *& The program uses 3 radio buttons to set the display and input
    *& properties of selection screen fields dynamically
    *& URL: http://allaboutsap.blogspot.com
    REPORT ZHAR_DYN_SELSCR.
    DATABASE TABLES
    tables : mara.
    SELECTION SCREEN
    selection-screen begin of block b1 with frame.
    *--- Radio buttons to set properties
    PARAMETERS:
    rad1 RADIOBUTTON GROUP rad default 'X' USER-COMMAND radio,
    rad2 RADIOBUTTON GROUP rad,
    rad3 RADIOBUTTON GROUP rad.
    *--- Selection Screen fields
    SELECT-OPTIONS:
    s_matnr FOR mara-matnr MODIF ID MI1,
    s_mtart FOR mara-mtart MODIF ID MI1,
    s_mbrsh FOR mara-mbrsh MODIF ID MI2,
    s_matkl FOR mara-matkl MODIF ID MI2.
    selection-screen end of block b1.
    AT SELECTION SCREEN
    at selection-screen output.
    loop at screen.
    *--- If Radio Button 1 is checked
    IF rad1 = 'X'.
    IF screen-group1 = 'MI2'.
    *--- Fields with MODIF ID MI2 disappear from the screen
    screen-input = 0.
    screen-invisible = 1.
    ENDIF.
    *--- If Radio Button 2 is checked
    ELSEIF rad2 = 'X'.
    IF screen-group1 = 'MI1'.
    *--- Fields with MODIF ID MI1 are input-disabled
    screen-input = 0.
    ENDIF.
    *--- If Radio Button 3 is checked
    ELSEIF rad3 = 'X'.
    IF screen-group1 = 'MI1' or screen-group1 = 'MI2'.
    *--- All fields will appear input-enabled
    screen-input = 1.
    ENDIF.
    ENDIF.
    *--- MODIFY SCREEN mandatory addition to apply changes to the screen
    Modify screen.
    endloop.
    Reward if helpful.
    Regards,
    Harini.S

  • 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.

  • 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.

  • Dynamic interaction on selection screen

    Hi experts,
    I just have a easy question regarding selection screen in a ordinary ABAP report.
    The code is below:
    *-- Blcok 2
    selection-screen begin of block block_2 with frame title text-s03.
    select-options:
      s_wc_id for /cockpit/cwc_id-wc_id matchcode object zmm25sh000008.
    selection-screen begin of line.
    parameters p_duewc type c as checkbox.
    selection-screen comment 5(50) status_1 for field p_duewc.
    selection-screen end of line.
    parameters p_ndays(2) type n.
    selection-screen end of block block_2.
    When the user marks the checkbox p_duewc the parameter p_ndays should be ready for data entering.
    If the checkbox is not marked (default) p_ndays shall be not ready for data entering.
    I guess I can control it via the statement at-selection screen but can you give more details.
    How can I code such a request?
    Thanks in advance.
    Regards
    Cornelius

    Hello,
    U can use this code.
    SELECTION-SCREEN BEGIN OF BLOCK BL1 WITH FRAME TITLE TEXT-001.
    PARAMETER:      P_LAND LIKE KNA1-LAND1 ,
                    P_REGIO LIKE KNA1-REGIO  ,
                    P_PSTLZ LIKE KNA1-PSTLZ ,
                    P_ORT01 LIKE KNA1-ORT01 .
    SELECTION-SCREEN END OF BLOCK BL1.
    SELECTION-SCREEN SKIP 2.
    SELECTION-SCREEN BEGIN OF BLOCK BL2 WITH FRAME TITLE TEXT-001.
    PARAMETERS:    P_KDGR AS CHECKBOX MODIF ID SC1 USER-COMMAND SELTYPE,
                   P_BCS  AS CHECKBOX MODIF ID SC2,
                   P_BDS  AS CHECKBOX MODIF ID SC2,
                   P_BDC  AS CHECKBOX MODIF ID SC2,
                   P_ALL  AS CHECKBOX MODIF ID SC3 USER-COMMAND SELTYPE.
    SELECTION-SCREEN END OF BLOCK BL2.
    AT SELECTION-SCREEN OUTPUT.
        IF P_KDGR = 'X'.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1  = 'SC1'.
              SCREEN-INPUT   = '1'.
              SCREEN-OUTPUT  = '1'.
              MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1  = 'SC2'.
              SCREEN-INPUT   = '0'.
              SCREEN-OUTPUT  = '1'.
              MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1 = 'SC3'.
              SCREEN-INPUT   = '0'.
              SCREEN-OUTPUT  = '1'.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        ELSEIF P_ALL = 'X'.
          LOOP AT SCREEN.
            IF SCREEN-GROUP1  = 'SC1'.
              SCREEN-INPUT   = '0'.
              SCREEN-OUTPUT  = '1'.
              MODIFY SCREEN.
            ENDIF.
            IF SCREEN-GROUP1  = 'SC2'.
              SCREEN-INPUT   = '0'.
              SCREEN-OUTPUT  = '1'.
              MODIFY SCREEN.
            ENDIF.
          ENDLOOP.
        ENDIF.
    Reward points if is useful.
    Regards,
    Vasanth

  • 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,

  • 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

  • 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

  • Dynamic creation of selection screen by using POWL-Personal Object Work Lis

    Hi Expert,
    I am using POWL to display Report.For that there is one selection screen and once the user press enter a report will display.
    In this case i am desiging the selection screen but not able to Hide/Display fields on the basis of user action on the selection screen input/Drop down selection.
    Can u plz tell me how i can handle redesigning of selestion screeen depending on user interaction.
    Thanks
    Mahesh

    Hi,
    I want to hide selection screen field depending on the user action on the drop down.
    Also there is a check box in the selection screen,if the user check that check box then 2 fields in ALV will not display otherwise it will display.
    Thanks

Maybe you are looking for