Hi Experts!
I understand SAS Viya Jobs can get input parameter values from the (1) URL:
https://documentation.sas.com/doc/en/jobexeccdc/v_004/jobexecug/n0zbw74vpejkqsn1hq1leqlgrrcg.htm

or from a (2) prompt/html form:
https://documentation.sas.com/doc/en/jobexeccdc/v_004/jobexecug/p169gfaxth918ln1c6w5hiqz3ngu.htm

Is it actually possible to pass parameters to a SAS Viya job first form the URL -> then to the HTML form -> then both set of paramers get passed to the sas code? How can we achieve this?
such that if I call my URL Job from my iframe like this:
https://<domain>/SASJobExecution/?_program=%2FFOLDERNAME%2FJOBNAME¶mter1=value
the job can recognize the value declared for parameter1, and at the same time, still allow users to select the value for parameter2 (via HTML form).
This is because my SAS Viya Job is embedded in an ifram within SAS Visual Investigator where SAS VI passes a parameter1 to the SAS Viya Job. But at the same time, we were hoping to use the HTML form to still allow the users to select a value for parameter2. Then I want to execute the SAS Viya job based on parameter1 and parameter2.
Looking forward to your recommendations! Thank you!