DBA Data[Home] [Help]

APPS.UMX_REG_REQUESTS_PVT dependencies on UMX_REGISTRATION_UTIL

Line 1353: itemtype => UMX_REGISTRATION_UTIL.G_ITEM_TYPE,

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:
1357: if (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_PROCEDURE) then

Line 1372: itemtype => UMX_REGISTRATION_UTIL.G_ITEM_TYPE,

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:
1376: if (x_active_to is not null) then

Line 1580: where parent_item_type = umx_registration_util.g_item_type

1576: x_errstack out nocopy varchar2) IS
1577:
1578: cursor get_child_workflow is
1579: select * from wf_items
1580: where parent_item_type = umx_registration_util.g_item_type
1581: and parent_item_key = p_reg_request_id;
1582:
1583: child get_child_workflow%rowtype;
1584:

Line 1594: x_itemtype := umx_registration_util.g_item_type;

1590: 'p_reg_request_id: ' || p_reg_request_id);
1591: end if;
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,