‎2007 Sep 19 3:00 PM
Hello Gurus,
I have an internal table with 5 columns.
TTYPE(3) TYPE C,
ORDNO(20) TYPE C,
SEQNO(6) TYPE N,
MATNR(10) TYPE C,
EXPQT(9) TYPE N.
I loaded the contents of the table to the application server.
By default, type C columns are left aligned and type N columns are right aligned.
But some of the entries of my MATNR column are numbers and when I open the file put in application server, the entries showup as -
<u>MATNR</u>
0000023654
0000000345
ABC-1
KTK-25
Can you help me out so that I can see the output on the application server as -
<u>MATNR</u>
23654
345
ABC-1
KTK-25
Regards,
Balu
‎2007 Sep 19 3:03 PM
Call the function module CONVERSION_EXIT_MATN1_OUTPUT for the material number prior to downloading to application server.
‎2007 Sep 19 3:03 PM
Call the function module CONVERSION_EXIT_MATN1_OUTPUT for the material number prior to downloading to application server.
‎2007 Sep 19 3:10 PM
Hi,
use Function Module CONVERSION_EXIT_ALPHA_OUTPUT.
this will remove the leading zeros .
with regards,
s.vijayendra
‎2007 Sep 19 5:44 PM
Fred and Vijayendra,
Thanks for your reply.
It worked.
Regards,
Balu