‎2007 Jul 25 3:35 PM
Hi all,
i have small problem,iam getting data which should be check is it packed data or not for that how can i do it? please send different types off ways i can check.................
my requirement is if the data is not a packed data then i have to catch the exception in try and catch method.
note:useful ans will be rewarded
regards,
phani
‎2007 Jul 25 3:39 PM
‎2007 Jul 25 3:48 PM
data: w_pck type p decimals 2.
data: typ(2) type c.
describe field w_pck type typ.
if typ NE 'P'.
message 'Not Packed type' type 'E'.
endif.
write:/ 'TYPE: ', typ.
Reward if useful
Regards
Prax
‎2007 Jul 26 6:18 AM
HI,
this is not working can u send the logic using try and catch method..........please
regards,
phani