Tagged Questions
1
vote
2answers
85 views
ABAP: logical SELECT-OPTIONS in classes
Had faced such a problem: wanted to formulate complex logical condition in class method through SELECT-OPTIONS
like this
IF col IN seltab.
...logic....
ENDIF.
But received such error "local ...
1
vote
2answers
226 views
For the I/O fields in a normal ABAP screen, can i get them to behave like a SELECT-OPTIONS?
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 ...
1
vote
1answer
2k views
SAP select option with todays date as default?
I'm trying to show todays date as the default value in a select date.
INITIALIZATION.
select-OPTIONS: so_date FOR sy-datlo.
START-OF-SELECTION.
so_date-sign = 'I'.
so_date-option = 'BT'.
so_date-low ...
1
vote
2answers
10k views
abap - disable a parameter input at selection screen
hai I have screen filter at selection screen like this
SELECTION-SCREEN BEGIN OF BLOCK a WITH FRAME.
parameters s_werks like resb-werks default 'X' .
SELECT-OPTIONS:
s_aufnr FOR in_param-aufnr,
...
1
vote
2answers
958 views
(ABAP) How to know whether initial screen (selection-screen) is filled or not
first I'm Sorry if my question is too simple
I've just learned about ABAP
i have code ini ABAP which uses Selection screen with SELECT-OPTION let say the name is "selection_kunnr"
and I want to know ...