Skip to main content
Solved

How can I retrieve the value of rhSysLogo in IFS Report Studio?

  • August 18, 2025
  • 5 replies
  • 87 views

Forum|alt.badge.img+14

Hello,
In IFS Report Designer, we were able to retrieve the value of “rhSysLogo” in the report XML, which contained the name of the company logo file.
How can we do this in IFS Report Studio?

 

I don't see how to access the value in the XML:

 

Thanks.

Best Regards

Best answer by CSGarethF

Try setting the Image Source property to the following:

Logo(StringCase(3,[PURCHASE_ORDER_PRINT_REP_REQUEST.PURCHASE_ORDER_PRINT_REP_ARCHIVE_VARIABLES.VARIABLE].Join([VALUE],',')))

This will combine all of the values from the VALUE property into a single string, concatenated by a comma.  Then the StringCase function will be used to pull only the value with the correct index, and Logo will tell it to look for the matching file in the Report Logos page.

5 replies

Forum|alt.badge.img+14
  • Author
  • Hero (Partner)
  • August 19, 2025

Can anyone at IFS help me?

There are no videos on IFS Academy and the documentation does not mention this important topic.


Forum|alt.badge.img+6
  • Sidekick (Partner)
  • December 9, 2025

The rhSysLogo value is stored in the 2nd item in the %REPORT_ID%ARCHIVE_VARABLES.VARIABLE collection in the json, so you need to write an expression that only pulls through the VALUE from the 2nd item. 

 


Forum|alt.badge.img+14
  • Author
  • Hero (Partner)
  • December 29, 2025

Hello,
For me, it's the fourth item.
I've tried everything, but it's impossible... I tried to access the correspondence entry via [3], but it doesn't work.


Forum|alt.badge.img+6
  • Sidekick (Partner)
  • Answer
  • January 5, 2026

Try setting the Image Source property to the following:

Logo(StringCase(3,[PURCHASE_ORDER_PRINT_REP_REQUEST.PURCHASE_ORDER_PRINT_REP_ARCHIVE_VARIABLES.VARIABLE].Join([VALUE],',')))

This will combine all of the values from the VALUE property into a single string, concatenated by a comma.  Then the StringCase function will be used to pull only the value with the correct index, and Logo will tell it to look for the matching file in the Report Logos page.


Forum|alt.badge.img+14
  • Author
  • Hero (Partner)
  • January 5, 2026

Thank you for your feedback, it works fine.

IFS should implement a function to retrieve this value much more easily.

Have a nice day.