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: 

which data type cannot be used to define parmeters? why?

Former Member
0 Kudos

hi

which data type cannot be used to define parmeters? why?

4 REPLIES 4

abdulazeez12
Active Contributor
0 Kudos

Type F..floating

Former Member
0 Kudos

hi jyothsna.,

we can not use the float(TYPE F) data type to define parameters.

because it takes the rounded values some times for the decimals to check the data in SAP tables.

it leads to get inconsistent data from SAP tables.

<b><i>Reward points if useful</i></b>

Chandra

Message was edited by:

Chandrasekhar V

Former Member
0 Kudos

You cannot use types F (floating point), 1, or 2(6-digit date formats).

hymavathi_oruganti
Active Contributor
0 Kudos

The built-in ABAP types c, d, i, n, p, t, and x

A non-specific data type from the ABAP Dictionary or a non-generic data type, from the same program, already defined using TYPES, and which is elementary and flat and not of the type f (with the exception of the use of NO-DISPLAY).

press f1 on parameters: statement , u can find the above docu there.