I think TN Console used to be able to export the results of a profile query but I’m not sure. In any case, 6.1 doesn’t have that feature. 
There are a couple of ways for a do-it-yourselfer:
** Approach 1
Call wm.tn.profile:getProfileSummaries
The returned document list is a list of documents of the type defined by wm.tn.rec:ProfileSummary. Each document contains a variety of fields associated with a profile. You can use the ProfileID field that is returned to go get more stuff using the services in wm.tn.profile.
With this list, you can create your delimited strings holding the profile fields of interest and write them to a file. Or you could go all out and use the FF adapter to do that work.
** Approach 2
wm.tn.query:createProfileQuery
– set the parms to restrict results as desired
– this basically constructs the SQL statement under the covers
wm.tn.query:profileQuery
– set disablePaging to true
The output is a document list. The fields returned are
– PartnerID - the internal TN ID
– CorporationName
– UnitName
– Status
With this list in hand, you can use wm.tn.profile services to retrieve additional data.
To output, you’d do the same as approach 1 above.
HTH
#webMethods#Adapters-and-E-Standards#Integration-Server-and-ESB