Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

INTERNAL TABLE(OUTPUT)

Former Member
0 Likes
421

I created two internal tables with same structure,but with different data in these tables.

I subtracted quantity fields

of these tables:

problem:

example :

->itab1-labst(mard) = 123

->itab2-labst(mard) = 130

->itab1-labst(mard) --(minus)

itab2-labst(mard) .

i got 7- in output.

i want in -7 in output

kindly help me,it is urgent.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
397

Hi,

Try FM CLOI_PUT_SIGN_IN_FRONT..

Regards,

Chithra

2 REPLIES 2
Read only

Former Member
0 Likes
398

Hi,

Try FM CLOI_PUT_SIGN_IN_FRONT..

Regards,

Chithra

Read only

Former Member
0 Likes
397

Hi,

SHIFT B_QTY RIGHT DELETING TRAILING '-'.

SHIFT B_QTY LEFT DELETING LEADING ' '.

CONCATENATE '-' B_QTY INTO B_QTY.

Thanks,

Arunprasad.P

Reward if useful.