2006 Jan 20 6:45 PM
I want to know the function module to find the long text for the p0000-stat2. for eg
p0000-stat2 = 'o' then i want the text 'withdrawn'.
2006 Jan 20 6:52 PM
Looks like you can get the values from table T529U, no need for a function module.
report zrich_0003.
data: xt529u type t529u.
select single * from t529u into xt529u
where sprsl = sy-langu
and statn = '2'
and STATV = '0'.
write:/ xt529u-statn, xt529u-statv, xt529u-text1.Regards
Rich Heilman
2006 Jan 20 6:52 PM
2006 Jan 20 6:55 PM
2006 Jan 20 7:06 PM
You can also use the class CL_HR_T529U. It has a method called read.
| User | Count |
|---|---|
| 6 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |