Solved

Get the FME Form Release Info In Workspace

  • 8 January 2024
  • 4 replies
  • 5 views

Badge +2

Hello there,

 

I looked into FME system parameters and Python APIs to find a programmable way to identify release info, such as 2023.2.1, etc., in an FME Form session, to no avail. I would appreciate you sharing your approaches.

 

Bo

icon

Best answer by joepk 8 January 2024, 10:00

View original

4 replies

Userlevel 4
Badge +17

Could this be what you are looking for?

Userlevel 4
Badge +17

You can also find these in the User Parameter dropdown menu: image

Userlevel 4

Could this be what you are looking for?

+1 for this. Alternatively, you can also query the FMESession object, although the result should be the same as using the constants:

import fmeobjects
 
fme_build = fmeobjects.FMESession().fmeBuildNumber()  # e.g. 23764
fme_version = fmeobjects.FMESession().fmeVersion()  # e.g. 'FME 2023.2.0.0'

 

Badge +2

Thanks, @joepk​  and @david_r​ !

Reply