View previous topic :: View next topic |
Author |
Message |
durgamallesh Beginner
Joined: 16 Aug 2004 Posts: 12 Topics: 6 Location: United Kingdom
|
Posted: Tue Oct 11, 2005 5:30 am Post subject: foc281 error in focus |
|
|
Hi All,
I am trying to run a report in focus and I am getting the following error.
EX GLX072 USER='WZBA',
ERROR AT OR NEAR LINE 314 IN PROCEDURE GLX072 FOCEXEC
(FOC281) ALPHA ARGUMENTS IN PLACE WHERE NUMERIC ARE CALLED FOR
This is the 314th line in the code
-SET &AMNT = &AMNT * 1;
The version of the focus we are using is 7.2.5.
We were able to run the report without any problem before the focus upgrade.
Any suggestions on this..??
Thanks and regards,
Mallesh. _________________ S.Durga Mallesh,
Project engineer. |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12376 Topics: 75 Location: San Jose
|
Posted: Tue Oct 11, 2005 7:33 am Post subject: |
|
|
durgamallesh,
Code: |
-SET &AMNT = &AMNT * 1;
|
I assume there is a -(hypen) minus sign in the above statement which is being treated as ALPHA .
btw statement you have shown does not make any sense. why do you have to multiply it by 1 as it does not make any difference to the target.
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
ANIL SARATHY Beginner
Joined: 30 Aug 2005 Posts: 88 Topics: 3 Location: Syracuse,New york
|
Posted: Tue Oct 11, 2005 8:10 am Post subject: |
|
|
in 7.3 it is used to assign long strings .
-SET &AMNT = &AMNT ; but there is no meaning in this.
i will check this _________________ Anil Sarathy |
|
Back to top |
|
|
|
|