cancel
Showing results for 
Search instead for 
Did you mean: 

Desktop Connection - Time range of Tasks, Appointments

Former Member
0 Kudos

Hi everybody,

is there a possibility to change the time range (or time frame) of any tasks or appointents.

The standard configuration for Activities lies at 14 days in future and past from today.

The issiue is, that we would like to change this configuration to any possible time range i.e. for 360 days instead of 14.

Thanks for your help in advance guys!

Regards!

Osman

Accepted Solutions (1)

Accepted Solutions (1)

michael_sackmann
Participant
0 Kudos

Hello Osman,

yes this is possible via adjustment of the customization package (CP), used. Time range is defined as filter settings in CP, file connector_configuration.xml. See shapshot below:

<type id="AppointmentMain">

        <group link='or'>

             <group link='and'>

                 <binary field="End" condition="ge">

                     <value type="integer">-15</value>

                 </binary>

                 <binary field="Start" condition="le">

                     <value type="integer">15</value>

                 </binary>

So above, you can see the time range settings which you can adjust by changing the figures. However, I would be careful to change this to a very big range. You could run into performance issues if thousands of activities would now be selected due to the big date range, defined.

I would recommed to check data volumne first either by executing corresponding advance search in crm web client ui in order to check the number of hits.

Regards

Michael

Former Member
0 Kudos

Thank you Michael!

And also thanks for your effort too Jorge!

Best Regards!

Osman

Answers (1)

Answers (1)

jorge_ocamposbenito
Contributor
0 Kudos

Hi Osman,

Yes, you can perfomr this.

You can add in SMOFPARSFA the following entries:

For Tasks

parsfakey = 'CRMTASK'

parname   = 'MAX_HITS'

parval1     = Your max_hits value

Regards.