E47B Documentation update · Issue #1289 · utPLSQL/utPLSQL · GitHub
[go: up one dir, main page]

Skip to content

Documentation update #1289

@MonikaMitura

Description

@MonikaMitura

In the Reporting -> Custom Reports section of the documentation, it is suggested that when creating a custom reporter, no additional steps are necessary; utPLSQL will automatically enable its use. The documentation states:

"Assuming that the custom reporter type is created in the UT3 schema, to run the tests using a custom reporter just call: exec ut.run(ut3.custom_reporter_name());,"
UTPLSQL

However, in practice, it is necessary to grant the appropriate permissions and create a synonym for the new reporter.

To grant execute permission:

GRANT EXECUTE ON ut3.custom_reporter_name TO PUBLIC;
To create a public synonym;
CREATE OR REPLACE PUBLIC SYNONYM custom_reporter_name FOR ut3.custom_reporter_name;

These steps ensure that the custom reporter can be utilized as intended.

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    0