/* *+------------------------------------------------------------------------+ *| Licensed Materials - Property of IBM *| BI and PM: prmt *| (C) Copyright IBM Corp. 2002, 2011 *| *| US Government Users Restricted Rights - Use, duplication or *| disclosure restricted by GSA ADP Schedule Contract with IBM Corp. *| *+------------------------------------------------------------------------+ */ /** @fileOverview Report Actions @namespace Holds constants for report manipulation. */ cognos.Report.Action = {}; /** Go back one prompt page. @constant @static */ cognos.Report.Action.BACK = "back"; /** Cancel report and go back to previous page. @constant @static */ cognos.Report.Action.CANCEL = "cancel"; /** Submit parameter values and skip all remaining optional prompts and prompt pages. @constant @static */ cognos.Report.Action.FINISH = "finish"; /** Submit parameter values and go to next prompt page. @constant @static */ cognos.Report.Action.NEXT = "next"; /** Re-prompt for values / show first prompt pages. @constant @static */ cognos.Report.Action.REPROMPT = "reprompt"; /** Go to the next page. @constant @static */ cognos.Report.Action.NEXTPAGE = "nextPage"; /** Go back one page. @constant @static */ cognos.Report.Action.PREVIOUSPAGE = "previousPage";