How can I create a screen a select option inside a screen

Hello experts,
I have a screen '0100' and i need to create a select-options inside how can i do this? thanks in advance'

Well did you search the forum first?
[select-option Dialog programming|
http://wiki.sdn.sap.com/wiki/display/stage/SELECT-OPTIONSonDialogprogrammingscreen]
And you can most definitely find more on SCN.

Similar Messages

  • How can i create splash screen using netbean?

    how can i create splash screen using netbean?

    Welcome to the Sun forums.
    gabbyndu wrote:
    how can i create splash screen..Java 6 offers a splashscreen functionality. See [New Splash-Screen Functionality in Java SE 6|http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/splashscreen/] *(<- link)* for details.
    [Java Web Start|http://java.sun.com/javase/technologies/desktop/javawebstart/index.jsp] has offered splash screens to applications since Java 1.2. See [How can I provide my own splash screen?|http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/faq.html#206] in the JWS FAQ for more details.
    .. using netbean?We don't support Netbeans here. Ask that on a [Netbeans forum|http://forums.netbeans.org/].

  • How can you create a screen width slide show?

    I have created screen width images that resize depending on the screen resolution using the fill option.
    However, when I use any of the slide show widgets and size them to the edge of the site, it doesn't fill the screen width on the live mode. It always leaves a margin.
    What can I do?

    Widgets do not support full width or responsive. I hope they do support it in the near future though.

  • How can I create a box with the option of either a check or "N/A"?

    Hi there guys, just a quick question which has been bugging me for days now!
    I have a form in which I need to have a check box, but when the box is not checked I need it to show up as "N/A", is that possible?
    I have tried using a dropdown box instead. Making one of the options a capital "P" and setting the font to Wingdings 2 makes it appear as a check. This however makes it impossible for me to type in "N/A" as the other option because the font is set to Wingdings 2!
    Any help would be greatly appreciated
    I am using Adobe Acrobat X Pro on Windows 7
    Thank you
    Clint

    Have you ever seen a paper form work this way?
    Have you ever seen an electronic form work this way?
    You can have a text field next to the check box that show "N/A" when the check box is not selected.
    Or if you like to do a lot of coding, use a check box and then overlay the check box with a text box to display the "N/A" and you can work out how switch between the 2 fields if one wants to uncheck the item.

  • How can I create sync account, without sync option?

    I am currently in IE, but running firefox 25.
    I like to sync my firefox data.
    However, the problem is, that I am blind, and cannot create sync account, do the captcha.
    I am running addon web visum, which is solving captchas for me, however, on creating sync account, it wont work, because this window is not standard webpage interface.
    The solution will be, if I can create sync account via web interface, by visiting some page, for example, accounts.mozzilla.org/signup
    I also tried audio captcha, but its sooo bad quality, and I cannot understand...
    I hope that someone will help.

    hello agasoft, I'm sorry that the signup process makes it so difficult - as far as I know it's only possible to open a sync account from within the program though.
    if you want to, I could also assist you in setting up the account - it would work something like this:
    # I contact you per personal message and ask for your email-address.
    # I set up an account and send you the password and the recovery key for the account.
    # you can then login at the website https://account.services.mozilla.com/ and change the password for your account.
    # you can connect your firefox to the existing sync account by going to ''firefox > options > sync > set-up sync > I have an account > I don't have the device with me''. there you'll have to fill in the account's credentials (mail-address, password & recovery key).
    # finally if the account is set-up, you can then go to ''firefox > options > sync > manage my account > my recovery key''. in this window please choose to generate a new recovery key. please also save the new recovery key in a secure place in case you'd need it sometime in the future...

  • How can I create a full-screen view of Keynote slide in Snow Leopard?

    How can I create a full-screen view of my Keynote slides in Snow Leopard?
    I'm going to be importing into ScreenFlow to create a video.
    Thank you!!

    Welcome to Apple Support Communities.
    Do you want static screen captures or motion video of slides as titles, bullet points, and the like are presented?
    Run the Keynote slide presentation in full-screen mode, then...
    Static full-screen captures - use Command+Shift+3.
    Static partial-screen captures - use Command+Shift+4 and use cursor to select the area of the screen to capture.
    If you want motion video as builds occur, why not use Keynote's built-in Share, Export function?
    (I'm on iLife '09.)
    Also understand that the default slide format for Keynote is 1024x768, not full-screen MacBook 1280x800 screen size, so you'll have wide black borders unless you change the default size or crop the finished screen captures.
    Message was edited by: kostby

  • ABAP: How can I create screen like COOIS parameter

    Dear ABAP Experrts,
    How can I create same paremeter screen like COOIS. E,g in production order parameter screen there are many options  but when I create a parameter
    in ABAP program
    SELECT-OPTIONS:
    SO_AUFNR FOR AFKO-AUFNR,
    only one column is displayed . How can I  show same parameter screen for production order.
    Regards
    Aneel

    Dear Mehwish ,
    Thanks for your help. How can I find matchcode for my other columns.?
    I mean I want to use some other parameters also like
    SO_MATNR FOR MAKT-MATNR
    SO_WERKS  FOR T001W-WERKS,
    SO_PWERK  FOR T001W-WERKS,
    SO_AUART FOR T003O-AUART,
    SO_FEVOR FOR T024F-FEVOR,
    SO_VBAK FOR VBAK-VBELN.
    How can I find matchcode object.?
    Regards,
    Aneel

  • How can we read the screen field values from the report selection screen wi

    Hi expart,
    How can we read the screen field values from the report selection screen with out having an ENTER button pressed  .
    Regards
    Razz

    use this code...
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_posnr.
    **Read the Values of the SCREEN FIELDs
    CALL FUNCTION 'DYNP_VALUES_READ'

  • How can we use list box on selection screen

    hi, howe can we use list box on selection screen and how can we populate the dat ainto the list box and how can we retrive data based on list box from ther database.
    thanks in advance
    raju

    Use the VRM_SET_VALUES function module.
    DATA: list              TYPE vrm_values,
          value             LIKE LINE OF list.
               AT SELECTION SCREEN OUTPUT
    AT SELECTION-SCREEN OUTPUT.
      name = 'P_OBJECT'.
      CLEAR list.
      REFRESH list.
      CLEAR value.
      value-key = '1'.
      value-text = 'Development Class'.
      APPEND value TO list.
      CLEAR value.
      value-key = '2'.
      value-text = 'Program'.
      APPEND value TO list.
      CLEAR value.
      value-key = '3'.
      value-text = 'Function Module'.
      APPEND value TO list.
      CLEAR value.
      value-key = '4'.
      value-text = 'Database Table'.
      APPEND value TO list.
      CLEAR value.
      value-key = '5'.
      value-text = 'Structure'.
      APPEND value TO list.
      CLEAR value.
      value-key = '6'.
      value-text = 'View'.
      APPEND value TO list.
      CLEAR value.
      value-key = '7'.
      value-text = 'Data Element'.
      APPEND value TO list.
      CLEAR value.
      value-key = '8'.
      value-text = 'Table Type'.
      APPEND value TO list.
      CLEAR value.
      value-key = '9'.
      value-text = 'Class / Interface'.
      APPEND value TO list.
      CLEAR value.
      value-key = '10'.
      value-text = 'Type Group'.
      APPEND value TO list.
      CLEAR value.
      value-key = '11'.
      value-text = 'Domain'.
      APPEND value TO list.
      CLEAR value.
      value-key = '12'.
      value-text = 'Search Help'.
      APPEND value TO list.
      CLEAR value.
      value-key = '13'.
      value-text = 'Lock Object'.
      APPEND value TO list.
      CALL FUNCTION 'VRM_SET_VALUES'
        EXPORTING
          id              = name
          values          = list
        EXCEPTIONS
          id_illegal_name = 1
          OTHERS          = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.

  • How can I easily video screen capture my interactions on an ipad2 so I can play back to demo content I have created?

    how can I easily video screen capture my interactions on an ipad2 so I can play back to demo content I have created?

    Hi,
    Thanks for the response but I know how to do a screen capture but wanted to be able to capture myself interacting with the ipad ansd turn into a movie i.e. showing all the movement / animation etc as I interact.
    I have now figured out a good solution. Using AirServer you can wirelessly connect you ipad to your mac/pc then using a video capture solution like Snapz Pro you can capture what you are doing to create the video.
    Cheers

  • How can I do a screen capture to create an iPad tutorial for our 86 year old auntie?

    How can I capture iPad screens to create a simple tutorial for our 86 year young Auntie?

    You also might want to check put the iPad tutorial videos on the apple site - they do a great job of showing how it works.
    http://www.apple.com/ipad/guided-tours/

  • How can i create a new password?

    I forgot my password, how can i create a new one?

    On Lion or Mountain Lion, you use the following technique to reset the Administrators password:
    Boot to your Recovery Partition, by holding down the Option key while starting, and then selecting the Recovery HD as the boot choice.
    Once booted, at the top of the screen is a menu ..., select Utilities / Terminal from the menu bar.
    In the Terminal window, type “resetpassword” (without the quotes) and press return. A “Reset Password” window will open. Select your boot volume (your SSD drive) if it is not already selected. Select your administrators username from the menu labeled “Select the user account” if it is not already selected. Follow the prompts to reset the password. Restart the computer from the apple menu.

  • How can you create a writable PDF document from a PPT presentation ?

    How can you create a writable PDF document from a PPT presentation ? Upper part with the image , lower part with a free space in order to take notes for students during presentation or course.
    Thanks.
    B

    You can make a PDF file out of you notes and handouts but using the Adobe PDF printer.
    Open your PowerPoint Document then go to “File” “Print”
    Select ‘Adobe PDF” Printer
    Under slides, select which way you want to print. Note it will not print to a printer but to a PDF file.
    After then go into printer Properties and Setup PDF properties, do the following: (see second image below)
    Default: PDF/A 1-b
    Adobe Security: none (change as needed)
    Adobe Output folder: Prompt for Adobe file name
    Adobe Page size: Letter (change as needed)
    Check the following check boxes
    View Adobe PDf Results,
    Add Document Information,
    Rely on system fonts only,
    Delete Log files for successful jobs.
    Select OK
    A pop will ask you where you want to save the document. The file extension should be PDF. After giving the file name select okay and the file should popup as a PDF. Down side is if you want to speaker notes included then you will have to do another file, like wise with just screen shots then combine into one PDF document.
    I used Acrobat IX Pro. So to do this you need Acrobat IX or X Pro.
    Hope this will help.
    Tiger26

  • How can you create a playlist with music and music video and play those from same playlist through Apple TV?

    How can you create a playlist on Ipod touch with music and music video,  and play those from same playlist through Apple TV?  I can download, create a playlist with both music and music video, stream that through the Apple TV with no problem.  The sound and the information show up on the TV, but when it gets to a music video, it only shows the information and "artwork".
    I also have a video playlist - videos play fine through the Apple TV, but will not shuffle through all videos - continues to repeat the same one.  I have most definitely selected shuffle in both locations - from the playlist and on the ipod video screen while video is playing.

    I finally got it... had to sync the photos with the music in iMovie, arrange the voiceover in GarageBand then export to iTunes, and then I was able to put it all together in iMovie and burn in iDVD... had a few glitches along the way but finally finished : )
    Message was edited by: jpewald

  • How can i create the blue "I"-Button for the Documentation in a view

    How can i create the blue "I"-Button for the documentation in a view?
    I want to prepare the button with user specified Information...
    and where must be create the documentation?
    thanks
    Edited by: DDC-TD on Apr 24, 2008 10:22 PM

    you have not mentioned where do u want the " I " information button ,
    1. If u want for a report , u can get the information button on selection-screen only .
       if u goto se38 on the mail screen u will find a radio button for documentaion ,
    when u select it and click 'create' or 'change' , an editor will open and u can document anything there ....
    2. Or specify where u want  info button .
    thanks ,
    reward points if usefull.

Maybe you are looking for

  • 5800 email beep

    Every time I get a new email the phone beeps, even though the option "E-mail alert tone" in the meeting profile I am using is set to "off". Thanks in advance

  • Not charging 6.1

    Hi, I installed iOS 6.1 yesterday morning and since then I have had real issues charging. I have and iPhone 4S and the update was done over the air while plugged in to the charger (wall socket). I noticed last night that despite plugging it in it wou

  • HELP  --  KEEP LOOSING PICTURES  -- after loading show up w/ question mark

    Anyone ??!! I have worked on this document for over 100 hours and made several saves in between, but keep loosing pictures all the time? Lay-out stays OK, but the locations for many of the pics are indicated with gray squares and question marks!! Is

  • Ifsconfig : IFS 1.1.9 & RedHat 7.1 problem

    Hi, I'm currently trying to install a new development platform using the latest goodies (RedHat 7.1, ifs 1.1.9, latest IBM 1.3 JVM and so on). Using the official RedHat workaround (+ unset LANG) Oracle and IFS both install fine. However when I try to

  • Adobe Site Problems

    I have noticed that, every time I try to access the site www.adobe.com with Internet Explorer 7, Internet Explorer locks up, and I must do a ctrl-alt-del to terminate Internet Explorer. This problem happens consistently, and it has done so over sever