Application Development 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: 

abap parameter not displaying to screen only in some systems post-transport

Former Member
0 Kudos

We have a custom abap program that generates a report from a combination of a custom table and standard master data changes. We made a change to the program to add the plant as a parameter. This works in our dev environment. We then send the transport to two QA boxes. The code arrives in both systems and shows up as active but the plant field displays on one system but not on the other. The code looks like this (with the new field in bold)

SELECT-OPTIONS: s_dispo FOR ztffalert-dispo. " MRP controllers

PARAMETERS: p_werks like ztffalert-zzwerks,

p_rdate LIKE ztffalert-ersda

DEFAULT sy-datum, " Date to be run

p_cdate LIKE ztffalert-ersda. " comparision date

I verified that

1. Transports went to both QA systems with status 0 (no errors or warnings).

2. Remote compare of code matches from Dev to both QA boxes

3. Ran in debug mode in QA boxes and then scrolled up to confirm that the code is there and when I enter the p_werks to display values, the debugger does recognize that the field exists.

4. Code is active in both systems.

Both QA systems are copies of production so the tables are identical with the only difference being that one has more data then the other.

Why would the parameter show up in one QA system and not the other?

4 REPLIES 4

Former Member
0 Kudos

Hi,

Could you cross check whether the transport Layer is defined for the 2 QA system

Your program's package will be assigned to Devclass which inturn has Destination (Target)

System.

i think the target system for other QA system might not be defined under that package,

even though the transport release does not show any warinings or Errors.

Former Member
0 Kudos

We are facing a similar issue. THe program is getting transported correctly , but parameter is not displayed on execution.Any hint here on how to solve this ???

Have checked the package assignment , and found that it was same in both systems.

SB

Edited by: ABCD on May 4, 2009 5:16 PM

former_member183990
Active Contributor
0 Kudos

did whether the particular ztable component has been transported or not?

cheers

s.janagar

0 Kudos

The parameter is not referring to any table component , but has been declared of type CHAR 25.