‎2008 Sep 05 10:04 AM
Hi ,
I am displaying the confirmed quantity of sales order in
DD/MM/YYYY format.
however customer needs it as DD.XXX.YYYY
XXX stands for first 3 letters of the month.
can anyone please let me know the logic..?
Thanks,
Varun
‎2008 Sep 05 10:06 AM
‎2008 Sep 05 10:08 AM
‎2008 Sep 05 10:09 AM
‎2008 Sep 05 10:09 AM
Hi,
USE Function Module
conversion_exit_sdate_output.
IMPORTING
INPUT -----> input date format
EXPORTING
OUTPUT ----> Output dateBoth dates will be of type sy-datum
regards,
anirban
‎2008 Sep 05 10:09 AM
Hi
Use
CONVERSION_EXIT_SDATE_OUTPUT
DATA :
w_input TYPE d VALUE '20080905',
w_output TYPE string.
CALL FUNCTION 'CONVERSION_EXIT_SDATE_OUTPUT'
EXPORTING
input = w_input
IMPORTING
output = w_output.
WRITE :
/ w_output.regards
Pavan
‎2008 Sep 05 10:10 AM
hi varun,
u can use the function module CONVERSION_EXIT_SDATE_OUTPUT
regards
vishnu.
‎2008 Sep 05 10:11 AM
‎2008 Sep 05 10:11 AM
hii
use following FM
data: date1 type sy-datum, wa_date(20).
date1 = sy-datum.
CALL FUNCTION 'CONVERSION_EXIT_SDATE_OUTPUT'
EXPORTING
INPUT = date1
IMPORTING
OUTPUT = wa_dateregards
twinkal
‎2008 Sep 05 10:11 AM