067 SAP Message of Class AY The field &1, table &2, field name &3 is modified - system error











067(AY) - The field &1, table &2, field name &3 is modified - system error

Message number 067 of class AY is used to display message "The field &1, table &2, field name &3 is modified - system error" and can be triggered using the following ABAP code:

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

    MESSAGE E067(AY) WITH lv_val1. "Error message example

    MESSAGE W067(AY) WITH lv_val1. "Warning message example

    MESSAGE I067(AY) WITH lv_val1. "Information message example
See here for more optionsay067



What causes this issue


You want to modify the field V3 with the table name V2 for field
group table V1 . However the field is already modified. This is a system error.


System Response


Program error



How to fix


If you are using a standard SAP program, contact your system
administrator.
If you are a programmer calling up this function module, check the
call-up and your logic.
Message text extract from SAP system. Copyright SAP SE.


Return to Message Class AY 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!