Skip to main content
Solved

Report Studio- Dynamic Signatures

  • July 15, 2025
  • 1 reply
  • 71 views

Forum|alt.badge.img+7

Hello,

 

I have been exploring the new report studio functionality in IFS Cloud 24R2. I was trying to figure out how the dynamic signatures worked. I was able to utilize the Signature function but was hoping to dynamically change the signature based off a condition in Report Studio. In report designer, you were able to pull this in using a SQL statement but it seems to use a DB Image function instead? I tried using the DB Image() functionality but I keep printing blanks. My function syntax is this: DBImage('report_signatures','IMAGE' ,'image_name=IFS.jpg')

 

My question is if I want to utilize the DBImage functionality, how could I use it for static data and columns within a report? For example, if I wanted to change the signature depending who is the salesperson on the customer. I feel like I may be missing something simple but I was hoping to get some direction on this. Thank you. 

Best answer by jayoneil98

 I found another way to do this in Report Studio. I found I was able to concatenate who printed the report like shown below to grab the signature:

 

Signature(Concat([CUSTOMER_ORDER_CONF_REP_REQUEST.PROCESSING_INFO.PROCESSING_ATTRIBUTES.PRINTED_BY], '.jpg')) - this syntax will print the signature based off who printed the order conf. 

1 reply

Forum|alt.badge.img+7
  • Author
  • Hero (Customer)
  • 14 replies
  • Answer
  • August 6, 2025

 I found another way to do this in Report Studio. I found I was able to concatenate who printed the report like shown below to grab the signature:

 

Signature(Concat([CUSTOMER_ORDER_CONF_REP_REQUEST.PROCESSING_INFO.PROCESSING_ATTRIBUTES.PRINTED_BY], '.jpg')) - this syntax will print the signature based off who printed the order conf.