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

Missing checkboxes in selection screen.

Former Member
0 Likes
956

The initial code looks like this:


SELECTION-SCREEN BEGIN OF BLOCK A1 WITH FRAME TITLE  TEXT-001.
PARAMETERS: P_DAT_S type SY-DATUM,
            P_DAT_E type SY-DATUM,
            P_ORG_UN type c as CHECKBOX,  
SELECTION-SCREEN END OF BLOCK A1.

The request is to add 2 more checkboxes:


SELECTION-SCREEN BEGIN OF BLOCK A1 WITH FRAME TITLE  TEXT-001.
PARAMETERS: P_DAT_S type SY-DATUM,
            P_DAT_E type SY-DATUM,
            P_ORG_UN type c as CHECKBOX,  
            P_CRC type c as CHECKBOX, 
            P_COLL type c as CHECKBOX. 
SELECTION-SCREEN END OF BLOCK A1.

In Development system, I can see all 3 checkboxes. After transporting to QA system, I can only see P_ORG.

The transport log did not show any errors. Why are the other 2 checkboxes not showing up in QA system?

Please help. Thanks!!!

4 REPLIES 4
Read only

Sandra_Rossi
Active Contributor
0 Likes
683

check the import queue, the program may have been imported several times, the original version has been imported last. Check the program source in QAS, how does it look like?

Read only

0 Likes
683

I already did the version compare between 2 systems and the program is the same. The change described above is the first one since the original version of the program.

Read only

0 Likes
683

Did you check SAP notes? Try to activate manually in QAS to see if it works (if yes then try again to see what happened; if no reason found, please ask sap support)

Read only

Former Member
0 Likes
683

Hi ,

do version remote comparison from your QAS to development system.

may be after your transport has been imported to the QAS, so one might have reverted the changes to the original version or

if the changes are not yet moved to the live environment and any time in between the your QAS is refreshed and updated to the live environment, then your changes will not be reflecting.

In this time,you need to transport your transport number once again.