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

REPLACE вставляет пробел



 
Post new topic   Reply to topic    Russian ABAP Developer's Club Forum Index -> ABAP
View previous topic :: View next topic  
Author Message
stn
Участник
Участник



Joined: 18 Jan 2008
Posts: 31

PostPosted: Thu Oct 02, 2008 11:12 am    Post subject: REPLACE вставляет пробел Reply with quote

Добрый день.
Формирую файл для банк-клиента по заданному шаблону. Если для замены передается пустое полу, то REPLACE вставляет одинарный пробел. Нужно, чтобы ничего не вставлял.

Code:
DATA: ls(255), out(1024).
CONSTANTS: c_template LIKE out VALUE
    '&,&,&,@&@,@&@,@&@,@&@,&,&,@&@,@&@,' &
    '&,@&@,@&@,@&@,@&@,@&@,@&@,@&@,&,' &
    '&,&,&,&,@&@,@&@,@&@,@&@,&,&,&,&,' &
    '&,&,&,@&@,@&@,@&@,@&@,@&@,@&@,@&@'.
   
out = c_template.

*1 Date 10 Дата последней операции по счету 18/10/2006
  CLEAR ls.
  PERFORM transfer USING ls.

*2 Date 10 Дата операции. 19/10/2006
  WRITE g_date USING EDIT MASK '__/__/____'.
  PERFORM transfer USING ls.

*&---------------------------------------------------------------------*
*&      Form  transfer
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      -->P_LS  text
*----------------------------------------------------------------------*
FORM transfer USING p_ls.

  DATA: len TYPE I.
  len = STRLEN( p_ls ).

  IF len EQ 0.
    REPLACE '&' LENGTH 1 WITH '' INTO outt-str.
  ELSE.
    REPLACE '&' LENGTH 1 WITH p_ls(len) INTO outt-str.
  ENDIF.
ENDFORM.                    " transfer
Back to top
View user's profile Send private message
vga
Мастер
Мастер


Age: 200
Joined: 04 Oct 2007
Posts: 1218
Location: Санкт-Петербург

PostPosted: Fri Oct 03, 2008 3:34 pm    Post subject: Reply with quote

Иcпользовать стринг вместо char ''

Code:
FORM transfer USING p_ls.

  DATA: len TYPE I,
        s TYPE STRING.
  len = STRLEN( p_ls ).

  IF len EQ 0.
    REPLACE '&' LENGTH 1 WITH s INTO outt-str.
  ELSE.
    REPLACE '&' LENGTH 1 WITH p_ls(len) INTO outt-str.
  ENDIF.
ENDFORM.                    " transfer
Back to top
View user's profile Send private message Blog Visit poster's website
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.