Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
What is the meaning of the syntax.
CALL TraceRowCount('Aircraft Types');
You are calling the Sub routine with name "TraceRowCount" and Parameter "Aircraft Types"
This will give you Total row count of the Table "Aircraft Types"
Possible code could be
Sub TraceRowCount (vTableName)
TRACE "Total Rows of Table " $(vTableName) &'is:' & NoOfRows('$(vTableName)');
End Sub
You are calling the Sub routine with name "TraceRowCount" and Parameter "Aircraft Types"
This will give you Total row count of the Table "Aircraft Types"
Possible code could be
Sub TraceRowCount (vTableName)
TRACE "Total Rows of Table " $(vTableName) &'is:' & NoOfRows('$(vTableName)');
End Sub