Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Syntax error

Former Member
0 Likes
283

Hello friends , We are upgrading to Ecc 6 and I have a problem with one of the statement.

In the below statement

{

BEGIN OF I_MSEG OCCURS 0,

MBLNR LIKE MSEG-MBLNR, "Number of material document

MATNR LIKE MSEG-MATNR, "Material number

WERKS LIKE MSEG-WERKS, "Plant

LIFNR LIKE MSEG-LIFNR, "Vendor's account number

EBELN LIKE MSEG-EBELN, "Purchase order number

EBELP LIKE MSEG-EBELP, "Purchase order line item

END OF I_MSEG,

FIELD-SYMBOLS: <FS_MSEG> LIKE I_MSEG.

FORM F112_CHECK_SFR_ERRORS TABLES P_P_I_PTAB STRUCTURE I_PTAB

USING P_V_INCO1

P_V_SFR_TERMS

  • P_<FS_MSEG>_MBLNR*

C_T

C_F

C_E

C_X

P_V_SUBRC

CHANGING P_<FS_ITAB>_SFR_STATUS.}

IN the previous version it was a warning message, but noe in 6.0 its an error message.

Error - In Release 4.0, the special character "<" - as here in the name "P_<FS_MSEG>_MBLNR" - is no longer allowed.

ANy Suggestions

1 REPLY 1
Read only

GuyF
Active Participant
0 Likes
266

Hi.

Try to remove the < > signs from the parameters names.

Guy.