Pass parameters to report definition using activity. Pega8.6

I have created a report definition under -Data layer and I have set parameter there as a filter.

Report Definition

Now, I want to call this report under work layer and pass the parameter using activity.

Activity

How can I do that ?

1 Answer

Well best practice is to call that Report Definition through a parametrized Data Page if parameters are very few.

Any way you can still pass those parameters to any called Activity by using bellow steps.

  1. Create one Property-Set method before calling report definition and set these parameters.

    Param.pyReportName = "YourReportName"

    Param.pyReportClass = "YourReportClass"
    Param.pyPageName = "PageName"
    Param.GradeParameter = "ValueOfGradeParameter"
  2. Now call the report calling activity(your 6th step) with Pass current parameter page check box checked. By checking this check box you can pass all the parameters to the called Activity which you set in the main Activity.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like