Error232:Missing FOR,FIND or CREATE for a table

Elite237

New Member
I am trying to pass parameters, but this mistake goes out for me. Already define and declare the parameters, and when I try to do called from a button not leave me.This way I give the orders to call it:

RUN contabilidad.w(poliza, cve_empresa, cve_zona).

And this mistake appears:
Error232:Missing FOR,FIND or CREATE for a table with poliza in current block.

Does someone know because?
 

zee

New Member
In the procedure contabilidad.w you need to reference the table which contains poliza.

(Reference the table before referencing its fields using FIND, DO FOR, FOR EACH, CREATE or IF AVAILABLE statements.)
 
Top