Hi vidz,
check out the EUM API for this
(<HPBSM>\AppServer\webapps\site.war\amdocs\eng\doc_lib\API_docs\EUM_API\jd\index.html),
there are functions like
Class SrScriptBean
getSrVersions() - Get all the script versions.
and alike.
If you know the script id, you can also use for example cURL to retrieve the version of that specific script
curl -G -u <user>:<pass> "<GW>/topaz/eumopenapi/sr/script/11"
..
<script_id>11</script_id><name>SGTest1</name>
<sr_versions>
<version><version_id>8</version_id><version_number>1.1.1</version_number><description></description><version_transactions/></version>
<version><version_id>9</version_id><version_number>1.1.2</version_number><description></description><version_transactions><transaction_name>Step_0</transaction_name></version_transactions></version>
<version><version_id>10</version_id><version_number>1.1.3</version_number><description></description><version_transactions><transaction_name>Step_0</transaction_name></version_transactions>
..
Greetings
Siggi