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: 

Decimal Place conversion without re-designing Table control

Former Member
0 Kudos

ABAP Topic : Dialog Programming(MPP)

Sub Topic : Table Control using wizard.

Problem : In table control , I am hving field with

4char3Decimal now user told to me change as 4char6Decimal

i changed accordingly activated in table + Se14 + SCreen also.

but couldnt see change when I execute my program..

its showing changes in Decimal places as 2char+6 decimal..

Changes has done on level of decimal but not in character...

I tried like __,_____ and __.____ but couldnt done.

now without re designing Table control is there any method we can refresh our already created table control.

I want 4char+6Decimal ie. 1234.123456.

your suggestion are always welcome.

Regards

Vivek

4 REPLIES 4

deepak_dhamat
Active Contributor
0 Kudos

Hi ,

 4char+3Decimal now user told to me change as 4char+6Decimal   

JUst say Upto to what decimal places you want to display in screen . and WHat you are using

regards

Deepak.

0 Kudos

Hi Deepak,

Thanks for replying.

earlier field decimal format was 123.1234

but now i want it should be 123.123456

and

Currently I am using

Data Type DEC Counter or amount field

Length 13 Decimal Places 6

If i re build my Table control it will solve,,but same field being used in many table control screen.

so instead of doing those hardwork.. im looking for shortest way 2 doing it.

Hope I made u understood my Requirement.

0 Kudos

Hi ,

Use this DEC6_7 Domian .

declare your field type using domain DEC6_7 .

in se51 => program name

1) goto layout -> Press F6 => get that field and place where you want

regards

Deepak.

Former Member
0 Kudos

Thnks for suggestion.

thread is closed..

I have rebuilt Table control using wizard. No option had left.Now everything working fine.

I used Domain value as :

Data Type DEC

No. Characters 10

Decimal Places 6

Output Length 12

Regards

Vivek