SAP Message 28113 - Error in table/function declaration

Diagnosis
The syntax check found an error in the entry for a table or function.

Procedure
A table is denoted by the keyword TABLE, the language-independent tablename and a list of arguments. Each argument consists of , for example:
TABLE TEST_TAB(COLOR='red', PRICE=PRICE_1)
Here, COLOR and PRICE are formal parameters of the table, 'red' is aconstant, and PRICE_1 is a characteristic-specific variable.
A function is denoted by the keyword FUNCTION. The other entries for afunction are the same as for a table, for example:
FUNCTION TEST_FUN(COLOR='red', PRICE=PRICE_1)
Check the table or function entry at the cursor. Correct the error ifrequired. See also other possible causes of error (messages).
Special functions that read or change other configuration datainternally are identified with the keyword PFUNCTION. (The 'P' standsfor procedure.) These functions can only be used in proceduraldependencies, such as procedures and non-declarative selectionconditions. The argument list of a PFUNCTION can be empty.