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: 

what is synony to P(8) DECIMALS 2 as dictionary type?

Former Member
0 Kudos

Hello,

what is synonym

to P(8) DECIMALS 2 -> as dictionary typ ?

rgds

ertas

1 ACCEPTED SOLUTION

Former Member
0 Kudos

hi,

It means it is a packed datatype with output length 17.

Regards,

Santosh

8 REPLIES 8

Former Member
0 Kudos

hi,

It means it is a packed datatype with output length 17.

Regards,

Santosh

0 Kudos

I mean what can be choosen instead of

P(8) DECIMALS 2 .

I need a similar type but as dictionary type

rgds

ertas

0 Kudos

hi Ilhan,

in transaction SE11 you can search on your own as much as you want...

Choose radiobutton Data Type

Press F4

Choose Data element

Data Type should be DEC

Length should be 8

hope this helps

ec

Former Member
0 Kudos

hi,

Make use of Decimal data type i.e, DEC of the required length ..

Regards,

Santosh

Former Member
0 Kudos

Try dataelement DEC6_2

Former Member
0 Kudos

hi,

You can even use DEC8_2 ..

Regards,

Santosh

former_member194797
Active Contributor
0 Kudos

Domain: DECV15_2; data element:VVVARTYPREAL.

0 Kudos

Hello.

DATA: 
  l_var1 TYPE frshr,
  l_var2(15) TYPE p DECIMALS 3 .

Debugger view:

l_var1: P(8) DECIMALS 3

l_var2: P(15) DECIMALS 3

Type "frshr" for "l_var1" defined as doman DEC15_3: DEC, length 15, decimals 3.

Why i see differents in debugger?

Thank you.