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 sparator tunning with sap gui

Former Member
0 Kudos

Hi there,

Here is what I want :

When a user press the dot key on the numpad of his keyboard, it's accepted/replaced by his decimal separator according to the user locale or user preferences.

Like in MS excel.

Is it possible? how ? On GUI side? On ABAP side?

thanks

1 REPLY 1

Private_Member_101989
Contributor
0 Kudos

Hello,

- On GUI:

Yes, use GuiXT:

about GuiXT:

http://help.sap.com/saphelp_nw04/helpdata/en/89/91b9d8194f11d5b3a30050dae02d7c/content.htm

find that question here:

http://www.synactive.com/qa/ia/ia_questions.html

- On abap:

Yes, use replace:

report ztest .

data:char(25) value '5#4#2#&1#&',

char1(9) type c ,

char2(4) type c value 'test'.

replace all occurrences of '#' in char with 'and' .

replace all occurrences of '&' in char with 'num' .

replace all occurrences of 'a' in char with char2 .

write: char.

Regards,

Jorge Diogo