‎2006 Aug 09 2:31 PM
Dear All ,
I am using Read Current line sattement as follows .
read current line field value
t_type4-bukrs into t_temp-bukrs
t_type4-belnr into t_temp-belnr
t_type4-NETCODE into t_temp-NETCODE
t_type4-UMSKZ into t_temp-umskz
t_type4-waers into t_temp-WAERS .
t_type4-WRBTR into t_temp-WRBTR
t_type4-UKURS into t_temp-UKURS .
I have commented the marked line it works fine . But I want to read WRBTR and UKURS also but it gives short DUmp.
These fields are frim BSID table . PLease Help me .
‎2006 Aug 09 2:35 PM
how did you define t_temp-wrbtr & UKURS? pl note both are DEC fields..
~Suresh
‎2006 Aug 09 2:36 PM
I think the problem is that t_temp-wrbtr is not of sufficient size.
Declare it as char type instead of wrtbtr type.
Regards,
ravi
‎2006 Aug 09 3:39 PM
The problem surely lies in terms of variable definition... Change the defn of t_temp-wrbtr and ukurs to character...think it should work fine after that.
Regards
Anurag
‎2006 Aug 09 3:40 PM
hi,
this is becoz of data type mis match. check it out once
theaj
‎2006 Aug 09 3:44 PM
Just define your variable
t_temp-WRBTR LIKE t_type4-WRBTR.
That should do the trick.