您的位置:首页 > 数据库 > Oracle

Change Or Set Report Object Property At Run Time In Oracle Forms Using Set_Report_Object_Property Command

2016-12-25 17:57 1296 查看
[align=left]Sets the Report object property at run time in Oracle Forms of an report object.[/align]
The following are the Syntax of Set_Report_Object_Property:

PROCEDURE SET_REPORT_OBJECT_PROPERTY
(report_id REPORT_OBJECT,
property NUMBER,
value VARCHAR2
);

PROCEDURE SET_REPORT_OBJECT_PROPERTY
(report_name VARCHAR2,
property NUMBER,
value VARCHAR2
);

PROCEDURE SET_REPORT_OBJECT_PROPERTY
(report_id REPORT_OBJECT,
property NUMBER,
value NUMBER
);

PROCEDURE SET_REPORT_OBJECT_PROPERTY
(report_name VARCHAR2,
property NUMBER,
value NUMBER
);

See the example of Set_Report_Object_Property with the following link:
http://www.foxinfotech.in/2012/11/calling-running-report-in-oracle-forms.html

[align=justify]Parameter report_id specifies the unique ID of the report. You can get the report ID for a particular report using FIND_REPORT_OBJECT . [/align] [align=justify] [/align] [align=justify]Parameter report_name specifies the unique name of the report. [/align] [align=justify] [/align] [align=justify]property should be one of the following constants:[/align] [align=justify] [/align] [align=left] REPORT_EXECUTION_MODE: The report execution mode, either BATCH or RUNTIME [/align] [align=left] [/align] [align=left]REPORT_COMM_MODE: The report communication mode, either SYNCHRONOUS or ASYNCHRONOUS [/align] [align=left] [/align] [align=left] REPORT_DESTYPE: The report destination type, either PREVIEW, FILE, PRINTER, MAIL, CACHE or SCREEN [/align] [align=left] [/align] [align=left] One of the following strings: [/align] [align=left] [/align] [align=left] REPORT_FILENAME: The report filename [/align] [align=left] [/align] [align=left] REPORT_SOURCE_BLOCK: The report source block name [/align] [align=left] [/align] [align=left] REPORT_QUERY_NAME: The report query name [/align] [align=left] [/align] [align=left] REPORT_DESNAME: The report destination name [/align] [align=left] [/align] [align=left] REPORT_DESFORMAT: The report destination format [/align] [align=left] [/align] [align=left] REPORT_SERVER: The report server name [/align] [align=left] [/align] [align=left] REPORT_OTHER: The other user-specified report properties value [/align] [align=left] [/align] [align=left] REPORT_EXECUTION_MODE: Value must be BATCH or RUNTIME [/align] [align=left] [/align] [align=left] REPORT_COMM_MODE: Value must be SYNCHRONOUS or ASYNCHRONOUS [/align] [align=left] [/align] [align=left]REPORT_DESTYPE: Value must be PREVIEW, FILE, PRINTER, MAIL, CACHE, SCREEN, FTP, WEBDAV, ORACLEPORTAL, ORACLEWIRELESS, SECUREPDF, or BLOBDESTINATION, PLUGDESTYPE [/align] [align=left] [/align] [align=left] One of the following strings: [/align] [align=left] [/align] [align=left] REPORT_FILENAME: Value must be of type VARCHAR2 [/align] [align=left] [/align] [align=left] REPORT_SOURCE_BLOCK: Value must be of type VARCHAR2 [/align] [align=left] [/align] [align=left] REPORT_QUERY_NAME: Value must be of type VARCHAR2 [/align] [align=left] [/align] [align=left] REPORT_DEST_NAME: Value must be of type VARCHAR2 [/align] [align=left] [/align] [align=left] REPORT_DEST_FORMAT: Value must be of type VARCHAR2 [/align] [align=left] [/align] [align=left] REPORT_SERVER: Value must be of type VARCHAR2 [/align] [align=left] [/align] [align=left] REPORT_OTHER: Value must be of type VARCHAR2 [/align]

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: