SAP Message 28086 - Formal parameter &1 not valid for: &2

Diagnosis
The syntax check found an error in entry &V2& for a table or function.Formal parameter &v1& is invalid.

System Response
The cursor shows which table/function entry is incorrect.

Procedure
A table is referred to by the keyword TABLE, the language-independenttable name, and a list of arguments, each consisting of , for example:
TABLE TEST_TAB(COLOR='red',
PRICE=PRICE_1)
COLOR and PRICE are formal parameters of the table, 'red' is a constantand PRICE_1 is a characteristic-specific variable.
A function is identified by the keyword FUNCTION. The other entries arethe same as for a table, for example:
FUNCTION TEST_FUN(COLOR='red',
PRICE=PRICE_1)
One formal parameter you entered is invalid. Check the formal parameterand correct the error.