Revision is VERSIONIDA2VERSIONINFO
Iteration is ITERATIONIDA2ITERATIONINFO
Therefore
select VERSIONIDA2VERSIONINFO || '.' || ITERATIONIDA2ITERATIONINFO
will return you something like "A.1" (revision.iteration) if you're interested in including the . in the result.
Here is a sample query to get the filename in VAULTS of a EPMDoc
select
mas.cadname cadname,
doc.VERSIONIDA2VERSIONINFO || NVL2(doc.oneOffVersionIdA2oneOffVersi ,'-' || doc.oneOffVersionIdA2oneOffVersi,'') || '.' || doc.ITERATIONIDA2ITERATIONINFO ver,
ad.modifystampa2 modified,
ad.role role,
M.path,
to_char(fi.uniquesequencenumber,'0000000000000x') vault_filename,
ad.filename,
m.status,
ad.filesize filesize_bytes
from
holdertocontent hc,
applicationdata ad,
fvitem fi,
EPMDocument doc,
EPMDocumentmaster mas,
FVMOUNT M
where
hc.ida3b5 = ad.ida2a2
and ad.ida3a5 = fi.ida2a2
and hc.ida3a5=doc.ida2a2
AND Fi.ida3a4= m.ida3a5
--and ad.role='THUMBNAIL'
and doc.ida3masterreference=mas.ida2a2
--and mas.cadname in ('cadfile1.prt','cadfile1.drw')
and mas.cadname like 'cadfile%.prt'
order by
mas.cadname,
ver,
role