‎2006 Oct 31 6:19 PM
Hi!!
we can use delays in the version 4.6C?
My problem is in this code:
CONCATENATE p_ruta '_' num '_' sy-datum '_'
sy-uzeit '.TXT' INTO p_ruta.
but sy-uzeit show 000000, the stranger is when i debugg, it show the time.
Why??
What can i do??
Thanks.
Bty.
‎2006 Oct 31 6:23 PM
Hi,
I tried your code..It is working fine..What is the issue??
data: p_ruta(30).
data: num(1).
CONCATENATE p_ruta
'_'
num
'_'
sy-datum
'_'
sy-uzeit
'.TXT'
INTO p_ruta.
write: / p_ruta.
Thanks,
Naren
‎2006 Oct 31 6:22 PM
‎2006 Oct 31 6:23 PM
Hi,
I tried your code..It is working fine..What is the issue??
data: p_ruta(30).
data: num(1).
CONCATENATE p_ruta
'_'
num
'_'
sy-datum
'_'
sy-uzeit
'.TXT'
INTO p_ruta.
write: / p_ruta.
Thanks,
Naren
‎2006 Oct 31 6:29 PM
I need that all the content in p_ruta is in the flat file (.XML), the problem is with the one of the hour, shows 000000.
C:\F_EDI_9000000000_20061031_000000
Message was edited by: Beatriz Romero
‎2006 Oct 31 6:39 PM
Well, if it is exactly midnight, then that is the value, '000000', you could force a second if you need to.
data: uzeit type sy-uzeit.
uzeit = sy-uzeit.
if uzeit = '000000'.
<b> uzeit = '000001'.</b> <= Force one second
endif.
CONCATENATE p_ruta '_' num '_' sy-datum '_'
<b>uzeit</b> '.TXT' INTO p_ruta.
Regards,
Rich Heilman
‎2006 Oct 31 6:41 PM
‎2006 Oct 31 7:02 PM
‎2006 Oct 31 6:38 PM
Hi,
Still not able to understand your problem...
Please give us more details..
Thanks,
Naren