Introducing the all-new TIBCO Community site!

For current users, please click "Sign In" to reset your password and access the enhanced features. If you're a first-time visitor, we extend a warm welcome—click "Sign Up" to become a part of the TIBCO Community!

If you're seeking alternative community sites, explore ibi, Jaspersoft, and Spotfire.

Jump to content

How to convert 12hours time format to 24 hours format in TIBCO BW


TADISETTI -

Recommended Posts

Hi,Try using below function to change the format, this parse the date to 24hr formatif(contains(<<date_parameter>>, 'AM') or contains(<<date_parameter>>, 'PM'))

thentib:trim(tib:parse-dateTime('MM/dd/yyyy hh:mm:ss a',  <<date_parameter>>))

else

tib:parse-dateTime('MM/dd/yyyy HH:mm', <<date_parameter>>)

Link to comment
Share on other sites

×
×
  • Create New...