| P_OWNER
 | Is the DB Provider name. The default is the current Oracle Fusion Middleware DB Provider that you are connected to when you start the SQL*PLUS script. For example: P_OWNER=>'PORTAL_APP'
 | 
| P_NAME
 | Is the name used to identify the report in Oracle Portal. P_NAMEcorresponds to the Name field in the Create Report Definition File Access wizard.
 For example: P_NAME=>'Earnings'
 | 
| P_SERVERS
 | Is the names of the Reports Servers on which the report definition files defined in the P_SERVERSparameter have access privileges. The list of Reports Servers is comma delimited. P_SERVERScorresponds to the Reports Servers field in the Create Report Definition File Access wizard and the Edit Report Definition File page.
 For example: P_SERVERS=>'repserver,acct'
 Note: The Reports Servers you list for P_SERVERSmust already be registered in Oracle Portal. For more information, refer to Chapter 16, "Deploying Reports in Oracle Portal". | 
| P_FILENAME
 | Is the name of the report definition file that is being registered. P_FILENAMEcorresponds to the Oracle Reports File Name in the Create Report Definition File Access wizard and the Edit Report Definition File page.
 For example: P_FILENAME=>'earnings.rdf'
 | 
| P_DESCRIPTION
 | Is a description of the report. P_DESCRIPTIONcorresponds to the Description field in the Create Report Definition File Access wizard and the Edit Report Definition File page.
 For example: P_DESCRIPTION=>'restricted report'
 | 
| P_PRIVILEGE
 | Is the users or roles given privileges to run the report definition file defined in P_FILENAME. This list is comma delimited. P_PRIVILEGEcorresponds to the Grantee list on the Access tab of the Manage Component page for the report. Note that you must uncheck Inherit Privileges from Portal DB Provider in order to see the Grantee list.
 For example: P_PRIVILEGE=>'SCOTT,JABERS,PORTAL90'
 | 
| P_AVAILABILITY
 | Is the name of the availability calendar that determines when the report definition file defined in the P_FILENAMEparameter will be available for processing. P_AVAILABILITYcorresponds to the Availability Calendar Name field in the Create Report Definition File Access wizard and the Edit Report Definition File page.
 For example: P_AVAILABILITY=>'production'
 Note: The availability calendar must already exist in Oracle Portal. For more information on creating an availability calendar, see Chapter 16, "Deploying Reports in Oracle Portal". | 
| P_TYPES
 | Is the destination types to which the report definition file defined in the P_FILENAMEparameter can be sent (for example, cache, printer). This list is comma delimited. P_TYPEScorresponds to the Types multiple select box in the Create Report Definition File Access wizard and the Edit Report Definition File page.
 For example: P_TYPES=>'CACHE,printer'
 | 
| P_FORMATS
 | The destination formats to which the report definition file defined in the P_FILENAMEparameter can be sent (for example, HTML, PDF). This list is comma delimited. P_FORMATScorresponds to the Formats multiple select box in the Create Report Definition File Access wizard and the Edit Report Definition File page.
 For example: P_FORMATS=>'HTMLCSS,PDF'
 Note: If the destination format for the report is DELIMITEDDATA, it may not be possible to batch register the report. As a workaround, you can define a different destination format, then batch register the report, and later manually edit the report toDESFORMAT=DELIMITEDDATA. | 
| P_PRINTERS
 | The printers to which the report definition file defined in the P_FILENAMEparameter can print. This list is comma delimited. P_PRINTERScorresponds to the Printers multiple select box in the Create Report Definition File Access wizard and the Edit Report Definition File page.
 For example: P_PRINTERS=>'sales_printer,acct_printer'
 Note: The printers you list for P_PRINTERSmust already be registered in Oracle Portal. For more information, refer to Chapter 16, "Deploying Reports in Oracle Portal". | 
| P_PFORMTEMPLATE
 | Is the parameter form template that determines the page style of the Runtime Parameter Form. P_PFORMTEMPLATEcorresponds to the Parameter Form Template field in the Create Report Definition File Access wizard and the Edit Report Definition File page.
 For example: P_PFORMTEMPLATE=>'public.finance_template'
 | 
| P_PARAMETERS
 | Is the user and system parameters' default, high, and low values, or list of values name. Note: The P_PARAMETERSparameter does not have a correspondingrwconverteroption. Hence, if you want to batch import user parameter values, ranges, or lists of values, you must manually edit the SQL script generated byrwconverter. P_PARAMETERScorresponds to the (parameter) Name, LOV, Low Value, and High Value fields in the Create Report Definition File Access wizard and the Edit Report Definition File page.
 The default corresponds to the value set in the Runtime Parameter Form for the specified parameter. For example: P_PARAMETERS=>'(P_LASTNAME, LOV=LASTNAME_LOV) (P_SSN)(COPIES, DEFAULT=1,LOW=1,HIGH=2)'
 where: P_LASTNAME,P_SSN, andCOPIESare parameter names.
 LOVis the name of the list of values.
 DEFAULTis the default value.
 LOWis the low value in a range of values.
 HIGHis the high value in a range of values.
 | 
| P_TRIGGER
 | Is the validation trigger written in PL/SQL that returns a boolean statement (for example, true (succeeded) or false (failed)). P_TRIGGERcorresponds to the text box in the Create Report Definition File Access wizard and the Edit Report Definition File page.
 For example: P_TRIGGER=>'Is begin
 IF UPPER(DESTYPE) = ''PRINTER'' AND
 EMPNAME = ''SMITH''
 THEN
 RETURN(TRUE);
 ELSE
 RETURN(FALSE);
 END IF;
 end;'
 |