Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8818023
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T04:59:44+00:00 2026-06-14T04:59:44+00:00

I’m trying to have the functionality of a normal SELECT-OPTIONS for a field inside

  • 0

I’m trying to have the functionality of a normal SELECT-OPTIONS for a field inside one of my regular screens.

I went over all the attributes of that I/O field in the Designer, but i couldn’t find anything.

I saw that some functionality of multiple choice is being offered to me, but it’s not complete, meaning that inside the prompts i no longer have the ability to use F4 to select my ranges visually.

Is what i’m trying to accomplish even possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T04:59:45+00:00Added an answer on June 14, 2026 at 4:59 am

    You can use a combination of function modules FREE_SELECTIONS_INIT and FREE_SELECTIONS_DIALOG. (You can trigger this off a button that you put on the dynpro). The function modules are a bit complicated, but they have online documentation.

    To extend your dynpro to simulate the select-option from a report selection screen, you can show the low and high values from the first row of the selected data.

    Here is an example to get you started (The documentation for function module FREE_SELECTIONS_DIALOG in fact contains some sample code):

    report  ztest_free_seldiag.
    
    data: lv_selid type RSDYNSEL-SELID.
    data: lt_fld type table of RSDSFIELDS.
    data: ls_fld type RSDSFIELDS.
    
    ls_fld-tablename = 'T001'.
    ls_fld-fieldname = 'BUKRS'.
    append ls_fld to lt_fld.
    
    call function 'FREE_SELECTIONS_INIT'
      EXPORTING
        KIND                           = 'F'
      IMPORTING
        SELECTION_ID                   = lv_selid
      TABLES
        FIELDS_TAB                     = lt_fld
     EXCEPTIONS
       FIELDS_INCOMPLETE              = 1
       FIELDS_NO_JOIN                 = 2
       FIELD_NOT_FOUND                = 3
       NO_TABLES                      = 4
       TABLE_NOT_FOUND                = 5
       EXPRESSION_NOT_SUPPORTED       = 6
       INCORRECT_EXPRESSION           = 7
       ILLEGAL_KIND                   = 8
       AREA_NOT_FOUND                 = 9
       INCONSISTENT_AREA              = 10
       KIND_F_NO_FIELDS_LEFT          = 11
       KIND_F_NO_FIELDS               = 12
       TOO_MANY_FIELDS                = 13
       DUP_FIELD                      = 14
       FIELD_NO_TYPE                  = 15
       FIELD_ILL_TYPE                 = 16
       DUP_EVENT_FIELD                = 17
       NODE_NOT_IN_LDB                = 18
       AREA_NO_FIELD                  = 19
       OTHERS                         = 20.
    if sy-subrc <> 0.
    * Implement suitable error handling here
      exit.
    endif.
    
    call function 'FREE_SELECTIONS_DIALOG'
      exporting
        selection_id                  = lv_selid
        TITLE                         = 'Select Company Code'
        AS_WINDOW                     = 'X'
        TREE_VISIBLE                  = ' '
    * IMPORTING
    *   WHERE_CLAUSES                 =
    *   EXPRESSIONS                   =
    *   FIELD_RANGES                  =
    *   NUMBER_OF_ACTIVE_FIELDS       =
      tables
        fields_tab                    = lt_fld
     EXCEPTIONS
       INTERNAL_ERROR                = 1
       NO_ACTION                     = 2
       SELID_NOT_FOUND               = 3
       ILLEGAL_STATUS                = 4
       OTHERS                        = 5.
    if sy-subrc <> 0.
      BREAK-POINT.
      exit.
    endif.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I'm trying to select an H1 element which is the second-child in its group
I have a text area in my form which accepts all possible characters from
I am trying to loop through a bunch of documents I have to put
I'm trying to convert HTML to plain text. I get many &\#8217; &\#8220; etc.
Let's say I'm outputting a post title and in our database, it's Hello Y&#8217;all
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.