DBA Data[Home] [Help]

APPS.UMX_REG_REQUESTS_PVT dependencies on WF_ENGINE

Line 1352: x_active_from := wf_engine.getitemattrtext (

1348: x_approver_email => x_approver_email_address);
1349: end if;
1350:
1351: -- Get activeFrom and activeTo
1352: x_active_from := wf_engine.getitemattrtext (
1353: itemtype => UMX_REGISTRATION_UTIL.G_ITEM_TYPE,
1354: itemkey => x_reg_request_id,
1355: aname => 'REQUESTED_START_DATE');
1356:

Line 1371: x_active_to := wf_engine.getitemattrtext (

1367: else
1368: x_active_from := fnd_date.date_to_displaydate ( dateval => fnd_date.canonical_to_date (x_active_from) , calendar_aware => fnd_date.calendar_aware );
1369: end if;
1370:
1371: x_active_to := wf_engine.getitemattrtext (
1372: itemtype => UMX_REGISTRATION_UTIL.G_ITEM_TYPE,
1373: itemkey => x_reg_request_id,
1374: aname => 'REQUESTED_END_DATE');
1375:

Line 1552: -- Description : This API will call wf_engine.iteminfo to get the status

1548: --
1549: -- Procedure : get_error_wf_info
1550: -- Type : Private
1551: -- Pre_reqs : None
1552: -- Description : This API will call wf_engine.iteminfo to get the status
1553: -- of the main UMX Workflow and all its event subscribers.
1554: -- Input Parameters (Mandatory):
1555: -- p_reg_request_id: Registration Request ID
1556: --

Line 1596: wf_engine.iteminfo (itemtype => x_itemtype,

1592:
1593: -- Find the status of the main workflow first
1594: x_itemtype := umx_registration_util.g_item_type;
1595: x_itemkey := p_reg_request_id;
1596: wf_engine.iteminfo (itemtype => x_itemtype,
1597: itemkey => x_itemkey,
1598: status => x_status,
1599: result => x_result,
1600: actid => x_actid,

Line 1616: wf_engine.iteminfo (itemtype => x_itemtype,

1612: for child in get_child_workflow
1613: loop
1614: x_itemtype := child.item_type;
1615: x_itemkey := child.item_key;
1616: wf_engine.iteminfo (itemtype => x_itemtype,
1617: itemkey => x_itemkey,
1618: status => x_status,
1619: result => x_result,
1620: actid => x_actid,

Line 1647: -- Description : This API will call wf_engine.iteminfo to get the status

1643: --
1644: -- Procedure : get_error_wf_info
1645: -- Type : Private
1646: -- Pre_reqs : None
1647: -- Description : This API will call wf_engine.iteminfo to get the status
1648: -- of the main UMX Workflow and all its event subscribers.
1649: -- Input Parameters (Mandatory):
1650: -- p_user_id: User ID of the requester
1651: --

Line 1735: -- Description : This API will call wf_engine.iteminfo to get the status

1731: --
1732: -- Function : is_pend_request_error
1733: -- Type : Private
1734: -- Pre_reqs : None
1735: -- Description : This API will call wf_engine.iteminfo to get the status
1736: -- of the main UMX Workflow and all its event subscribers.
1737: -- It will return 'Y' if account is in error stage and 'N' if otherwise.
1738: -- Input Parameters (Mandatory):
1739: -- p_reg_request_id: Registration Request ID

Line 1791: -- Description : This API will call wf_engine.iteminfo to get the status

1787: --
1788: -- Function : is_pend_account_error
1789: -- Type : Private
1790: -- Pre_reqs : None
1791: -- Description : This API will call wf_engine.iteminfo to get the status
1792: -- of the main UMX Workflow and all its event subscribers.
1793: -- It will return 'Y' if account is in error stage and 'N' if otherwise.
1794: -- Input Parameters (Mandatory):
1795: -- p_user_id: User ID of the requester