SAP R/3 форум ABAP консультантов
Russian ABAP Developer's Club

Home - FAQ - Search - Memberlist - Usergroups - Profile - Log in to check your private messages - Register - Log in - English
Blogs - Weblogs News

Удаление нулей после запятой



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
Максим
Специалист
Специалист



Joined: 27 Sep 2007
Posts: 61

PostPosted: Mon Jan 28, 2008 9:59 am    Post subject: Удаление нулей после запятой Reply with quote

Я хочу удалить нули после запятой, что для этого надо сделать?
Например,
120.000 => 120
120.300 => 120.3
Back to top
View user's profile Send private message
Дэн
Участник
Участник



Joined: 14 Jan 2008
Posts: 13
Location: Израиль

PostPosted: Mon Jan 28, 2008 11:27 am    Post subject: Re: Удаление нулей после запятой Reply with quote

Максим wrote:
Я хочу удалить нули после запятой, что для этого надо сделать?
Например,
120.000 => 120
120.300 => 120.3


Mожно просто изменить формат переменной на подхoдящий Bам.
Back to top
View user's profile Send private message Send e-mail
Lord
Профессионал
Профессионал



Joined: 10 Sep 2007
Posts: 168

PostPosted: Mon Jan 28, 2008 6:11 pm    Post subject: Reply with quote

Не хочу показаться навязчивым с одним и тем же FM на все случаи жизни Smile , но

Code:
DATA : V_DEC TYPE P DECIMALS 3 VALUE '120.300',
V_CHAR(20).

V_CHAR = v_dec.

CALL function 'STRING_REVERSE'
  exporting
    STRING    = V_CHAR
    lang      = sy-langu
  IMPORTING
    rstring   = V_CHAR
  EXCEPTIONS
    too_small = 1
    OTHERS    = 2.

SHIFT V_CHAR LEFT DELETING LEADING '0'.

CALL function 'STRING_REVERSE'
  exporting
    STRING    = V_CHAR
    lang      = sy-langu
  IMPORTING
    rstring   = V_CHAR
  EXCEPTIONS
    too_small = 1
    OTHERS    = 2.

WRITE:/ V_CHAR.
Back to top
View user's profile Send private message
dr.killer
Участник
Участник



Joined: 31 Oct 2007
Posts: 24
Location: 4.7, ECC 6.0

PostPosted: Tue Jan 29, 2008 12:26 am    Post subject: Reply with quote

Приведение типа лучше делать при выводе, например, если в ексель, там можно настроить маску. Но если на абапе, то можно сделать так:

Code:

SHIFT string RIGHT DELETING TRAILING '0'.
SHIFT string RIGHT DELETING TRAILING '.'.


Например

Code:

DATA:  v1(6)  TYPE c VALUE '100.000',
       v2(6)  TYPE c VALUE '100.200'.
SHIFT v1 RIGHT DELETING TRAILING '0'.
SHIFT v1 RIGHT DELETING TRAILING '.'.
SHIFT v2 RIGHT DELETING TRAILING '0'.
SHIFT v2 RIGHT DELETING TRAILING '.'.

в итоге
v1 = '100',
v2 = '100.2'.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP All times are GMT + 4 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG.
SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG.
Every effort is made to ensure content integrity. Use information on this site at your own risk.