DBA Data[Home] [Help]

APPS.OTA_MANDATORY_ENROLL_UTIL dependencies on WF_ENGINE

Line 2077: WF_ENGINE.CREATEPROCESS(l_item_type, l_item_key, p_process);

2073:
2074: -- Get the next item key from the sequence
2075: select hr_workflow_item_key_s.nextval into l_item_key from sys.dual;
2076:
2077: WF_ENGINE.CREATEPROCESS(l_item_type, l_item_key, p_process);
2078:
2079: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'CONC_REQUEST_ID',p_conc_program_request_id);
2080: WF_ENGINE.setitemattrtext(l_item_type,l_item_key,'OBJECT_NAME',p_object_id);
2081: WF_ENGINE.setitemattrtext(l_item_type, l_item_key, 'OBJECT_TYPE' ,p_object_type);

Line 2079: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'CONC_REQUEST_ID',p_conc_program_request_id);

2075: select hr_workflow_item_key_s.nextval into l_item_key from sys.dual;
2076:
2077: WF_ENGINE.CREATEPROCESS(l_item_type, l_item_key, p_process);
2078:
2079: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'CONC_REQUEST_ID',p_conc_program_request_id);
2080: WF_ENGINE.setitemattrtext(l_item_type,l_item_key,'OBJECT_NAME',p_object_id);
2081: WF_ENGINE.setitemattrtext(l_item_type, l_item_key, 'OBJECT_TYPE' ,p_object_type);
2082: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'ERROR_NUMBER',p_error_learners);
2083: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'SUCCESS_NUMBER',p_success_learners);

Line 2080: WF_ENGINE.setitemattrtext(l_item_type,l_item_key,'OBJECT_NAME',p_object_id);

2076:
2077: WF_ENGINE.CREATEPROCESS(l_item_type, l_item_key, p_process);
2078:
2079: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'CONC_REQUEST_ID',p_conc_program_request_id);
2080: WF_ENGINE.setitemattrtext(l_item_type,l_item_key,'OBJECT_NAME',p_object_id);
2081: WF_ENGINE.setitemattrtext(l_item_type, l_item_key, 'OBJECT_TYPE' ,p_object_type);
2082: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'ERROR_NUMBER',p_error_learners);
2083: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'SUCCESS_NUMBER',p_success_learners);
2084:

Line 2081: WF_ENGINE.setitemattrtext(l_item_type, l_item_key, 'OBJECT_TYPE' ,p_object_type);

2077: WF_ENGINE.CREATEPROCESS(l_item_type, l_item_key, p_process);
2078:
2079: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'CONC_REQUEST_ID',p_conc_program_request_id);
2080: WF_ENGINE.setitemattrtext(l_item_type,l_item_key,'OBJECT_NAME',p_object_id);
2081: WF_ENGINE.setitemattrtext(l_item_type, l_item_key, 'OBJECT_TYPE' ,p_object_type);
2082: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'ERROR_NUMBER',p_error_learners);
2083: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'SUCCESS_NUMBER',p_success_learners);
2084:
2085: IF p_person_id IS NOT NULL THEN

Line 2082: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'ERROR_NUMBER',p_error_learners);

2078:
2079: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'CONC_REQUEST_ID',p_conc_program_request_id);
2080: WF_ENGINE.setitemattrtext(l_item_type,l_item_key,'OBJECT_NAME',p_object_id);
2081: WF_ENGINE.setitemattrtext(l_item_type, l_item_key, 'OBJECT_TYPE' ,p_object_type);
2082: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'ERROR_NUMBER',p_error_learners);
2083: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'SUCCESS_NUMBER',p_success_learners);
2084:
2085: IF p_person_id IS NOT NULL THEN
2086: OPEN csr_get_person_name(p_person_id);

Line 2083: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'SUCCESS_NUMBER',p_success_learners);

2079: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'CONC_REQUEST_ID',p_conc_program_request_id);
2080: WF_ENGINE.setitemattrtext(l_item_type,l_item_key,'OBJECT_NAME',p_object_id);
2081: WF_ENGINE.setitemattrtext(l_item_type, l_item_key, 'OBJECT_TYPE' ,p_object_type);
2082: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'ERROR_NUMBER',p_error_learners);
2083: WF_ENGINE.setitemattrnumber(l_item_type,l_item_key,'SUCCESS_NUMBER',p_success_learners);
2084:
2085: IF p_person_id IS NOT NULL THEN
2086: OPEN csr_get_person_name(p_person_id);
2087: FETCH csr_get_person_name INTO l_person_full_name;

Line 2097: WF_ENGINE.setitemattrtext(l_item_type,l_item_key,'EVENT_OWNER',l_user_name);

2093:
2094: --fnd_file.put_line(FND_FILE.LOG,'Requestor Name ' ||l_person_full_name);
2095:
2096: IF l_person_full_name IS NOT NULL then
2097: WF_ENGINE.setitemattrtext(l_item_type,l_item_key,'EVENT_OWNER',l_user_name);
2098: END IF;
2099: END IF;
2100:
2101: -- Get and set owner role

Line 2111: WF_ENGINE.SetItemOwner(itemtype => l_item_type,

2107: p_name =>l_role_name,
2108: p_display_name =>l_role_display_name);
2109:
2110:
2111: WF_ENGINE.SetItemOwner(itemtype => l_item_type,
2112: itemkey =>l_item_key,
2113: owner =>l_role_name);
2114:
2115: hr_utility.set_location('After Setting Owner'||l_proc, 10);

Line 2118: WF_ENGINE.STARTPROCESS(l_item_type,l_item_key);

2114:
2115: hr_utility.set_location('After Setting Owner'||l_proc, 10);
2116:
2117:
2118: WF_ENGINE.STARTPROCESS(l_item_type,l_item_key);
2119:
2120: hr_utility.set_location('leaving:'||l_proc, 20);
2121:
2122: EXCEPTION