Questions tagged [sap-selection-screens]
54 questions
2
votes
2 answers
Accept only special characters in Selection Screen parameter
I have one input field of type C.
PARAMETERS lv_sep TYPE c.
Field lv_sep should accept only special characters.
Can you help me how i can give this constraint?

Reshma Kumthekar
- 41
- 3
2
votes
2 answers
Hide a obligatory parameter when changing radio buttons
I have some radiobuttons and when I change between them some blocks appear/disappear.
However, if I set parameters as obligatory or required they do not hide unless I fill them. I want to make parameters required but I need to hide them when I…

luiserta
- 43
- 1
- 2
- 8
2
votes
2 answers
Calling the same LDB with different selection screens
I have a program that uses the Logical db F1S. That means that it can use an automatic magical include with the name DBF1SSEL.
So let's say i have 2 programs that need to use the logical database F1S. Would they be able to have 2 selection screens,…

vlad-ardelean
- 7,480
- 15
- 80
- 124
1
vote
2 answers
How to know if selection-screen is filled or not?
I have selection screen with SELECT-OPTION let say the name is selection_kunnr and I want to know if user filled that selection area or not
Note: this selection_kunnr is not a mandatory field. How can I deal with it?
I have tried so far
if…

yukou
- 305
- 3
- 6
- 17
1
vote
2 answers
How to grey out / disable a specific field on a selection screen in an enhancement
I want to grey out a field "REQUIREMENT QUANTITY" in an enhancement of COR1 and COR2. I have made a Z-table so that the IDs maintained in that Z-Table should not be able to make any changes and the field should be greyed out for those particular…

Uzair Qazi
- 11
- 1
1
vote
0 answers
How to add select options to the selection screen of ME55?
I need to add EBKN-SAKTO as a select option in the selection screen of ME55. Need help doing this.
I tried looking for enhancement spots and screen that exists in the program (RM06BF00) related to the selection screen but couldn't find any.
1
vote
2 answers
FREE SELECTIONS not getting Passed to SUBMIT Report FAGLL03
I am submitting the report "FAGL_ACCOUNT_ITEMS_GL" from a custom report on alv_user_command. From my report, I am unable to pass the FAGLL03 free selections.
trange_line-tablename = 'ACDOCA_FS'.
trange_frange_t_line-fieldname =…

Manoj
- 11
- 7
1
vote
1 answer
How can I change a field to be obligatory, after the value of one field has changed?
I am struggling to find out how to change a field to be obligatory on a selection screen, but I want it to change dynamically based on a checkbox that is marked.
So for context I have a program with two options in the selection screen. So when I…

Frontmaniaac
- 221
- 3
- 14
1
vote
1 answer
BACK button behaves weird after SUBMIT in selection screen
My requirement is to have two radio buttons in the selection screen. Upon execution , the report should be called based on Radio button.
Without execution when back button is clicked , it still opens report1. Pressing key F3 or back is not as…

Winona
- 115
- 1
- 17
1
vote
2 answers
How can I reuse elements of a Selection Screen or Data / Type declarations?
I want to reuse elements on a Selection Screen or Data / Type declarations which normally belong into a top include. I have several Reports sharing several elements on the selection screen. The same Reports share various data elements in regards to…

Christian
- 534
- 4
- 18
1
vote
1 answer
Radiobutton runtime error in selection screen with dynamic visibility
When setting up a selection screen with dynamic visibility of the controls I ran into an unexpected runtime error DYNP_TOO_MANY_RADIOBUTTONS_ON. Reduced sample code to the following reproducible example:
REPORT ztest1.
SELECTION-SCREEN BEGIN OF…

Lilienthal
- 4,327
- 13
- 52
- 88
1
vote
1 answer
Dynamic select-option in SAP ABAP
I am looking to make a selection screen in which I have to take an input of the table name and then based of which table is selected I have to ask for some parameters.
I tried to use POPUP_TO_GET_VALUE / POPUP_GET_VALUES but it does not help because…

Ankit Chaurasia
- 163
- 2
- 5
- 14
1
vote
2 answers
String template to set the default value of PARAMETER
Is it possible, in ABAP, to evaluate string templates dynamically?
Normally, you will have some string template in code that will be checked by the compiler. (The variables in the curly brackets are checked by the compiler at compile time).
However,…

mydoghasworms
- 18,233
- 11
- 61
- 95
1
vote
1 answer
Restrict user to enter only valid SC values in the SELECT-OPTIONS
I wrote program to display shopping cart (SC) details in SRM server.
In my program I put validations on select -options. It's working fine but if I provide any random range for example 9990000000 to 9999999999 for sc ,all SCs between this range…

pari
- 31
- 1
- 5
1
vote
1 answer
Check-table shown in selection screen for a parameter
I want to get a check table for input suggestions on a parameter while running this selection screen. Check table for the domain is set correctly and it is shown right in the table maintenance, but in the program I get no suggestion. This is the…

Codrin Strîmbei
- 125
- 7
- 22