‎2009 May 19 8:04 AM
Hi all,
we need any ideas to solve our problem, that is, a parameter defined as usually is not shown when you execute the report.
This is the definition of the selection-screen and the missing parameter is s_vornr. Any ideas?
Thank you for your help!!
Parámetros
selection-screen begin of block bloq1 with frame title text-001.
select-options: s_pernr for pa0003-pernr.
select-options: s_aufnr for afru-aufnr matchcode object orde.
select-options: s_vornr for afru-vornr. "MMV - 28/04/2009 - INC233030
select-options: s_auart for aufk-auart.
select-options: s_werks for afru-werks.
select-options: s_budat for afru-budat.
select-options: s_ersda for afru-ersda.
parameters: p_noti as checkbox.
selection-screen end of block bloq1.
selection-screen begin of block bloq2 with frame title text-003.
parameters:
p_sin radiobutton group 001 default 'X' user-command mostrar, "sin notificaciones
p_con radiobutton group 001, "con notificaciones
p_isdd like afru-isdd, "fecha inicio
p_isdz like afru-isdz, "hora inicio
p_iedd like afru-iedd, "fecha fin
p_iedz like afru-iedz. "hora fin
selection-screen end of block bloq2.
disposición
SELECTION-SCREEN BEGIN OF BLOCK list WITH FRAME TITLE text-030.
PARAMETERS: pa_vari TYPE slis_vari.
SELECTION-SCREEN END OF BLOCK list.
‎2009 May 19 8:09 AM
Hello,
I am able to see all the parameters and select-options in the selection screen including S_VORNR.
‎2009 May 19 8:13 AM
I Found all the parameters of the Selection-Screen
tables: pa0003, afru, aufk.
selection-screen begin of block bloq1 with frame title text-001.
select-options: s_pernr for pa0003-pernr.
select-options: s_aufnr for afru-aufnr matchcode object orde.
select-options: s_vornr for afru-vornr. "MMV - 28/04/2009 - INC233030
select-options: s_auart for aufk-auart.
select-options: s_werks for afru-werks.
select-options: s_budat for afru-budat.
select-options: s_ersda for afru-ersda.
parameters: p_noti as checkbox.
selection-screen end of block bloq1.thanks\
Mahesh
‎2009 May 19 8:14 AM
Hi,
Just check the program whether in initialization event, any modifications are done for the screen.(screen-invisible)
‎2009 May 19 8:18 AM
Hi,
Declare the Tables statement and define the table AFRU. Should declare the tables statement for the Selection options fields.
Tables : AFRU,AUFK.
Regards,
Vijaya Lakshmi.T
‎2009 May 19 8:18 AM
Hi,
may be in the event at selection-screen output will have the loop at screen which would be making s_vornr as invisible.... just the the coding in at selection-screen output event....
if you are not able to get it... please paste the code which is written in at selection-screen output.
Regards,
Siddarth
‎2009 May 19 8:21 AM
quite unlikeley, but maybe your dataelement vornr is not active?
‎2009 May 19 8:37 AM
GOTO -> TEXT ELEMENTS -> SELECTION TEXTS
there the cell infront of S_VORNR will be blank now. update that like ?...
then u will see the field in the output
Regards,
Ajay
‎2009 May 19 1:39 PM
Thank you for your answers.
I've checked the program and both text element is updated and AFRU database table is declared. Moreover, I have eliminated all the selection screen events, but the problen still exists.
I forgot to tell you that parameter s_vornr can be seen when executing the program in development and test enviroments. It only disappears when the program is transported to production enviroment.
‎2009 May 19 9:08 AM
Its sounds strange !!!!!
But you can check couple of things ..
1. If the said parameter is missing in lets say Quality server and is visible in Development server then try re-transporting the request, some error might have occured while generating the selection screen in QAS.
2. Check whether Selection Texts are Active ..
3. Try Reactivating the Program ..
Regards,
Antony