Solidworks PDM API, How to get "Found in Version" column value when searching using VBA

In Solidworks PDM API,
I can able to search and traverse through search result using searchResult.GetNextResult().
How to get “Found in Version” column value?

Already tried BatchListing, it gives information about custom variables only.

Please let me know, if any other additional information needed.

Hi @AmenJlili,

Currently using,

Set edmSearch = edmVault.CreateSearch2
edmSearch.fileName = “SearchText”

Set edmResult = edmSearch.GetFirstResult
Do While Not edmResult Is Nothing
batchListing.AddFileCfg edmResult.ID, Date, currentPos, configName, EdmListFileFlags.EdmList_MayNotReadFile
Set edmResult = edmSearch.GetNextResult
Loop

'batchListing.CreateListEx “SearchResultColumnName”, EdmCreateListExFlags.Edmclef_MayReadFiles, edmEdmListColumns
(Or)
'batchListing.CreateListEx “ListOfVariableSperatedBy\n”, EdmCreateListExFlags.Edmclef_MayReadFiles, edmEdmListColumns

batchListing.GetFiles2 edmEdmListFiles

Is there any other way to get variables of search result without using batchListing?