cancel
Showing results for 
Search instead for 
Did you mean: 

SAPscript : Syntax Check for ITF Control Commands '=' or ':=' expected

Former Member
0 Kudos

Hi Guru's !!

I have copied the Standard Script into Zscript and I have added some of the Windows, also I am using the Standard driver program along with external Performs. according to the design and changes, Form is working fine but if I check the Syntax of Form (what I copied from Standard one to Zscript) it is giving error as

SAPscript : Syntax Check for ITF Control Commands '=' or ':=' expected

In the Form (SAP SCRIPT SE71) I have Chooses path as Form -> Check -> Texts to check the syntax

I have noticed this error will appear in the Window when ever I have used External Subroutine(Perform)

define &V4&

perform TOTAL in program ZR_TEST

using &V1&

using &V2&

using &V3&

changing &V4&

this is the code I have written. If I used the above code Form is working fine, but it is giving error while we check the Syntax of the Form. Form -> Check -> Texts and the error it is coming as

define &V4&

'=' or ':=' expected <this is the error automatically coming when we check the syntax, this line I have not written in code>

perform TOTAL in program ZR_TEST

using &V1&

using &V2&

using &V3&

changing &V4&

If any one knows how to resolve this, please suggest me what needs to be done.

Regards,

valluru

Edited by: vallurukishore on Sep 28, 2011 7:40 AM

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

hi,

please initialize your variables here defined by define statement by either := or = preferrably by := , I suupose this should solve your isuue,

BR,

Daljeet singh

Former Member
0 Kudos

Tnks Singh

Edited by: vallurukishore on Sep 28, 2011 1:05 PM