There is requirement to develop a package to submit concurrent request through backend using fnd submit API.
Whenever they pass user id, repsonsibility id, program name and its parameters it should submit the request.
User will use the number arguments as per the concurrent program.
How use fnd_submit inside the package function without knowing how many program parameters being passed as we don't know which program they submit.
Is it possible to have variable number of arguments in plsql like when concurrent program xyz has n number of parameters then the package function should use same n number of input parameters in fnd_submit API when they call this package function to submit xyz cp by passing n number of input parameters along with user id, responsibility id, cp name etc.?
Is it possible to achieve this requirement?