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

Structure enhancement problem

Former Member
0 Likes
473

Hi experts.

I have a need to enhance c_fcode structure in LIREV1TOP.

After implementation part and put some code the INCLUDE is not able to activate...


CONSTANTS: BEGIN OF c_fcode,
              ....
             odisplay TYPE fcode VALUE 'ODISPLAY',
             odelete  TYPE fcode VALUE 'ODELETE',
             admi   TYPE fcode VALUE 'ADMI',
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(1) Strukt. C_FCODE, Kon.                                                                                S
*$*$-Start: (1)---------------------------------------------------------------------------------$*$*
ENHANCEMENT 5  ZIREV1.    "active version
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(4) Strukt. C_FCODE, Kon., Rozszerzenie ZIREV1, Rozp.                                                                                S
             var TYPE fcode VALUE 'CODE',                                                        <<<<<<<<<<<<<< there is enhanced part
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(5) Strukt. C_FCODE, Kon., Rozszerzenie ZIREV1, Kon.                                                                                S
ENDENHANCEMENT.
*$*$-End:   (1)---------------------------------------------------------------------------------$*$*
           END   OF c_fcode.

I have "Comma without preceding colon (after VAR ?)." ...

Any idea ?

Thanks in advance.

Daniel.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
414

Hi,

use:

CONSTANTS: var TYPE fcode VALUE 'CODE'.

Roy

2 REPLIES 2
Read only

Former Member
0 Likes
415

Hi,

use:

CONSTANTS: var TYPE fcode VALUE 'CODE'.

Roy

Read only

0 Likes
414

solved,

thanks