what are Conversion Routings?
Answer / guest
Conversion takes place when converting the contents of a
screen field from display format to SAP-internal format and
vice versa and when outputting with the ABAP statement
WRITE, depending on the data type of the field.
If standard conversion is not suitable, it can be
overridden by specifying a conversion routine in the
underlying domain.
A conversion routine is identified by its five-place name
and is stored as a group of two function modules.
The function modules have a fixed naming convention.
The following function modules are assigned to conversion
routine xxxxx:
CONVERSION_EXIT_xxxxx_INPUT
CONVERSION_EXIT_xxxxx_OUTPUT
The INPUT module performs the conversion from display
format to internal format. The OUTPUT module performs
the conversion from internal format to display format.
If a screen field refers to a domain with a conversion
routine, this conversion routine is executed automatically
each time an entry is made in this screen field or when
values are displayed with this screen field.
Is This Answer Correct ? | 8 Yes | 0 No |
where was the development server?
what is a workflow?
what is abap token?
What is view proxy in abap?
Tcode for create Basic ALE settings?
How can u decide that how many records can be displayed in one page in scripts ? or in one window ? 2. what is enhancement category in transparent table ?
How you will catch errors in call transaction?
I have modified standard sapscript layout set MEDRUCK.But could u tell me the procedure to trigger the layout set for printing. Thanks Rahul
ANY one can tell me what is basic diff b/w keywords STOP,CONTINUE,CHECK,EXIT, AT-EXITCOMMAND?
What are vale table check table? What's the difference between the two? Explain with simple example taking table.
what is the output of given code? data : f1 type i, f2 type i. write : / f1, f2. do 2 times. perform addfld. enddo. write : / f1, f2. form addfld. data : f1 type i, f2 type i. add 1 to f1. add 1 to f2. write : / f1 , f2. endform. int : f1 , f2.
When would you use a BAPI rather than an IDOC