How to change Select-Optio ?

Hi ,
How to change Select-Option statement as a Parameter statement?

Hi,
Decalare it as
1)If you want your SELECT -OPTIONS to behave like parameters. USe the option.
SELECT-OPTIONS ..... NO INTERVALS NO-EXTENSION
REPORT abc.
DATA : v_enterpr(30) TYPE c,
v_divin(30) TYPE c.
SELECT-OPTIONS : s_enterp FOR v_enterpr NO INTERVALS NO-EXTENSION ,
                 s_divin  FOR v_divin NO INTERVALS NO-EXTENSION .
2)If you want to have it as SELECT-OPTIONS.
Then
REPORT abc.
DATA : v_enterpr(30) TYPE c,
v_divin(30) TYPE c.
SELECT-OPTIONS : s_enterp FOR v_enterpr ,
                 s_divin  FOR v_divin .
NO-EXTENSION
The user can only make an entry on one line. Calling the additional "Multiple Selection" screen is not supported and no pushbutton for this appears on the selection screen.
NO INTERVALS
The selection option is displayed on the selection screen without a 'to' field. The pushbutton for calling the "Multiple Selection" screen appears immediately after the 'from' field.
This addition thus allows you to generate a simplified display on the selection screen. This is particularly useful if you are not making any range selections for this selection option.
If u have both No-extension and No-interval it will behave like simple parameters stmt.
Regards,
Omkar.

