Skip to Content
0
Former Member
Jan 03, 2008 at 11:49 AM

Runtime error in Field catalog creation

34 Views

when i try to create the field catalog using the following code.

am getting *'Field Symbol Is not assigned' Runtime error.*

Please give me idea how to resolve this issue.

data: wa_field type slis_fieldcat_alv,

t_field type slis_t_fieldcat_alv.

LOOP AT t_role INTO wa_role.

wa_field-col_pos = count1.

wa_field-fieldname = wa_role-agr_name.

wa_field-datatype = 'CHAR'.

wa_field-ref_fieldname = 'AGR_NAME'.

wa_field-ref_tabname = 'AGR_1251'.

APPEND wa_field TO t_field.

count1 = count1 + 1.

ENDLOOP.

Suitable Answers rewarded with maximum points....

it's Urgent...

Give me Quick Reply.