DBA Data[Home] [Help]

APPS.CS_EA_AUTOGEN_TASKS_PVT dependencies on FND_PROFILE

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

750: -- Get the value for the profile option 'Service : Apply State Restriction on Tasks'
751: -- to decide the enabling/disabling of task state restrictions
752:
753: -- in order to fix 4477767, task restriction can not be applied to auto tasks
754: -- FND_PROFILE.Get('CS_SR_ENABLE_TASK_STATE_RESTRICTIONS',l_prof_val);
755:
756: -- end of simplex
757:
758:

Line 991: p_assignment_status_id => fnd_profile.value('JTF_TASK_DEFAULT_ASSIGNEE_STATUS'),

987: p_commit => cs_core_util.get_g_false,
988: p_task_id => l_task_id,
989: p_resource_type_code => l_task_rec_tbl(l_indx).assignee_type_code,
990: p_resource_id => l_task_rec_tbl(l_indx).assignee_id,
991: p_assignment_status_id => fnd_profile.value('JTF_TASK_DEFAULT_ASSIGNEE_STATUS'),
992: x_return_status => x_return_status,
993: x_msg_count => x_msg_count,
994: x_msg_data => x_msg_data,
995: x_task_assignment_id => l_task_assignment_id);

Line 1131: l_prof_value fnd_profile_option_values.profile_option_value % type;

1127: x_msg_data OUT NOCOPY varchar2,
1128: x_auto_task_gen_attempted OUT NOCOPY varchar2,
1129: x_field_service_Task_created OUT NOCOPY varchar2) is
1130: i number;
1131: l_prof_value fnd_profile_option_values.profile_option_value % type;
1132: l_err varchar2(4000);
1133: l_msg_index_out number;
1134: l_msg_data varchar2(2000);
1135: l_note_id number;

Line 1145: l_prof_value := fnd_profile.value('AUTO GENERATE TASKS ON SR CREATE');

1141: cursor c_sr is
1142: select * from cs_incidents_all_b
1143: where incident_id = p_request_id;
1144: begin
1145: l_prof_value := fnd_profile.value('AUTO GENERATE TASKS ON SR CREATE');
1146: if (l_prof_value = 'Task type Attribute configuration' or 1 =1) then
1147: for l_rec in c_sr loop
1148: l_sr_rec.type_id := l_rec.incident_type_id;
1149: l_sr_rec.status_id := l_rec.incident_status_id;

Line 1374: l_note_type := fnd_profile.value('CS_SR_TASK_ERROR_NOTE_TYPE');

1370: p_data=>l_msg_data,
1371: p_msg_index_out=>l_msg_index_out);
1372: l_err := l_err || l_msg_data || ',';
1373: end loop;
1374: l_note_type := fnd_profile.value('CS_SR_TASK_ERROR_NOTE_TYPE');
1375: if (l_note_type is null) then
1376: fnd_message.set_name ('CS', 'CS_EA_NULL_NOTE_TYPE');
1377: fnd_msg_pub.add;
1378: raise fnd_api.g_exc_unexpected_error;