Jump to content
Changes to the Jaspersoft community edition download ×

SQL Query To Show All Report Schedule Parameters


wcbutler

Recommended Posts

Hello,

I have reports written that are emailed to a variety of folks on the campus I work on. They are written so that I have a query that pulls a parameter to grab a group out of the system it's reporting on and it that is used a a drop-down. Another field is an open field to type in the number of days back. Those are then used when scheduling and let me customize reports for a multi-tenancy system to send to a certain liaison.

So I have a need to report off the reporting system, and I have a report showing all the email schedules. The one piece of data I cannot find is what is included in those parameters. 

If there is a field that even says "13 down" on the parameter dropdown, I could easily report off that using a subquery.

I see a table called jireportjobparameter I would expect to see the information but it shows the job ID, parameter name, and it does show a parameter_value field but it's just reporting a size (example - (BLOB) 9 bytes). I also see a jireportunitinputcontrol that I'd expect to join to jiinputcontrol. jiinputcontrol does have a control_index but it seems to be 0, 1, or 2 where my parameter list is hundreds of items long so I assume that is the index number of the inputs on the report since I only normally have a few.

Just some pointing in the right direction would go far. I'm pretty good at reverse engineering databases (hence why I'm the Jasper reporting guy). Thanks!

Link to comment
Share on other sites

  • Replies 4
  • Created
  • Last Reply

Top Posters In This Topic

Thank you for posting to the Jaspersoft Community. Our team of experts has read your question and we are working to get you an answer as quickly as we can. If you have a Jaspersoft Professional Subscription plan, please visit https://support.tibco.com/s/ for direct access to our technical support teams offering guaranteed response times.
 

Link to comment
Share on other sites

  • 2 weeks later...

The content of jireportjobparameter.parameter_value field is a Java object that only the JRS class method can decipher, such as (with bytea 'escape' encoding):

25435500sr00java.util.ArrayListx201322231307a23500I00sizexp000000w000000t001t003x
 

Instead of attempting with SQL query to encode, you should use JRS REST call report job service to get the listed parameter values from the job definition:

 

GET http://<host>:<port>/jasperserver[-pro]/rest_v2/jobs/<jobID>/
 

From the return of the REST call, you should see the parameter information in the json job descriptor, something like:

 

    "source": {
        "reportUnitURI": "/public/TTC/Slack/20230602/Cascading_multi_select_topic",
        "parameters": {
            "parameterValues": {
                "Country_multi_select": [
                    "USA"
                ],
                "Cascading_name_single_select": [
                    "A & U Stalker Telecommunications, Inc"
                ],
                "Cascading_state_multi_select": [
                    "CA",
                    "OR"
                ]
            }
        }
    },
---------------------------------------------------------

For more information, please refer to "TIBCO JasperReports® Server REST API Reference" document.

 

https://community.jaspersoft.com/documentation/tibco-jasperreports-server-rest-api-reference/v790/jobs-service#Viewing_a_Job_Definition

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...