‎2008 Apr 25 8:41 AM
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.
‎2008 Apr 25 8:46 AM
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
‎2008 Apr 25 8:46 AM
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
‎2008 Apr 25 8:47 AM
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.