테스트로 책에있는
report ztest000001.
data l_1 type p decimals 1 value '1.1'.
data l_2 type p decimals 1 value '2.1'.
data l_3 type p.
l_3=l_1*l_2.
write:l_3.
이걸 실행시키면
Statement "L_3=L_1*L_2" is not defined. Please check your spelling.
이렇게 뜨는데 왜 에러가 뜨는건가요?
l_3 = l_1 * l_2.
곱하기 있는 곳을 뛰어쓰셔야 합니다..