‎2007 May 03 2:26 PM
Hi all ,
while working on upgrade i got an error of offset and i am not able to rectify it.
i think the error is in spell structure bcoz it contains one integer having length 3.
bcoz of it is not allowing it to clear .
please help me and tel me the solution.
thanks in advance
getting error in this line :
CLEAR spell+(403).
i tried this but not working :
CLEAR : spell+(18),
spell+18(3),
spell+21(382).
error i am getting :
The length declaration "403" exceeds the length of the character-type
start (=18) of the structure. This is not allowed in Unicode programs .
‎2007 May 03 2:32 PM
From the Structure of Spell find the fields which are in the range of 0 -> 403, clear the fields individually from the Structure.
Hope that Helps
Anirban M.
‎2007 May 03 2:32 PM
‎2007 May 03 3:17 PM
‎2007 May 03 4:20 PM
have you tried this , use the starting position 0 as below,
clear v_char+0(403) .
or this
clear v_char+0(403) with space.Reward ans close thread if helpful
‎2007 May 03 2:32 PM
From the Structure of Spell find the fields which are in the range of 0 -> 403, clear the fields individually from the Structure.
Hope that Helps
Anirban M.
‎2007 May 04 7:31 AM
hi all ,
thanx 4 ur support and replies
my problem is resolved by clearing each field individually.
thank u very much .
‎2007 May 04 7:58 AM
‎2007 May 04 10:35 AM
yar i am trying but it is not allowing me to give reward points.
‎2007 May 03 2:35 PM
Hi
Why you are using the number 403 here
CLEAR spell+(403).
use the actual size of the field
you can give max of 132 char text.
Reward points if useful
Regards
Anji
‎2007 May 03 2:35 PM
‎2007 May 03 2:37 PM
try this
clear v_char+0(403) .
or this
clear v_char+0(403) with space.Message was edited by:
Chandrasekhar Jagarlamudi
‎2007 May 03 2:39 PM
Hi Anit,
clear spell+0(3) .
or this
clear spell+0(3) with space.
Reward points if helpful.
Regards,
Hemant