‎2008 Jun 03 9:48 AM
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.
‎2008 Jun 03 9:57 AM
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
‎2008 Jun 03 9:52 AM
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
‎2008 Jun 03 9:53 AM
‎2008 Jun 03 9:56 AM
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
‎2008 Jun 03 9:57 AM
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
‎2008 Jun 03 10:05 AM
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.
‎2008 Jun 04 3:08 PM
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