DBA Data[Home] [Help]

APPS.UMX_PUB dependencies on WF_EVENT_T

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

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

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

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

Line 89: * @param p_event WF_EVENT_T

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

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

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