153 SAP Message of Class SMARTFORMS The name of the field symbol &1 must start with '<' and end with '>'











153(SMARTFORMS) - The name of the field symbol &1 must start with '<' and end with '>'

Message number 153 of class SMARTFORMS is used to display message "The name of the field symbol &1 must start with '<' and end with '>'" and can be triggered using the following ABAP code:

DATA: lv_val1(100) TYPE C.
lv_val1 = '123'.

    MESSAGE E153(SMARTFORMS) WITH lv_val1. "Error message example

    MESSAGE W153(SMARTFORMS) WITH lv_val1. "Warning message example

    MESSAGE I153(SMARTFORMS) WITH lv_val1. "Information message example
See here for more options


What causes this issue

The name of a field symbol always has to start with '
<' and end with '>'. Other names are not permitted.

System Response

The operation was terminated.

How to fix

Specify a field symbol name that starts with '
<' and ends with '>'.&SYS_ADMIN&

Message text extract from SAP system. Copyright SAP SE.


Return to Message Class SMARTFORMS main page



Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!