How to get the default number sign on left hand side in ABAP

Question: I have the following output:

WRITE : / W_BAL.

when there is a -VE balance the output in the list appears as

100- not -100.

I want by default my number sign to appear on left hand side. Kindly help how I can do this.

Thanks

Answer:
FM CLOI_PUT_SIGN_IN_FRONT

Answer:
How bout this?:


DATA:  lv_amount TYPE i.

lv_amount = 0 - 100.

write: / lv_amount.

WRITE: / lv_amount USING EDIT MASK 'V_______'.


Answer:
Oh for FAQ's sake! /forums/viewtopic.php?t=271143&highlight=sign

Oh well. Search is life.

m@t
_________________
TULY The quality of answers is roughly proportional to the quality of the question.

The downside of being better than everyone else is that people tend to assume you're pretentious.

Answer:
Thanks SAP_ZOMBIE works like a charm
Copyright ?2007 - 2008 www.jt77.com