cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Report selection text disappear after transport

jrgkraus
Active Contributor
0 Kudos
748

I have created a report with selection texts like seen in the first attached picture.

After transporting it to quality check system and to production, in both systems, the selection texts look as seen in the second screen shots (all texts are showing a single dot whilst the "dictionary reference" flag is set)

Running the report, no selection texts do show up, but the technical names appear.

My ABAP version is 750. What went wrong? How can I get the right texts?

EDIT: found the reason:

data db type zds_pp47_ocon_order_config.  " <-- Data definition of a CDS view
data t001w type t001w.

select-options:
  s_plant for t001w-werks,
  s_dgltp for db-dgltp,  " <--- texts do not work
  s_aufnr for db-aufnr,
  s_matnr for db-matnr matchcode object mat,
  s_arbpl for db-arbpl,
  s_atnam for db-atnam.

If you refer in select-options to a CDS-View data definition, the selection texts seem to work in development, but after transporting they're gone. My solution was, to use DB table fields as reference:

data afko type afko.
data afpo type afpo.
data crhd type crhd.
data cabn type cabn.
data t001w type t001w.

select-options:
  s_plant for t001w-werks,
  s_date for afpo-dgltp,
  s_order for afko-aufnr,
  s_mater for afpo-matnr matchcode object mat,
  s_arbpl for crhd-arbpl,
  s_charn for cabn-atnam.

 

Accepted Solutions (1)

Accepted Solutions (1)

jrgkraus
Active Contributor
0 Kudos

See the edited description: do not refer to CDS-Views in select-options.

Answers (1)

Answers (1)

RaymondGiuseppi
Active Contributor
0 Kudos

Did you

  • Transport the whole program (R3TR PROG) or only the main source (LIMU REPS) ?
  • Get errors/warning during the import
  • Insure buffer are refreshed

In a hurry: try to activate report in target system and/or command such as /$SYNC, /$CUA or /$DYN.

jrgkraus
Active Contributor
0 Kudos
I transported first PROG, then tried to re-transport LIMU REPT, but nothing helped.
jrgkraus
Active Contributor
0 Kudos
... no errors in transport, /$... did not help
RaymondGiuseppi
Active Contributor
0 Kudos
Check definition of parameters, they use ddic reference, are those reference avalaible in target system for connexion language
jrgkraus
Active Contributor
0 Kudos
All parameters refer to fields of EKKO, EKPO and EKBE and are active in the destination system
RaymondGiuseppi
Active Contributor
0 Kudos

In the source system, try to translate the texts (ddic texts should do this automatically) and then transport the whole object again.

jrgkraus
Active Contributor
0 Kudos
I did the translation already before the transport. In the destination system, no selection texts appear on the translation screen.