Pass Additional Parameters in a Data Page

I have a system where more than 70 Data pages are present, calling different APIs, and all of them take 2 parameters : CaseID and CustomerID.

Now, I have to introduce a new parameter called traceID, which will be invoked within a re-usable code in every Data Page anyway, but I do NOT want to create a new version of the 70 Data Pages, and pass a new parameter called traceID in addition to the existing 2 params.

Question : can the new param automatically be passed somehow, without specifying it as a parameter in the Data Page explicitly ? Is there something like a AdditionalParameterPage on which I can set the param, and it will automatically be passed into the Data Page ?

@VTALUKDAR

After giving some effort I have two points to put here.

1- Even if you will able to add the parameter in Pre reload of D page , In run time DPage will ignore the newly introduced parameter and it will not give the desired output as you need. Hence it is not possible.

2- If you have checked pass current parameter page checkbox while referring the Data page in your pre load then it is possible to add parameters as well. but during run time whether D page will accept the new parameter , that i doubt.

Overall I think it is impossible.

Please let me know if you have found any solution for this.

@VTALUKDAR

No. However, I recommend creating a new version of 70 data pages and passing the traceid parameter along with 2 other parameters from a best practice standpoint.

@VTALUKDAR Data pages always expects parameters and it will be sent to Data Sources, so it is not possible to send any param without mentioning it.

All excellent points.

I see no other way , but to create a new version of all the data pages. Will do it.

Thanks a lot for your answers !