Oracle工作流程中使用的结果

发布于 2024-08-14 23:06:53 字数 38 浏览 2 评论 0原文

oracle工作流程中使用的resultout是什么,函数活动

what is resultout used in oracle workflow,function activity

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

还如梦归 2024-08-21 23:06:53

这是标准 OUT 参数,用于通知 WF 引擎有关活动的完成状态。

来自工作流程指南的信息:

如果在活动中指定了结果类型
Oracle 中活动的属性页
Workflow Builder,该参数代表
当返回的预期结果
程序完成。可能的结果是:

COMPLETE:-- 活动完成
与指示的结果代码。结果代码
必须与指定的结果代码之一匹配
函数活动的结果类型。

WAITING——活动正在等待中
在完成之前要完成的另一项活动。
标准“AND”活动就是一个示例。

DEFERRED:-- 活动被推迟到
在给定日期之前执行的后台引擎。
必须采用以下格式:
to_char(, wf_engine.date_format)

NOTIFIED::-- 通知外部实体必须执行某项操作
执行。通知 ID 和分配的用户
可以选择与此结果一起返回。笔记
外部实体必须调用 CompleteActivity( )
当操作发生时通知工作流引擎
完成。

错误:-- 活动遇到
错误并返回指示的错误代码。

This is standard OUT parameter which you use to inform WF Engine about completion status of activity.

Information from Workflow Guide:

If a result type is specified in the Activities
properties page for the activity in the Oracle
Workflow Builder, this parameter represents the
expected result that is returned when the
procedure completes. The possible results are:

COMPLETE:<result_code> -- activity completes
with the indicated result code. The result code
must match one of the result codes specified in the
result type of the function activity.

WAITING -- activity is pending, waiting on
another activity to complete before it completes.
An example is the Standard ’AND’ activity.

DEFERRED:<date> -- activity is deferred to a
background engine for execution until a given date.
must be of the format:
to_char(<date_string>, wf_engine.date_format)

NOTIFIED:<notification_id>:<assigned_user> -- an external entity is notified that an action must be
performed. A notification ID and an assigned user
can optionally be returned with this result. Note
that the external entity must call CompleteActivity( )
to inform the Workflow Engine when the action
completes.

ERROR:<error_code> -- activity encounters an
error and returns the indicated error code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文