load( local!taskReport: a!queryProcessAnalytics( report: cons!CURRENT_TASKS_FOR_LOGGED_IN_USER_PORTALREPORT // it is a constant to point the saved report ), { a!sectionLayout( label: "Tasks assigned to me", firstColumnContents: { a!gridField( label: "", instructions:"", totalCount: local!taskReport.totalCount, columns: { a!gridTextColumn( label: "Task name", data: index(local!taskReport.data,"c0",{}), links: a!applyComponents( a!processTaskLink( _, _ ), merge( index(local!taskReport.data,"c0",{}), index(local!taskReport.data,"c9",{}) ) ) ) }, value: a!pagingInfo( startIndex: 1, batchSize: - 1 ) ) } ) } )