SAP WRITE EXT OPTIONS ABAP Statements



Get Example source ABAP code based on a different SAP table
  


• COLOR WRITE
• INTENSIFIED WRITE
• INVERSE WRITE
• HOTSPOT WRITE
• INPUT WRITE
• FRAMES WRITE
• RESET WRITE
• ON WRITE
• OFF WRITE
• = WRITE

WRITE, ext_format_options
Short Reference

ABAP_SYNTAX
... $[COLOR ${$[=$]${color $[ON$]$}$|OFF$}$|${= col$}$]
$[INTENSIFIED $[${ON$|OFF$}$|${= flag$}$]$]
$[INVERSE $[${ON$|OFF$}$|${= flag$}$]$]
$[HOTSPOT $[${ON$|OFF$}$|${= flag$}$]$]
$[INPUT $[${ON$|OFF$}$|${= flag$}$]$]
$[FRAMES $[${ON$|OFF$}$|${= flag$}$]$]
$[RESET$] ...

What does it do?
The meaning of the additions is the same as for the statement FORMAT, with the difference that they only affect the output of the current WRITE statement. If the additions are not specified, the standard settings described in FORMAT or the settings set by the previous FORMAT statements are used.



Latest notes:

The use of such an addition in the WRITE statement overrides the standard settings or the formats set by the previous FORMAT statements for exactly one output and for exactly the property concerned. All the other properties and the subsequent WRITE statements are not affected.
ABAP_HINT_END



Example ABAP Coding

Changes the background color for output of the data object sum. All other output and any spaces between the output have the background color that is set in the FORMAT statement.
ABEXA 00783
ABAP_EXAMPLE_END

Return to menu