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

Unicode Error

Former Member
0 Likes
474

Hi All,

i am working in Unicode Conversation project. my program soing error for this code.pelease help me.

DATA: QTY LIKE SUMMARY-P1Q.

DO 15 TIMES

VARYING QTY FROM FLD1 NEXT FLD2.

WRITE: (14) QTY DECIMALS 2.

ENDDO.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
441

Hi friend,

it is common unicode Error.

write this code ur problem will solv.

DATA BEGIN OF LT_SUMMARY OCCURS 1.

INCLUDE STRUCTURE SUMMARY.

DATA END OF LT_SUMMARY.

LT_SUMMARY-P1Q = FLD1.

LT_SUMMARY-P2Q = FLD2.

DO 15 TIMES

VARYING QTY FROM LT_SUMMARY-P1Q NEXT LT_SUMMARY-P2Q.

WRITE: (14) QTY DECIMALS 2.

ENDDO.

2 REPLIES 2
Read only

Former Member
0 Likes
441

whats the error

Read only

Former Member
0 Likes
442

Hi friend,

it is common unicode Error.

write this code ur problem will solv.

DATA BEGIN OF LT_SUMMARY OCCURS 1.

INCLUDE STRUCTURE SUMMARY.

DATA END OF LT_SUMMARY.

LT_SUMMARY-P1Q = FLD1.

LT_SUMMARY-P2Q = FLD2.

DO 15 TIMES

VARYING QTY FROM LT_SUMMARY-P1Q NEXT LT_SUMMARY-P2Q.

WRITE: (14) QTY DECIMALS 2.

ENDDO.