Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Selection screen

Former Member
0 Likes
586

Greetings Abapers

Im having a bit of trouble with my selection screen. Currently it includes to input boxes but i only want it to include one. The code is:

selection-screen: begin of block b01 with frame title text-b01.

select-options: p_appl for tcacs_appl-applkernel obligatory.

*PARAMETERS: lv_appl LIKE lt_CACS_STMRNJO-appl OBLIGATORY.

lv_appl = p_appl-low.

selection-screen: end of block b01.

Any help will be greatly appreciated.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
565

Hi Mandimika,

Use NO - EXTENSION , NO INTERVALS at the end of your Select-Options statement.

select-options: p_appl for tcacs_appl-applkernel NO - EXTENSION NO INTERVALS obligatory.

Hope this will help you.

****Reward points if found useful

Regards,

Naresh

6 REPLIES 6
Read only

Former Member
0 Likes
565

Hi,

try this

selection-screen: begin of block b01 with frame title text-b01.

select-options: p_appl for tcacs_appl-applkernel obligatory no- intervals.

*PARAMETERS: lv_appl LIKE lt_CACS_STMRNJO-appl OBLIGATORY.

lv_appl = p_appl-low.

selection-screen: end of block b01

Thanks

Nayan

Read only

Former Member
0 Likes
565

hi,

Try

select options:s1 for <..> no-extension no intervals.

Read only

Former Member
0 Likes
565

hi there

can u be specific as to what do u mean by 2 input boxes...

do u mean to say that against the appl select option u r getting

__________ to ______________ boxes???

if so then u just need to add the the " no intervals" addition with ur select option...

reward if helpful

regards

niharika

Read only

Former Member
0 Likes
566

Hi Mandimika,

Use NO - EXTENSION , NO INTERVALS at the end of your Select-Options statement.

select-options: p_appl for tcacs_appl-applkernel NO - EXTENSION NO INTERVALS obligatory.

Hope this will help you.

****Reward points if found useful

Regards,

Naresh

Read only

Former Member
0 Likes
565

Hi,

Use NO-EXTENSION NO-INTERVALS at the end of the select-options statement.

example:

Declaration of a selection criterion for which a single comparison is possible on the selection screen, but multiple selection is not possible.

DATA spfli_wa TYPE spfli.

SELECT-OPTIONS s_carrid FOR spfli_wa-carrid NO-EXTENSION

NO INTERVALS.

Read only

Former Member
0 Likes
565

Hi all

I am having following queries in selection screen.

I am having a selection screen and I want to hide certan fields runtime or I want to disable some fields on the selection screen based on the values entered on the screen. Caould you please tell me how to ga about it?

One more thing. If my report contains material number. When I click on the material number the program should take me to MM02. Cold anyone please tell me we have to write this in which event and what would be the code for that??

Thanks & Regards

Deepti