DBA Data[Home] [Help]

APPS.CS_AUTOGEN_TASK_PVT dependencies on FND_PROFILE

Line 95: FND_PROFILE.Get('CS_SR_ENABLE_TASK_STATE_RESTRICTIONS',l_prof_val);

91: -- Simplex
92: -- Get the value for the profile option 'Service : Apply State Restriction on Tasks'
93: -- to decide the enabling/disabling of task state restrictions
94:
95: FND_PROFILE.Get('CS_SR_ENABLE_TASK_STATE_RESTRICTIONS',l_prof_val);
96:
97: -- end Simplex
98:
99: -- Loop through the Task Template table

Line 275: l_profile_respond_by := to_number(fnd_profile.value('CS_SR_TASK_RESPOND_BY'));

271: l_task_template_tbl(i).planned_start_date := sysdate ;
272:
273: IF p_service_request_rec.obligation_date IS NULL THEN
274: -- Bug 7430747, Calculate the planned end date from the profile when respond by date is null
275: l_profile_respond_by := to_number(fnd_profile.value('CS_SR_TASK_RESPOND_BY'));
276: l_task_template_tbl(i).planned_end_date := sysdate + nvl(l_profile_respond_by,0);
277: ELSIF (p_service_request_rec.obligation_date > sysdate) THEN
278: l_task_template_tbl(i).planned_end_date := sysdate +(p_service_request_rec.obligation_date -sysdate);
279: ELSE

Line 707: l_category_set_id := fnd_profile.value('CS_SR_DEFAULT_CATEGORY_SET');

703:
704: If l_all_attrs_passed = TRUE Then
705:
706: -- Get the category set from the relevant site-level profile
707: l_category_set_id := fnd_profile.value('CS_SR_DEFAULT_CATEGORY_SET');
708:
709: for l_category_rec in c_category(l_category_set_id)
710: loop
711: /*