Posted on Friday, August 3, 2012 Show interactive report single row view after submit Category APEX Tips and Tricks Here is how you can open interactive report single row view after page submit or page load.Example is based on my previous post Show detail report for IR single row view record and idea from Jim to show tabular form instead of report when go single row view. Unfortunately we did not get wizard created tabular form working on this case, but workaround is create so called "manual" tabular form.NOTE! in this example we use undocumented IR JavaScript function gReport.controls.row. This function may change or not exists in coming APEX versions.Comparing previous example change hidden item Px_CUSTOMER_IDSource Used: Only when current value in session state is nullSource Type: Static Assignment (value equals source attribute)Edit in earlier post created dynamic action "Hide detail report" and add true actionAction: Set ValueFire On Page Load: FalseSet Type: JavaScript ExpressionJavaScript Expression:nullSelection Type: Item(s)Item(s): Px_CUSTOMER_IDCreate new dynamic action. Select Advanced:Name: Go Single Row ViewEvent: Page LoadCondition: No ConditionAction: Execute JavaScript codeCode:gReport.controls.row($v('Px_CUSTOMER_ID')); Selection Type: NoneGo edit dynamic action and add another true actionAction: ShowFire On Page Load: FalseSelection Type: RegionRegion: {select your report/tabular form region}Edit dynamic action and add condition type "Request=Expression 1" and enter to Expression 1 "GO_SINGLE_ROW"Next edit your page branch that lead backto same page and add to Request "GO_SINGLE_ROW".See working example.