BEGIN
   SELECT order_no, customer_no, Customer_API.Get_Name(customer_no)
   FROM   order_head
   ORDER BY customer_no;
END;