Initilization of select-options help req?

Hi
I have to initilized the select options  as default value:
1.doc type : bsart with a 'zimp'  .2.doc date :bedat with sy-datum.
I had used :
Initilization.
bsart-low = 'zimp' .
bedat-low = 'sy-datum'.
But its not working.Plz tell me the way?
regards
vipin

Hi
SELECT-OPTION ALLWAYS LOOKS LIKE A STRUCTURE
WHICH IS HAVING FILEDS LIKE
<b>LOW
HIGH
OPTION
SIGN</b>
Initilization.
bsart-low = 'zimp' .
<b>BSART-SIGN = EQ OR BT OR LT ETC..
BSART-OPTION = I OR E
APPEND BSART .
CLEAR BSART</b>
bedat-low = 'sy-datum'.
<b>BEDAT-OPTION = I OR E
BEDAT-SIGN = EQ ETC..
APPEND BEDAT
CLEAR BEDAT</b>
<b>rEWARD IF USEFULL</b>.

Similar Messages

  • IPad 2 -- can't type -- can't select options  HELP

    iPad 2 goes to home screen when using virtual keyboard for ANY type of input -- or when selecting options such as Reset on the settings screen. Have closed all apps and shut down using power and home buttons at the same time -- twice.  Trying to use Safari, Apps Store, Setting screen, or email is totally useless.  Just happened today.  No new apps, no updates.  Can read email, plaz games, etc.  But cannot do any type of input such as URL, address,  search, or menu commands such as Reset or Delete.  
    We are traveling and desperate to use this.  Is there any hope?  Please help.

    bob5164 wrote:
    Have closed all apps and shut down using power and home buttons at the same time -- twice. 
    Shutting down using the buttons is one thing, but did you try resetting the iPad in this fashion....
    Hold down on the sleep and home buttons at the same time for about 10 seconds until the Apple logo appears on the screen. Do not let go of the buttons until the Apple logo appears.
    Did you try it that way?
    Holding both buttons until the iPad shuts down doesn't really reset anything at all, assuming that the device actually does shut down that is.

  • Select-Options Help

    Hi.
    I have this small program with a select-options s_tran.
    I need to call function Z_UNLOCK for each entry in s_tran.
    How can I make that?
    Thanks
    Best regards
    PARAMETERS: p_warn TYPE ltap-LGNUM.
    SELECT-OPTIONS:  s_tran FOR LTAK-tanum.
    loop at ......................?????
        CALL FUNCTION 'Z_UNLOCK'
          EXPORTING
            iv_warehouse = p_warn
            iv_tanum     = s_tran-tanum
            language     = sy-langu
          IMPORTING
            return       = return.
        IF return-type = ''.
          EXIT.
        ENDIF.
    Endloop.

    hi,
    try to use this code:
    >PARAMETERS: p_warn TYPE ltap-LGNUM.
    >SELECT-OPTIONS: s_tran FOR LTAK-tanum.
    >data: lt_ltak type ltak occurs 0 with header line.
    >start-of-selection.
    >select * from ltak into table lt_ltak where tanum in s_tran.
    >
    >
    >loop at lt_ltak.
    >
    >CALL FUNCTION 'Z_UNLOCK'
    >EXPORTING
    >iv_warehouse = p_warn
    >iv_tanum = lt_ltak-tanum
    >language = sy-langu
    >IMPORTING
    >return = return.
    >
    >IF return-type = ''.
    >EXIT.
    >ENDIF.
    >
    >Endloop.
    bye
    Marco

  • Select Option Help

    hi experts,
    i need to make my select option  LOW inactive and user should not edit ..

    Check the below code.
    REPORT  zaatest.
    DATA: v_matnr TYPE matnr.
    SELECT-OPTIONS: s_matnr FOR v_matnr.
    INITIALIZATION.
      s_matnr-low = '000031'.
      APPEND s_matnr.
      LOOP AT SCREEN.
        IF screen-name = 'S_MATNR-LOW'.
          screen-input = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.

  • Selection option help

    hello friends,
    my declaration for input of company code  is like below:
    s_bukrs FOR t001-bukrs OBLIGATORY.
    now its allowing me to enter manually the company code or
    i can choose from the F4 help.
    but my requirement is that, user shopuld not be allowed to
    manually enter the compcode,
    but he should be allowed to choose from the F4 help.
    had any oe face this situation earlier.
    plz help.
    thank you.

    Hi Sanjana,  
    The requirement needs to be slightly changed and you need to check if the value entered exists in database. What I mean to say is that if the user manually enters the value, it needs to be checked for existence in the corresponding table.
         You can do this validation (check) in the even AT SELECTION-SCREEN.
         Here at this event the value is checked for the existence in dB and then is allowed to go further else an error can be thrown back.
         Here goes the code to help you.  
    *data declaration.
    v_bukrslow type knvv-bukrs.
    v_bukrshigh type knvv-bukrs.
    at selection-screen.
    IF s_bukrs-low IS NOT INITIAL.
        SELECT SINGLE bukrs
                FROM knvv
                INTO v_bukrslow
                WHERE bukrs = s_bukrs-low.
        IF v_bukrslow IS INITIAL.
          MESSAGE 'Low Value doesnot exist' TYPE 'E'.
        ENDIF.
      ENDIF.
      IF s_bukrs-high IS NOT INITIAL.
        SELECT SINGLE bukrs
                FROM knvv
                INTO v_bukrshigh
                WHERE bukrs = s_bukrs-high.
        IF v_bukrshigh IS INITIAL.
          MESSAGE 'High Value doesnot exist' TYPE 'E'.
        ENDIF.
        ENDIF.
      ENDIF.
    This should solve your query and set you sail.
    Reward points if useful.
    Thanks,
    Tej..

  • To determine the count when range is present in the select option

    hai!
         i want to know how we can determine the count(number of values) when range is present in the select option.
    helpful answers will be rewarded.
    thanks & regards,
    raghavendra kulkarni.

    refer my reply in the other thread
    select <field>
    from <master table>
    into table itab
    where <key field> in <range/select-option> .
    describe table itab lines v_lines.
    or
    count = sy-dbcnt.
    Regards,
    ravi

  • Report help for multiple Date Select options

    Hi Friends,
    For a particular year wise report, the client wants 12 date select-options which are changeable and informal every year .The report will also be displayed as per the given date selection period wise. Please help me how to fetch the datas from the table as per the given selection period. Currently the report have one date select-option where the user gives selection range as 1.04 to 31.03. It's related to EB power consumption report and hence the new requirement on date selection which are informal and not a fixed date of every year.
    Ex:Selection-Screen
    Period 1 : 08.04.2008 to 12.05.2008
    Period 2: 12.05.2008 to 20.06.2008
    Period 3: 21.06.2008 to 28.07.2008
    Period 4: 29.07.2008 to 15.08.2008
    Period 5: 15.08.2008 to 21.09.2008
    Period 6 : 21.09.2008 to 14.10.2008
    The data will derive as per the above selection ranges.......
    Please advise with example.
    thanks & regards
    Sankar.

    >
    sankar babu wrote:
    > Ex:Selection-Screen
    > Period 1 : 08.04.2008 to 12.05.2008
    > Period 2: 12.05.2008 to 20.06.2008
    > Period 3: 21.06.2008 to 28.07.2008
    > Period 4: 29.07.2008 to 15.08.2008
    > Period 5: 15.08.2008 to 21.09.2008
    > Period 6 : 21.09.2008 to 14.10.2008
    Hi,
    In this case just derive all records matching dates between 08.04.2008 (low in first select-options) and 14.10.2008(high in last select-options.
    Also my advice is to use a single select-options and prompt the user to give the dates as ranges in the multiple entries dialog which can be opened by clicking the button on the right side of the select-options.
    Regards
    Karthik D

  • Search help is not coming while using select-options?

    Hi All,
    I am using select options in my selection screen, i used wdr_select_options, also i coded some parameter values also
    ( non select-options ). For that field i am not getting search help. If i create as normal i am getting? Suggestions pelase?
    Thanks,
    Venkat.

    HI
    what kind of search help is associated with the field.
    ADD_SELECTION_FIELD method has some specific parametrs for value_help
    give the input there and try again.
    these parameters are
    I_VALUE_HELP_TYPE
    I_VALUE_HELP_ID
    I_VALUE_HELP_MODE
    I_VALUE_HELP_STRUCTURE
    thanks
    sarbjeet dingh

  • HT2534 when i create the apple ID with the above procedure, i dont see "none" options under credit card selection, please help.

    When i create the apple ID with the above procedure, i dont see "none" options under credit card selection, please help.

    Apple needs people like you.

  • OVS Help in Select Options-Text to be Shown and Code to be captured

    Hello Experts,
    I am using Select options in web dynpro abap.
    On a particular View container i have added a selection field using ADD_SELECTION_FIELD which has an OVS help to it.
    The selection field is of type CODE.
    And on click of a button i am reading the select option fields using GET_RANGE_TABLE_OF_SEL_FIELD and assigining this to a
    field symbol which inturn is being set to an attribute.
    My requirement is to show the TEXT to the user and send the CODE to the method which is called
    when the button is clicked and a table is populated.
    Normally we can keep two attributes one for TEXT and the other for CODE but for Select options i am not very sure how this can be achieved.
    Because in select options we are reading the values present on the select option field and there may be multiple values.
    Please guide me through this.
    Thanks in Advance,
    Shravan

    Hello Shravan,
    This can be easily achieved if you convert the selection field to dropdown.
    Create a valueset containing the list of valid values and then pass this to the ADD_SELECTION_FIELD method
    "Creating valueset
    DATA lt_valueset TYPE wdy_key_value_table.
    DATA ls_valueset LIKE LINE OF lt_valueset.
      ls_valueset-key = 'EN'.
      ls_valueset-value = 'English'.
      APPEND ls_valueset TO lt_valueset.
    "Creating selection field as Dropdown
    lr_helper->add_selection_field( i_id = <ID>
                                                       it_result = lt_range
                                                       i_as_dropdown = abap_true
                                                      it_value_set = lt_valueset ).
    BR, Saravanan

  • Help on select options.

    Hi gurus!!
    I have a report where in i am putting the values in select-options. but yj eproblem i have is when i am not putting any values i am getting the correct output.
    but with the same data i am putting the values in low or high i am not getting any data..
    so i think i need to put all the entrioes of the select option in an internal table or ranges i dont know and then we give some code like
    ranges : ra_stotal for ztsd120-zlow.
    ra_stotal-sign = 'I'.
    ra_stotal-option = 'BT'.
    ra_stotal-low = zlow-low.
    ra_stotal-high = zlow-high.
    append ra_stotal.
    clear ra_stotal.
    Can anyone tell me if this is what i got to do if so how?
    or is there some other way out?

    Hi Mona,
    Please check the below code in BOLD letter....
    I guess you are having a problem in SELECT-OPTIONS because ...might be u r using EQ in where condition of your select query. Whenever u r using SELECT-OPTIONS, it should be "IN" in the where condition.
    Eg:-  SELECT  <field names>
               FROM MARA
               INTO TABLE  <it_tablename>
              WHERE matnr IN  s_matnr.
    Reward points for helpful answers.
    Regards,
    HK.

  • Help on Dynamic values in select options

    Hi All,
    I need help for the following.
    1. I have two select options for fields VBAK-VBELN and VBAK-ERDAT one after the other.
    2. When I select VBELN through F4 in the first select option then the corresponding ERDAT should be displayed in second select option.
    Please let me know how to do this

    Use the below code
    tables: pa0000, pa0001.
    parameters: p_chk1 as checkbox user-command rusr,
    p_chk2 as checkbox user-command rusr,
    p_chk3 as checkbox user-command rusr,
    p_chk4 as checkbox user-command rusr,
    p_chk5 as checkbox user-command rusr.
    selection-screen: begin of block blk1 with frame.
    select-options: s_pernr for pa0000-pernr modif id ABC,
    s_stat2 for pa0000-stat2 modif id DEF,
    s_werks for pa0001-werks modif id GHI,
    s_persg for pa0001-persg modif id JKL,
    s_persk for pa0001-persk modif id MNO.
    selection-screen: end of block blk1.
    AT SELECTION-SCREEN output.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = 'ABC'.
    IF p_chk1 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'DEF'.
    IF p_chk2 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'GHI'.
    IF p_chk3 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'JKL'.
    IF p_chk4 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = 'MNO'.
    IF p_chk5 = 'X'.
    SCREEN-ACTIVE = 1.
    ELSE.
    SCREEN-ACTIVE = 0.
    ENDIF.
    MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    *Note
    *Titles for check boxes and select options
    *P_CHK1 Personal Number
    *P_CHK2 Employment Status
    *P_CHK3 Personnel Area
    *P_CHK4 Employee Group
    *P_CHK5 Employee Sub group
    *S_PERNR Personal Number
    *S_PERSG Employee Group
    *S_PERSK Employee Sub group
    *S_STAT2 Employment Status
    *S_WERKS Personnel Area

  • Multiple records in select options-Urgent help

    Hi all,
       Iam using the following function module to get the set values. I need to pass multiple values in select options(ie) select options with no intervals. to the function module parameter Shortname. I have declared the variable which has to be passed as
         S_SETID   FOR  SETHEADER-SETNAME NO INTERVALS.
      The problem is when i use S_SETID-LOW the value is passed to the function module , but if multiple data is entered in the input then how to pass all the data to the function module. Please Help.

    Hi,
    Declare the Range in the Function module , then you can pass that Select-option fields to that ranges and use that in the Function module.
    Or you can use the RANGE_C8 for the Select-optios in the Function module, you can declare the Internal table with the type of RANGE_C8 in the tables parameter, then pass the Select-option to this Internal table
    If you want more length field then search based on RANGE_* then you will get all the Range Structure.
    Regards
    Sudheer

  • F4 help for date in select options..

    Hi Gurus,
    I want a search help for date field which belongs to select options.
    I know if it is a parameter we directly map the attribute value to that data element.
    Can some help me with this..
    Best Regards,
    Navin Fernandes.

    Hi Gurus,
    The select options works for date.. I got the solution.
    It directly relates to the default data dcitionary help.
    Got it from this example: WDR_TEST_SELECT_OPTIONS
    Best Regards,
    Navin Fernandes.

  • Can i have html code for date select options (SEARCH HELP)

    Hi frinds,
    I have a BSP Page with input as date.
    Can i have html code for date select options (SEARCH HELP)
    Moosa

    Hi
    Please find the sample code below.
    FROM DATE
          <htmlb:inputField id        = "dd"
                            width     = "45%"
                            type      = "DATE"
                            showHelp  = "X" <- Search help
                            alignment = "CENTER"
                            maxlength = "10"
                            disabled  = "TRUE"
                            value     = "<%= w_FROMDATE %>" />
    TO DATE
          <htmlb:inputField id        = "dd"
                            width     = "45%"
                            type      = "DATE"
                            showHelp  = "X"
                            alignment = "CENTER"
                            maxlength = "10"
                            disabled  = "TRUE"                      
    value     = "<%= w_TODATE %>" />
    Thanks
    kalyan

Maybe you are looking for

  • Mounting Disks in Tiger

    I am trying to move my Virtual Memory files to an underutilized internal disc in my G4 Mac. I believe I have the setup correct because the files are getting created in the desired directory location, but not on the desired disc. I'm pretty sure what

  • CCX Historical Reports issue

    Hi everyone, Hope everything is going ok. I have an issue with the Cisco Historical Report Tool with UCCX 7.0 Premium version.When I opened the tool I only see 3 reports. I only see the Application Performance Analysis, Traffic Analysis or Detailed C

  • Can i change color mode in keynote?

    Whenever I import pictures or logos to keynote, the colors turn out really skewed as from how they should look like. COuld someone please tell me what might be wrong and how I can fix that? I have tried several differnt options when I export files fr

  • Unable to connect after update to 8.0.13

    Hi, I've been using the previous version for some time without any issues. Since I updated to 8.0.13 I can't connect to my remote machine anymore. I'm using Yosemite 10.10.2. The remote machine is behind a TS gateway. When connecting, the app shows a

  • How can I unlock the Ipad

    My daughter accidentely locked the Ipad and forgot the code, now the Ipad says: connect to Itunes, and Itunes says: I cannot connect to the Ipad because it is locked. What do I do now?