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 parameter is missing

Former Member
0 Likes
2,597

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.

9 REPLIES 9
Read only

Former Member
0 Likes
1,793

Hello,

I am able to see all the parameters and select-options in the selection screen including S_VORNR.

Read only

former_member222860
Active Contributor
0 Likes
1,793

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

Read only

jayanthi_jayaraman
Active Contributor
0 Likes
1,793

Hi,

Just check the program whether in initialization event, any modifications are done for the screen.(screen-invisible)

Read only

Former Member
0 Likes
1,793

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

Read only

Former Member
0 Likes
1,793

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

Read only

Former Member
0 Likes
1,793

quite unlikeley, but maybe your dataelement vornr is not active?

Read only

Former Member
0 Likes
1,793

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

Read only

0 Likes
1,793

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.

Read only

antony_paul2
Active Participant
0 Likes
1,793

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