Skip to main content

Quick report

  • March 30, 2026
  • 4 replies
  • 39 views

Forum|alt.badge.img+7

Hi all,

 

I have created a quick report in IFS10 containing price information. 
In this quick report, I would like to select the vendor_no value from a list of values ​​when generating the report. Is this possible?
If so, how can I achieve this?

 

Thanks

Ozge

4 replies

Forum|alt.badge.img+2
  • Do Gooder (Customer)
  • March 30, 2026

I’m guessing you are already aware of how to code the report so that it allows the user to enter a  parameter via textbox? 


Forum|alt.badge.img+8
  • Do Gooder (Partner)
  • March 31, 2026

Hi ​@Ozge ,

 Yes, it is possible. You need to define vendor_no as a parameter in the Quick Report and attach a List of Values (LOV) to it. This can be done either by using a predefined LOV or by creating a custom query (e.g., selecting vendor_no from supplier_info). When running the report, users will then be able to pick the vendor from a list instead of entering it manually.


Forum|alt.badge.img+7
  • Author
  • Sidekick
  • March 31, 2026

Hi ​@Lingesan08,

 

First of all, thank you for your response.

Could you share an example SQL code that I can integrate into the relevant quick report, allowing the user to select vendor_no from a list of values?

 

Thanks

Ozge


Forum|alt.badge.img+8
  • Do Gooder (Partner)
  • March 31, 2026

Hi ​@Ozge ,

 You can use :vendor_no as a parameter in your Quick Report SQL. Then configure the parameter to use a List of Values (LOV), either by linking a standard supplier LOV or by using a custom query like SELECT vendor_no, name FROM supplier_info. This allows users to select the vendor instead of entering it manually.