DBA Data[Home] [Help]

APPS.JTF_UM_WF_APPROVAL dependencies on JTF_UM_UTIL_PVT

Line 196: l_owner_username := nvl (JTF_UM_UTIL_PVT.VALUE_SPECIFIC (

192: end if;
193:
194: l_application_id := getRequestApplId (p_request_type, p_request_id);
195:
196: l_owner_username := nvl (JTF_UM_UTIL_PVT.VALUE_SPECIFIC (
197: NAME => 'JTF_UM_APPROVAL_OWNER',
198: APPLICATION_ID => l_application_id,
199: SITE_LEVEL => true), 'SYSADMIN');
200:

Line 751: approvalURL := JTF_UM_UTIL_PVT.VALUE_SPECIFIC (

747: applID := getRequestApplId (requestType, requestId);
748:
749: -- Set the approval url
750: -- first get the approval url from the profile option
751: approvalURL := JTF_UM_UTIL_PVT.VALUE_SPECIFIC (
752: NAME => 'JTF_UM_APPROVAL_URL',
753: RESPONSIBILITY_ID => responID,
754: RESP_APPL_ID => respApplID,
755: APPLICATION_ID => applID,

Line 776: timeout := nvl (JTF_UM_UTIL_PVT.VALUE_SPECIFIC (

772: avalue => ownerUsername);
773:
774: -- Set the timeout value
775: -- first get the timeout from the profile option
776: timeout := nvl (JTF_UM_UTIL_PVT.VALUE_SPECIFIC (
777: NAME => 'JTF_UM_APPROVAL_TIMEOUT_MINS',
778: APPLICATION_ID => applID,
779: SITE_LEVEL => true), 0);
780:

Line 788: applicationURL := JTF_UM_UTIL_PVT.VALUE_SPECIFIC (

784: avalue => timeout);
785:
786: -- Set the application url
787: -- first get the application url from the profile option
788: applicationURL := JTF_UM_UTIL_PVT.VALUE_SPECIFIC (
789: NAME => 'JTA_UM_APPL_URL',
790: RESPONSIBILITY_ID => responID,
791: RESP_APPL_ID => respApplID,
792: APPLICATION_ID => applID,

Line 802: senderName := JTF_UM_UTIL_PVT.VALUE_SPECIFIC (

798: avalue => applicationURL);
799:
800: -- Set the sender name
801: -- first get the sender name from the profile option
802: senderName := JTF_UM_UTIL_PVT.VALUE_SPECIFIC (
803: NAME => 'JTA_UM_SENDER',
804: APPLICATION_ID => applID,
805: SITE_LEVEL => true);
806:

Line 814: supportContact := JTF_UM_UTIL_PVT.VALUE_SPECIFIC (

810: avalue => senderName);
811:
812: -- Set the Support Contact
813: -- first get the Support Contact name from the profile option
814: supportContact := JTF_UM_UTIL_PVT.VALUE_SPECIFIC (
815: NAME => 'JTA_UM_SUPPORT_CONTACT',
816: RESPONSIBILITY_ID => responID,
817: RESP_APPL_ID => respApplID,
818: APPLICATION_ID => applID,

Line 1116: uniPrimaryUser := JTF_UM_UTIL_PVT.VALUE_SPECIFIC (

1112: aname => 'REQUEST_ID');
1113:
1114: applID := getRequestApplId (requestType, requestId);
1115:
1116: uniPrimaryUser := JTF_UM_UTIL_PVT.VALUE_SPECIFIC (
1117: NAME => 'JTF_PRIMARY_USER',
1118: APPLICATION_ID => applID,
1119: SITE_LEVEL => true);
1120:

Line 1131: approverUsername := nvl (JTF_UM_UTIL_PVT.VALUE_SPECIFIC (

1127: if (approverUsername is null) then
1128: -- Which mean an ad hoc role didn't get created. Use
1129: -- the default approver from the JTA_UM_DEFAULT_APPROVER
1130: -- profile option.
1131: approverUsername := nvl (JTF_UM_UTIL_PVT.VALUE_SPECIFIC (
1132: NAME => 'JTA_UM_DEFAULT_APPROVER',
1133: APPLICATION_ID => applID,
1134: SITE_LEVEL => true), 'SYSADMIN');
1135: