Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

conversion routine

Former Member
0 Likes
715

please someone could explain me CONVERSION ROUTINE

simply& shortly

Regards

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
646
data : auart like vbak-auart.

auart = 'TA'.
CALL FUNCTION 'CONVERSION_EXIT_AUART_INPUT'
  EXPORTING
    input        = auart
 IMPORTING
   OUTPUT        = auart.

write:/ auart.

reverse it with 'CONVERSION_EXIT_AUART_OUTPUT'

vijay

4 REPLIES 4
Read only

Former Member
0 Likes
646

A function module which convert the internal representation of a field into its external representation(Depending upon the user settings) and vice versa.

Read only

Former Member
0 Likes
647
data : auart like vbak-auart.

auart = 'TA'.
CALL FUNCTION 'CONVERSION_EXIT_AUART_INPUT'
  EXPORTING
    input        = auart
 IMPORTING
   OUTPUT        = auart.

write:/ auart.

reverse it with 'CONVERSION_EXIT_AUART_OUTPUT'

vijay

Read only

Former Member
0 Likes
646

hi

may this help you

conversion routine assigns the appropriate internal date presentation (YYYYMMDD) to an external date (01.JAN.1994, for example).

Date formatting definition in the user master record: DD.MM.YYYY

Conversion from the external into the internal format:

'02.JAN.1994' ® '19940102'

with regards

vinayaka

Read only

Former Member
0 Likes
646

hi

try this link you may found what you want

http://help.sap.com/saphelp_nw2004s/helpdata/en/07/d63a68db9110459d63c495b16f522e/frameset.htm

with regards

vinayaka