When we create any activity in Code-Pega-List class??
@AbhishekC1725 Whenever pega does a search and get a list of results, in the run time pega uses a page of class Code-Pega-List and output will be held in pxResults. So whenever we want to search something and gets results we would need to create activity in code-pega-list class because in the run time the step page context will be code-pega-list and as activity is created in code-pega-list context pega will execute the activity which we created. For eg:- we have created a Data page and structure is List(in pega terms it is a search and get results mechanism), if you select source as activity and click on gear icon to create activity, it will be created in Code-pega-List class.
You can refer below URL also for pdn explanation
@AbhishekC1725 Hi,
Whenever you Create a Data Page of list type you have to create your source which is activity/data transform in code-pega-list.
@Anoop Krishna Thanks for information
@SrinidhiM Thanks for explanation