Translate this blog

segunda-feira, 29 de julho de 2013

Conversão de datas / Date conversions


 Português  Para conversão de variáveis de data, pode-se usar estas funções Standards para agilizar o processo:
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
DATA: lc_date TYPE audat VALUE '20130729',
      lc_data TYPE c LENGTH 10.
 
"US > BR
CALL FUNCTION 'CONVERSION_EXIT_PDATE_OUTPUT'
   EXPORTING
    input  = lc_date
   IMPORTING
    output = lc_data.
"lc_data => '29.07.2013'
 
"BR > US
lc_data = '20.07.2013'.
CALL FUNCTION 'CONVERSION_EXIT_PDATE_INPUT'
   EXPORTING
    input  = lc_data
   IMPORTING
    output = lc_date.
"lc_date => '20130720'