cancel
Showing results for 
Search instead for 
Did you mean: 

Looping issue in Smartform

Former Member
0 Kudos

While activating the form, i came across a error called "A line of I_ITEMS and WA_ITEMS is not mutually convertible. In Unicode program, I_ITEMS must have same structure layout". But in program, i have defined both objects as follows..

Data: i_items TYPE STANDARD TABLE of ty_items.

Data: wa_items TYPE ty_items.

How to resolve this issue..

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

In Form Interface->Tables you need to give the declaration as itab like structure_name

Answers (2)

Answers (2)

Former Member
0 Kudos

If you are passing internal table from your program,it's struture should exist in ABAP dictionary.Even if you defined in your program,that is not sufficient.

Former Member
0 Kudos

If you are on NON-UNICODE system, uncheck the check box "Unicode Check active" from the attributes of the program. This will resolve your problem.