‎2006 Jun 08 1:52 PM
i use se38 to send data to sapscript
i have this statemaent
WHEN 'KOMK-FKWRT'.
move in_tab-value to zXXXXX.
if i have a number 1,999.00 i have dump.
i need FM???
what is it???
‎2006 Jun 08 1:54 PM
‎2006 Jun 08 1:54 PM
Check the type of zxxxx.
Make it character type and use write
write in_tab-value to zXXXXX.
Regards,
Ravi
‎2006 Jun 08 1:54 PM
‎2006 Jun 08 1:54 PM
‎2006 Jun 08 1:56 PM
Santosh,
I don't follow your line of thinking here. What will MODIFY accomplish?
‎2006 Jun 08 1:59 PM
‎2006 Jun 08 2:08 PM
rich i get 1,222
and after yoyr code
1 222 how i can do with space
‎2006 Jun 08 2:09 PM
hi,
after that
use <b>condense in_tab-value</b>
i have already mentioned above
Message was edited by: Manoj Gupta
‎2006 Jun 08 2:12 PM
translate in_tab-value using ','.
<b>condense in_tab-value.</b>
move in_tab-value to zXXXXX.
regards
vijay
‎2006 Jun 08 2:13 PM
‎2006 Jun 08 2:14 PM
‎2006 Jun 08 2:17 PM
Hi,
<b>it should work</b> .
Translate in_tab-value using ', '.
condense in_tab-value.
move in_tab-value to zXXXXX.
with addition no-gaps.......mentioned below
Message was edited by: Manoj Gupta
‎2006 Jun 08 2:18 PM
‎2006 Jun 08 2:25 PM
Hi,
you should use <b>condense in_tab-value no-gaps.</b>
regards
vijay
‎2006 Jun 08 1:54 PM
Hi,
Check the both fields format in_tab-value and zXXXXX.
regards,
ram
‎2006 Jun 08 1:57 PM
Rani,
Its a datatype mismatch, you need to have compatable fields to move.
Regds
Manohar
‎2006 Jun 08 1:59 PM
‎2006 Jun 08 2:01 PM
Hi,
Check type of <b>in_tab-value</b> and <b>zXXXXX.</b> should be same.
possible if char.
immpossible if <b>float</b> and <b>Char</b>
for that u have to remove <b>,</b> using translate and then u have condense .
after that u have to Use move statement.
Message was edited by: Manoj Gupta
‎2006 Jun 08 2:01 PM
Hi,
use Translate and then move.
translate in_tab-value using ','.
move in_tab-value to zXXXXX.
Regards
vijay
‎2006 Jun 08 3:31 PM
Both the data types are different
use that fields as character
like
data: zxxxx(10) type c.
now u will not get dump