Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Uknown System Variable (@DTL_TAXTTL)

Status
Not open for further replies.

Milos MNE

Programmer
Oct 14, 2021
10
ME
Hi,

I'm trying to get the tax amount from every check item and I've found in SIM manual that system variable for that is @DTL_TAXTTL but when I try using it I keep getting this message:

dtl_taxttl_hakbyx.png


The code I'm trying to test it is:

event inq:1
var i:n5
var count:n5 = 1

if @numdtlt = 0
exitcontinue
endif

window 10, 50

for i = 1 to @numdtlt
display count, 1, "Detail ", @dtl_type
count = count + 1
endfor
waitforclear
endevent

Can anyone help me?

Regards,
Miloš.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top