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

ASSIGN_REFERENCE_EXPECTED error in assign statement.

Former Member
0 Likes
1,989

hi all,

Iam upgrading the system from ecc4.6c to 6.0

igot a dump in the assign statement.

this is the statement:

assign src+fields_int-offset_src(fields_int-length_src)

to <f> type fields_int-type

decimals fields_int-decimals.

it is giving the error at this statament.

error analysis is :

The first operand specified with ASSIGN has type "14" and is therefore

no data reference.

will anyone solve this problem.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,261

hi,

increase the field length of fields_int-type or make use of a different field which has length greater tha or equal to fields_int-length_src field length.

Regards,

Santosh

2 REPLIES 2
Read only

Former Member
0 Likes
1,262

hi,

increase the field length of fields_int-type or make use of a different field which has length greater tha or equal to fields_int-length_src field length.

Regards,

Santosh

Read only

Former Member
0 Likes
1,261

Hi,

1.That is type conflicting while assigning to another variable.The value which needs to assign is Float ,which is assigned is integer.So it raising the error.

2.declare both as the same type.

Regards,

Shiva.