2006 Oct 20 4:45 AM
Hi Friends,
I want to add leading zeros to a field. vbrk-vbeln.
Can you pls tell me how to do it.
Thanx in Advance,
Venu.
2006 Oct 20 4:48 AM
Hi,
call the function module CONVERSION_EXIT_ALPHA_INPUT with the field vbrk-vbeln..It will add leading zeroes..
tables: vbrk.
vbrk-vbeln = '12345678'.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input = vbrk-vbeln
IMPORTING
OUTPUT = vbrk-vbeln
.
Thanks,
Naren
Message was edited by: Narendran Muthukumaran
Hi Friends,
I want to add leading zeros to a field. vbrk-vbeln.
Can you pls tell me how to do it.
Thanx in Advance,
Venu.
2006 Oct 20 4:48 AM
Hi,
call the function module CONVERSION_EXIT_ALPHA_INPUT with the field vbrk-vbeln..It will add leading zeroes..
tables: vbrk.
vbrk-vbeln = '12345678'.
CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
EXPORTING
input = vbrk-vbeln
IMPORTING
OUTPUT = vbrk-vbeln
.
Thanks,
Naren
Message was edited by: Narendran Muthukumaran
2006 Oct 20 4:52 AM
Use the function module
call function 'CONVERSION_EXIT_ALPHA_INPUT'
exporting
INPUT = L_RFQNO
importing
OUTPUT = L_RFQNO.
Regards
- Gopi
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |