2009 Oct 15 3:27 AM
Hi,
I am getting syntax error during data declaration, can someone give input on what the error means?
Error: Comma without preceding colon (after SIGN(1) ?).
*This is part of the program:*
DATA: Begin of TAB occurs 10.
sign(1),
option(2),
low like lfa1-lifnr,
high like lfa1-lifnr,
End of TAB.
Thanks.
2009 Oct 15 4:45 AM
DATA: Begin of TAB occurs 10,
sign(1),
option(2),
low like lfa1-lifnr,
high like lfa1-lifnr,
End of TAB.or
data: ra_tab type standard table of selopt.
DATA: Begin of TAB occurs 10,
sign(1),
option(2),
low like lfa1-lifnr,
high like lfa1-lifnr,
End of TAB.or
data: ra_tab type standard table of selopt.
2009 Oct 15 4:45 AM
DATA: Begin of TAB occurs 10,
sign(1),
option(2),
low like lfa1-lifnr,
high like lfa1-lifnr,
End of TAB.or
data: ra_tab type standard table of selopt.
2009 Oct 15 4:54 AM
Thank you, Jay. This is duplicate message posting, the issue is resolved. I put period instead of comma.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |