hi Rameshwari,
use nokia reference doc for that, it shows how to enumerate contacts and each phone number within contact (it could be zero or more phone numbers in each contact:
Code:
Contact contact = (Contact) items.nextElement();
int telCount = contact.countValues(Contact.TEL);
....
// go through all the phone numbers
for (int i = 0; i < telCount; i++){
// check if it is a cell phone and put it at the beginning
// this doesn't necessarily work since in many cases it is
// up to the user to indicate whether it is a mobile phone
.....
http://www.forum.nokia.com/info/sw.n..._v1_1.zip.html
hth
regards,
Peter