Hi Anirban,
As suggested above, always prefer conversions when they are in the domain. Since p_ind do not have any conversion routines, please try the following code:
DATA : a(10) TYPE c VALUE 'PR223300'.
SHIFT a LEFT DELETING LEADING space.
TRANSLATE a USING ' 0'.
WRITE : a.
Thanks
Purnand