cancel
Showing results for 
Search instead for 
Did you mean: 

Basic while printing records issue

Former Member
0 Kudos

HI I want to simply total the formula in the third line below, but am getting message that 'its not part of' what is the syntax needed?

Shared numbervar STDTOTAL;

Whileprintingrecords

STDTOTAL:= {@Std_cost_r} * {ACBALMPK.IRQOH#}

Accepted Solutions (1)

Accepted Solutions (1)

vitaly_izmaylov
Employee
Employee
0 Kudos

You forgot semicolon after Whileprintingrecords, it should be :

Whileprintingrecords;

Please note: if you are using Shared variables, it is not required to specify the evaluation time, because formulas with Shared variables reviewed in Whileprintingrecords only

Vitaly

Answers (0)