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

Upgrade-Macros error

Former Member
0 Likes
852

Hi all,

We are upgrading from 4.6C to ECC 6.0

I cam across dump when executing transaction.

It is telling

The following syntax error occurred in program "SAPLV61A " in include "RV64A900

" in

line 58:

"The "/" character is reserved for identification of namespaces. It mus"

"t be entered twice. The name of a namespace must be at least 3 charact"

In program i checked it is declared like this

* Macros for default handling
  DEFINE ASSIGN/DEFAULT.
  IF &2 IS INITIAL.
    *COM_TAX-&1 = &3.
  ELSE.
    *COM_TAX-&1 = &2.
  ENDIF.
  END-OF-DEFINITION.

Help me regarding this.

regards

Jai

1 ACCEPTED SOLUTION
Read only

mvoros
Active Contributor
0 Likes
595

Hi,

you just need to change name of that macro to something without /. For example ASSIGN_DEFAULT.

Cheers

2 REPLIES 2
Read only

mvoros
Active Contributor
0 Likes
596

Hi,

you just need to change name of that macro to something without /. For example ASSIGN_DEFAULT.

Cheers

Read only

Former Member
0 Likes
595

answered