Similar Messages

  • How to change "Select a content category " text

    Hi folks,
    I really appreciate the support community, as I did deeper and deeper into the produce I've seen the same handful of names pop up across the board! Thanks for all your help!
    I was wondering how to change the "Select a content category>>" text that displays in a traditional skin next to your content categories upon generation. Specifically this:
    Is there a way to edit the text? Mine are focused on government levels and I'd like to make it easier for users.
    Thanks! Happy New Year!

    Hi there
    I believe you do it as follows:
    Click File > Project Settings.
    Ensure the General tab has focus.
    Click the Advanced... button.
    Click the LNG File tab.
    Scroll the list to the [WebHelp] section.
    Locate the item that reads: ContentCategoryList=Select a content category.
    Click on it to select it.
    Click the Edit button.
    Change the text following the equals sign it to what you want it to read.
    ContentCategoryList=Change this text
    Press Enter to accept the change.
    Click OK to dismiss the dialogs.
    Generate and test!
    Hope this helps... Rick

  • How to change selection screen on LDB

    Hi everybody,
    Does anyone know how to change the selection screen on a ABAP report that uses LDB ?
    What I want to do is to suppress some fields and buttons and to add hidden fields.
    Thanks for your help.
    BT

    Hi bruno,
    1. use like this :
    2.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
      IF SCREEN-NAME = 'MYFIELD'.
      SCREEN-INPUT = 0.
      SCREEN-INVISIBLE = 1.
      MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
    regards,
    amit m.

  • How to change selected pane's color in a JTabbedPane ?

    Hi there !
    I'm tryin' to change selected pane's color (default : light gray) in a JTabbedPane.
    I tried to use the following code :
    UIManager.put("TabbedPane.selected", new Color(255,255,200));
    but it doesn't seem to work.
    Any idea ?
    Thanks.

    For me, there is no TabbedPane.selected filed in TabnedPaneUI....
    try with
    UIManager.put("TabbedPane.highlight", new Color(255,255,200));
    or
    UIManager.put("TabbedPane.background", new Color(255,255,200));

  • How to change Selection Criteria for a Business Content Data Source

    Hi Experts
    I am extracting data using 0CO_OM_CCA_9 Datasource. I would like to be able to select a range of Company Code (BUKRS) to pull in, but I cannot find a way to make certain fields available as selection criteria. When I go into "Change DataSource", I can unselect fields, and even select certain fields, but the option for most is grayed out.
    How can I make this field available as selection criteria in Infopackage?
    Thanks for the help.

    Its not that simple to enable a new selection for a Business Content Datasource, if its not already provided by SAP. Enabling new fields for selection should be accompanied by corresponding extractor code changes to process those field selections and use those selections throughout the extraction process.
    Solution for your problem would be create a custom extractor with all the logic of standard extractor (function module BWOMD_GET_CTRCSTA1 for 0CO_OM_CCA_9) and extra logic to process the new fields for selection.
    Hope it helps!

  • Report Painter: How to change Selection screen.

    Hi All,
    I would like to know  the Process, how to add one more filed in the selection of the Report.
    Now  i have,
    selection.
    mat1:----
    mat2:----
    mat3:----
    date:----
      like that , Now i want to add mat4 in the Report Painter.
    thanks in adv..
    regards
    Prabhu

    Hi Mann,
    Thanks for reply.I have one doubt .
    1. I have already created variable for  characteristics figures,
    say exp
    col1->char001->&mat1
                        &mat2
                        &mat3
    now i want to add one more &mat4 for this chat.Figures.
    2.What is differance b/w set and Basic sets.How can i find basic sets of a Set.
    3.How can i att's chat.figures to Basic sets.
    plz help me to reslove this issue.
    regards
    Prabhu

  • How to change selected images to B&W

    I have a collection of say 20 color images. I would like to apply the same Black and White treatment to all 20. When I am done, I would like to have the original 20 color images and their 20 black and white conversions in the same collection. Is this possible? And could you please explain?
    Thanks,
    pat
    PS I am new to Lightroom 3.3

    Select all the images to be changed (Ctl-A selects all or Ctl-Click selects out of sequence images). Right click, choose Create Vitrual copies. Press D to go to the Develop module. All the Virtual Copies will be selected. The first selected Virtual Copy will be displayed. Make the B&W changes to the first image. When done select SYNC. From the Sync dialog box choose uncheck all. Then select the two B&W choices (sorry, I closed that computer so I can't see Lightroom to get the exact verbage). All selected images will have the B&W setting applied.

  • How to change select upto 1 rows into read statement

    Dear all,
    Table A contains many dates for given salesdocumentnumber and
    Table B contains many dates for given salesdocumentnumber .
    Table A and Table B contains same entries .II need maxdate for all salesdocument in Table A comparing Table A and Table B
    TableA_alias was sorted and deleted adjacent duplicates.
    loop at TableA_alias
    select pdate into variable_1 from table Table_A
    UP TO 1 ROWS order by pdate descending
      where
    it_pdate-salesdoc = TableA_alias-salesdoc and
    it_pdate-salesitem = TableA_alias-salesitem and
    it_pdate-sline = TableA_alias-sline .
    select pdate into variable_2 from table Table_B
    UP TO 1 ROWS order by pdate descending
    where
    it_pdate-salesdoc = TableA_alias-salesdoc and
    it_pdate-salesitem = TableA_alias-salesitem and
    it_pdate-sline = TableA_alias-sline .
    if variable_1 > variable_2.
       TableA_alias-pdate = variable_1.
    else.
       TableA_alias-pdate = variable_2.
    endif.
    endloop.
    Could anyone help me to make this code more performance tuned by using Read statement
    Regards
    Bala
    Moderator message - Please see Please Read before Posting in the Performance and Tuning Forum before posting - post locked
    Edited by: Rob Burbank on Nov 16, 2009 9:19 AM

    hi Siegfried,
    i need to make this code ,performance wise more optimized. could you please suggest how can i improve this
    loop at it_pdate_temp into wa_pdate_temp.
    select /bic/zpviewdt from  /BIC/AZVFOSDP100 into variable_1
    UP TO 1 ROWS
      where
      doc_number  = wa_pdate_temp-salesdoc and
    s_ord_item = wa_pdate_temp-salesitem and
    sched_line = wa_pdate_temp-sline
      order by /bic/zpviewdt descending .
    endselect.
    select /bic/zpviewdt from  /bic/azvfosp1w00 into variable_2
    UP TO 1 ROWS
       where
      doc_number  = wa_pdate_temp-salesdoc and
    s_ord_item = wa_pdate_temp-salesitem and
    sched_line = wa_pdate_temp-sline
      order by /bic/zpviewdt descending .
      endselect.
    if variable_1 > variable_2.
       wa_pdate_temp-pdate = variable_1.
    else.
       wa_pdate_temp-pdate = variable_2.
    endif.
    endloop.

  • How to change selected item color and the selected area size of listview

    What i really need to do is change the following things in XMAL.
    1. Changing the selection color
    2. Size of selected area 
    Thanks in advance.
    Dileepa S. Rajapaksa
    Trainee Developer
    Microsoft, Sri Lanka
    Twitter : @dsrajapaksa
    Blog : http://www.dileepatech.net

    Hi Dileepa,
    It is possible by customize the control by its template, see this for more information:
    ListViewItem styles and templates.
    By changing the selected visual state, you can change the color of the ListView item background, also the size of the selected item.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to change the default color of the selected row

    hi all,
    I need to know how to change the default color(yellow) of the selected row in a table component.whether i need to change anything in the stylesheet.If so, where should i make the changes in the stylesheet.
    thanks and regards,
    rpk

    The chart colors are being referred to *'palette.cxml'* file in these directories
    BI_HOME\web\app\res\s_oracle10\chartsupport
    BI_HOME\oc4j_bi\j2ee\home\applications\analytics\analytics\res\s_oracle10\chartsupport
    you can change to your custom colors.
    Restart OC4J and PS to make the new ones work..
    Regards,
    Raghu

  • How do i select a whole heap of bands and change there genre in one shot .

    how do i select a whole heap of bands and change there genre in one shot like old itunes, before i was able to hold ctrl and select all the bands, now i have to do it individually or go to songs and select them individually.
    ctrl or shift doesnt do anything anymore.
    thaks for your help.

    Use the Songs or List views.
    tt2

  • Hi, I recently changed my username for my iTunes/iCloud account. Can anyone tell me how i change the username on my iCloud iPad? When I go onto setting to change it it keeps the username grey so I can't even select it?

    Hi, I recently changed my username for my iTunes/iCloud account. Can anyone tell me how i change the username on my iCloud iPad? When I go onto setting to change it it keeps the username grey so I can't even select it?

    Welcome to the Apple Community.
    In order to change your Apple ID or password for your iCloud account on your iOS device, you need to delete the account from your iOS device first, then add it back using your updated details. (Settings > iCloud, scroll down and hit "Delete Account")
    Providing you are simply updating your existing details and not changing to another account, when you delete your account, all the data that is synced with iCloud will also be deleted from the device (but not from iCloud), but will be synced back to your device when you login again.
    In order to change your Apple ID or password for your iCloud account on your computer, you need to sign out of the account from your computer first, then sign back in using your updated details. (System Preferences > iCloud, click the sign out button)
    In order to change your Apple ID or password for your iTunes account on your iOS device, you need to sign out from your iOS device first, then sign back in using your updated details. (Settings > iTunes & App store, scroll down and tap your ID)
    If you are using iMessages or FaceTime, you will also need to log out and into your ID there too.

  • How do I select two-sided printing now that I have Adobe Reader? I didn't know it would change my pr

    How do I select two-sided printing now that I have Adobe Reader? I didn't know it would change my print function at all and am curious why it does. My HP printer always did this and on the old screen there was a check off box for two-sided printing. Thank you!

    Hello Mickeyps
    What's the Adobe Reader version at your end? I am using Reader 11.0.06 and I do see this option. See below.
    Regards,
    Deepak

  • How to change the text of a user defined field in dynamic selections?

    Logical Database PSJ is used by t code CJI3 - we added a couple of user fields into the dynamic selections of CJI3.
    Now - how to change the text of this user filed (USR01 of structure PRSP_R in logical database PSJ)?
    Found an OSS note - 86980 - that tells that this is not possible.
    But when we read the documentation on the user field (CJI3 - dynamic selections  - double click on user field - F1), it shows the following text:
    User-defined field in which you can enter general information with a length of up to 20 characters.
    Dependencies
    The names (key words) for  user-defined fields depend on the field key.
    Now the question is where to change the field key..
    Thanks,
    Ven

    Madhu - you did not get the question I think.
    Anyways - I found an OSS note 1266643 - this code change should take care of the issue - it will then reflect the details maintained in custoizng at transaction code OPS1..
    Thanks,

  • How to change the image of a selected File/Directory in JFileChooser while

    Hi all,
    I am trying to customize JFileChooser. Basically, I want to display a checked Icon for a selected directory(s) in JFileChooser
    I know that fileView class returns icon for directory/files, but I am not sure how to change their images on selection.
    your help is appreciated.
    Ramesh

    could you please anyone help me with this. I search all the web but I was not successful to find anything that would help me to create a custom renderer for JList component inside JFileChooser..
    if you can give me some reference websites that would be great.
    Ramesh

Maybe you are looking for

  • Video Ipod to tv

    Hey help me, Ok I have the correct cable w/video and audio to tv hooked up and all I get is wavy lines and a terrible sound coming out of my speakers. When I have just the audio hooked up without video, it works. I have the ipod settings set correctl

  • How can I disable ctrl+alt+del and other keys

    I need help on how to disable some keyboard key combinations (ctrl+alt+del)in particular. Disabling other keyboard keys is equally welcomed. Also how can I disable Windows 2000/XP's Task Manager from exposing my running program to be terminated. Than

  • Making a trivia game.

    I was looking at making a sports trivia java game. I want to make it so it starts with 20 seconds and goes down and the faster you answer it the seconds left equals how many points you get. Does anyone have any left over code or a similar style of ga

  • Schedule SQL Statement

    I want to run an simple update query at 0000 hrs every night. Is there any simple solution instead of creating a JOB? PL SQL or Trigger Based Solution....Pls Help...Regards

  • Why do i get a message trial version

    HELP! I update 5.3 to 5.4 have official license numbers even have CC. Why do i get a message Trial version after the update. I have reinstalled the version, cleaned the version and even reinstalled again. Have had a conversation with your client serv