I have two tables. (1) Issue_tbl (2) comments_tbl. I want to show issue_id wise comments into COMVIEW column from Comments_tbl and other columns data are showing from Issue_tbl. (Where comments_tbl.Issue_lnk=issue_tbl.issue_id)
Here I used a dynamic action. Page load, Action= set value,
Sql Statement: select comment_name from comments_tbl
where
comment_date=(select max(comment_date) from comments_tbl where issue_lnk=:ISSUE_ID)
Affected Elements: Columns > COMVIEW.
But data not showing.
Please help about …….