‎2008 Dec 11 1:54 AM
hi all , i am using table VBAP for calculation of net price with the field netpr
and i am using this one
write wa_vbap-netpr to gt_rep-netpr right-justified currency gt_rep-waerk.
gt_rep-netpr for caluclation purpose i have decalred as type char15
where GT_REP is final structure
this right justified is not working
anyone there to help me please
Edited by: sridhar loganathan on Dec 11, 2008 2:55 AM
‎2008 Dec 11 2:57 AM
Hi
You can try like this:
write wa_vbap-netpr to gt_rep-netpr currency gt_rep-waerk.
SHIFT gt_rep-netpr right.
Thanks
Praveen
‎2008 Dec 11 3:00 AM
SHIFT gt_rep-netpr right., it is not working
thank you for reply , any other solution is there
‎2008 Dec 12 10:22 AM