DBA Data[Home] [Help]

APPS.UMX_REGISTRATION_UTIL dependencies on UMX_REG_REQUESTS_PVT

Line 562: -- Wrapper around UMX_REG_REQUESTS_PVT.create_reg_srv_request

558:
559: -- Procedure
560: -- create_reg_request
561: -- Description
562: -- Wrapper around UMX_REG_REQUESTS_PVT.create_reg_srv_request
563: -- IN
564: -- itemtype - A valid item type from (WF_ITEM_TYPES table).
565: -- itemkey - A string generated from the application object's primary key.
566: -- actid - The function activity (instance id).

Line 843: 'Before invoking UMX_REG_REQUESTS_PVT.reserve_username API.');

839:
840: if (FND_LOG.LEVEL_STATEMENT >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
841: FND_LOG.STRING (FND_LOG.LEVEL_STATEMENT,
842: 'fnd.plsql.UMXUTILB.reserveusername',
843: 'Before invoking UMX_REG_REQUESTS_PVT.reserve_username API.');
844: end if;
845:
846: l_user_id := UMX_REG_REQUESTS_PVT.reserve_username (
847: p_reg_request_id => p_item_key, -- item key is regid

Line 846: l_user_id := UMX_REG_REQUESTS_PVT.reserve_username (

842: 'fnd.plsql.UMXUTILB.reserveusername',
843: 'Before invoking UMX_REG_REQUESTS_PVT.reserve_username API.');
844: end if;
845:
846: l_user_id := UMX_REG_REQUESTS_PVT.reserve_username (
847: p_reg_request_id => p_item_key, -- item key is regid
848: p_username => l_username,
849: p_owner => NULL,
850: p_unencrypted_password => l_password,

Line 943: umx_reg_requests_pvt.approve_username_reg_request (

939: ignore_notfound => false));
940: if (l_person_party_id is not null) then
941: -- call new fnd apis when provided
942: -- change all the dates appropriately and check how to get the format
943: umx_reg_requests_pvt.approve_username_reg_request (
944: p_reg_request_id => to_number (p_item_key),
945: p_username => l_user_name,
946: p_person_party_id => to_number (l_person_party_id),
947: p_start_date => l_start_date,

Line 1013: umx_reg_requests_pvt.reject_username_reg_request (

1009: aname => 'REQUESTED_FOR_USER_ID',
1010: ignore_notfound => false);
1011:
1012:
1013: umx_reg_requests_pvt.reject_username_reg_request (
1014: p_reg_request_id => p_item_key,
1015: p_user_id => l_userid,
1016: p_username => l_username);
1017:

Line 1246: -- Wrapper around UMX_REG_REQUESTS_PVT.update_reg

1242: end set_event_object;
1243:
1244: -- update_reg_request
1245: -- Description
1246: -- Wrapper around UMX_REG_REQUESTS_PVT.update_reg
1247: -- IN
1248: -- itemtype - A valid item type from (WF_ITEM_TYPES table).
1249: -- itemkey - A string generated from the application object's primary key.
1250: -- actid - The function activity (instance id).

Line 1266: l_reg_request umx_reg_requests_pvt.reg_request_type;

1262: select STATUS_CODE
1263: from UMX_REG_REQUESTS
1264: where REG_REQUEST_ID = p_reg_request_id;
1265:
1266: l_reg_request umx_reg_requests_pvt.reg_request_type;
1267: l_reg_request_id UMX_REG_REQUESTS.REG_REQUEST_ID%TYPE;
1268: l_status_code UMX_REG_REQUESTS.status_code%TYPE;
1269:
1270: l_event wf_event_t;

Line 1383: UMX_REG_REQUESTS_PVT.update_reg_request (p_reg_request => l_reg_request);

1379: -- We need to update the status code to Pending
1380: l_reg_request.status_code := 'PENDING';
1381: end if;
1382: --update the reg request with latest details
1383: UMX_REG_REQUESTS_PVT.update_reg_request (p_reg_request => l_reg_request);
1384:
1385:
1386: p_resultout := 'COMPLETE';
1387: end if;

Line 1806: umx_reg_requests_pvt.reject_reg_request

1802: 'fnd.plsql.UMXUTILB.rejectrequest.begin',
1803: 'itemkey: '||p_item_key);
1804: end if;
1805:
1806: umx_reg_requests_pvt.reject_reg_request
1807: (p_reg_request_id => to_number (p_item_key));
1808:
1809: if (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) then
1810: FND_LOG.STRING (FND_LOG.LEVEL_PROCEDURE,

Line 1856: umx_reg_requests_pvt.cancel_username_reg_request (

1852: aname => 'REQUESTED_FOR_USER_ID',
1853: ignore_notfound => false);
1854:
1855:
1856: umx_reg_requests_pvt.cancel_username_reg_request (
1857: p_reg_request_id => p_item_key,
1858: p_user_id => l_userid,
1859: p_username => l_username);
1860: