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

format question?

Former Member
0 Likes
468

Hi,

Quick question. I was going through the interface specification. For one of the field , for amount ..format should be 9(8). I didnt understand this part. Eventhough field length is 08, why they have to say format is 9(8).

Please give me your input?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
441

HI,

In any programming language 9(8) means the field contains a value which is numeric and the length is 8.

So the field can have values from 00000000 to 99999999.

If it is 999v99, then it means it is numeric with virtual decimal point for eg: 456.35 is equivalent to 45635,

c(10) means the fiels is a char data type with length 10.

Regards,

Subramanian

2 REPLIES 2
Read only

Former Member
0 Likes
441

Hello Deepan,

Could u please reply me with the code where u found it..

Good luck,

Bhumika

Read only

Former Member
0 Likes
442

HI,

In any programming language 9(8) means the field contains a value which is numeric and the length is 8.

So the field can have values from 00000000 to 99999999.

If it is 999v99, then it means it is numeric with virtual decimal point for eg: 456.35 is equivalent to 45635,

c(10) means the fiels is a char data type with length 10.

Regards,

Subramanian