Application Development 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: 

numeric field without value also taking by default zeros if i want to delet

Former Member
0 Kudos

hi all

numeric field without value also taking by default zeros if i want to delete these zeroes not in alv in ordinary report how to write these give me suggetions if any body knows

Thanking you

ramanareddy

3 REPLIES 3

Former Member
0 Kudos

hi

the initial value of an integer type is 0..so it displays like that, if u don't want that then move it to a character variable so that the initial value space will be displayed

if helpful, reward

Sathish. R

Former Member
0 Kudos

Hello,

The initial value of the numeric fields are 0000 only.

so do like this.


PARAMETERS P_AMOUNT(10) TYPE N.
WRITE: P_AMOUNT NO-ZERO.

Vasanth

0 Kudos

actully no-zero this one i used in alv but here how i use this one is problem

my problem is solved with your clarification i use write statement instead of move statement

Thanking you

Ramana reddy