Hi Jayant Jape,
As you have assigned the value for parameter from the field from dataset, you can use ORDER BY clause in order to display the customer name in ascending order in query.
for eg:
SELECT DISTINCT WCSR.CUSTOMER_NAME
FROM CUSTOMER
ORDER BY CUSTOMER_NAME
Please let me know if it works.
Anupama