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: 

interface zero fillers.....................................................

Former Member
0 Kudos

i am working on interface ..............my problem is that i have to use fillers in between fiedls..................some are spaces and some are zero filled.Few fillers where lenght is around 10 or 15 i have created constants.....but i in my file i have to fill 169 lenght zero filler.

is there any other way to declare the large zero fillers apart from........constant declaration...............................

reply urgent

1 ACCEPTED SOLUTION

Former Member
0 Kudos

for zero fillers u can directly use values of type n...because their initial value is zero.

u gve decalartion of filler like.......

data : gv_fill10(10) type n " it will by default have 10 zeros

gv_fill200(100) type n "it will have hundred zeros.

reward points if useful ans.

2 REPLIES 2

Former Member
0 Kudos

for zero fillers u can directly use values of type n...because their initial value is zero.

u gve decalartion of filler like.......

data : gv_fill10(10) type n " it will by default have 10 zeros

gv_fill200(100) type n "it will have hundred zeros.

reward points if useful ans.

Former Member
0 Kudos

Hi James,

Just define field of type N (NUMC).

Regards,

Atish