DBA Data[Home] [Help]

APPS.UMX_PUB dependencies on WF_EVENT_T

Line 83: -- p_event : Oracle Workflow WF_EVENT_T object type

79: -- defined, and want this name value pair to be reflected in the main workflow;
80: -- this name value pair will be available to rest of subscriptions and workflow
81: -- activities.
82: -- Input Parameters (Mandatory):
83: -- p_event : Oracle Workflow WF_EVENT_T object type
84: -- p_attr_name : Varchar2, name of the attribute, maps to workflow attribute name.
85: -- p_attr_value : varchar2, value of the attribute, maps to Workflow attribute string value.
86: -- Output Parameters:
87: -- p_event : Oracle Workflow WF_EVENT_T object type

Line 87: -- p_event : Oracle Workflow WF_EVENT_T object type

83: -- p_event : Oracle Workflow WF_EVENT_T object type
84: -- p_attr_name : Varchar2, name of the attribute, maps to workflow attribute name.
85: -- p_attr_value : varchar2, value of the attribute, maps to Workflow attribute string value.
86: -- Output Parameters:
87: -- p_event : Oracle Workflow WF_EVENT_T object type
88: --
89: /*#
90: * This API Adds or Updates an attribute to the User Management Registration
91: * workflow. This method is to be used in any synchronous subscriptions, for

Line 93: * @param p_event WF_EVENT_T

89: /*#
90: * This API Adds or Updates an attribute to the User Management Registration
91: * workflow. This method is to be used in any synchronous subscriptions, for
92: * events raised during registration process.
93: * @param p_event WF_EVENT_T
94: * @param p_attr_name attribute name
95: * @param p_attr_value attribute value
96: * @rep:scope public
97: * @rep:lifecycle active

Line 100: procedure updateWfAttribute (p_event in out NOCOPY WF_EVENT_T,

96: * @rep:scope public
97: * @rep:lifecycle active
98: * @rep:displayname Update User Management Workflow attribute.
99: */
100: procedure updateWfAttribute (p_event in out NOCOPY WF_EVENT_T,
101: p_attr_name in VARCHAR2 DEFAULT NULL,
102: p_attr_value in VARCHAR2 DEFAULT NULL);
103:
104: --