2009 Nov 16 8:07 AM
Hi.
I want to display screen elements and their descriptions .
I got screen elements but their descriptions are displayed in german..
I want to display them in english.
See the bele code
TABLES: tstc.
DATA: BEGIN OF dynp_id,
prog LIKE d020s-prog,
dnum LIKE d020s-dnum,
END OF dynp_id.
DATA: h LIKE d020s.
DATA: f LIKE d021s OCCURS 0 WITH HEADER LINE.
DATA: e LIKE d022s OCCURS 0 WITH HEADER LINE.
DATA: m LIKE d023s OCCURS 0 WITH HEADER LINE.
select single * from tstc where tcode = 'VA01'.
dynp_id-prog = tstc-PGMNA.
dynp_id-dnum = tstc-DYPNO.
IMPORT DYNPRO h f e m ID dynp_id.
LOOP AT f.
WRITE: / f-FNAM,
f-stxt.
ENDLOOP.
Here stxt (Screen element description is displayed in german).
I tried to chnage the text into english..I tried with several function moduels..
Can any one give me a suggesiton.
2010 Apr 24 4:09 PM
2010 Sep 27 10:23 AM
HI,
How can u solved your problem?
I'm using the below statement to fill the tables. but my tables not filled with records?
IMPORT DYNPRO H_588M IMP588M E_588M M_588M ID W_DYNPRONAME.
Plz tel me, How can u solved u r problem?
Plz do needful.
Thanks,
Srini