Hi Team,
In DP class i am getting value from contract class.
In DP class i am using List.
In list having values like <'8', '7', '4', '3', '6', '2'> and storing those values in container.
Below code i am using.
ListEnumerator listIterator;List _id;Container con;_id = Contract.parmPurchId();listIterator = _id.getEnumerator();while (listIterator.moveNext()){ con += listIterator.current();}
Currently in con value is storing ['8', '7', '4', '3', '6', '2'].
But i want in con value should be in as ascending order.
Please let me know how do i get the value in ascending order.