QUERY-OFF-END ( query-name )A character expression that evaluates to the name of a currently open query. If query-name does not resolve to the name of a query, or if the query is not open, then the function returns the Unknown value (?).
OPEN QUERY cust-query FOR EACH Customer.REPEAT:GET NEXT cust-query.IF QUERY-OFF-END("cust-query") THEN LEAVE.DISPLAY Customer.CustNum Customer.Name.END.
© 2013 Progress Software Corporation and/or its subsidiaries or affiliates. |