Skip to main content
Solved

Get the FME Form Release Info In Workspace

  • January 8, 2024
  • 4 replies
  • 11 views

bo
Contributor
Forum|alt.badge.img+10
  • Contributor
  • 79 replies

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

Best answer by joepk

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

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

4 replies

joepk
Influencer
Forum|alt.badge.img+20
  • Influencer
  • 144 replies
  • January 8, 2024

Could this be what you are looking for?


joepk
Influencer
Forum|alt.badge.img+20
  • Influencer
  • 144 replies
  • Best Answer
  • January 8, 2024

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


david_r
Celebrity
  • 8394 replies
  • January 8, 2024

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'

 


bo
Contributor
Forum|alt.badge.img+10
  • Author
  • Contributor
  • 79 replies
  • January 8, 2024

Thanks, @joepk​  and @david_r​ !