Hi All.
I’m getting this warning as I sync the Aurena app.
What may I do to fix it?
Using Apps 10 UPD14.
Tks a lot
Hi All.
I’m getting this warning as I sync the Aurena app.
What may I do to fix it?
Using Apps 10 UPD14.
Tks a lot
Look to see how much data is being synchronized in this entity - there is a Mobile lobby that will show you this
If the volume of data is too large and not needed by the mobile users then you can add a Permission Set Filter to restrict the amount of data being synchronized. This will increase the sync time for this entity
Cheers
James
Look to see how much data is being synchronized in this entity - there is a Mobile lobby that will show you this
If the volume of data is too large and not needed by the mobile users then you can add a Permission Set Filter to restrict the amount of data being synchronized. This will increase the sync time for this entity
Cheers
James
Hi
I could see that this view is just to register the report in time in mobile, right?
What do you advise me to filter in this situation?
E.g.: filter just the record different of Completed, or consider just the actual month?
The mobile users just need to report the time and return the work task to the office.
They don’t need the historical.
Tks for help and attention
Hi
Can you please run below sql and check whether how many records appear for entity ResourceActivity
SELECT msd.user_id, msd.device_id, msd.entity, count(1) as "Record Count"
FROM ifsapp.mobile_sync_data msd, ifsapp.mobile_device_app_user mdau
WHERE msd.app_name='MaintEngApp'
AND mdau.app_name=msd.app_name
AND mdau.device_id = msd.device_id
AND mdau.user_id = msd.user_id
AND msd.user_id = upper('XXXXXXX') --- Replace your user id
AND mdau.state_db = 'ACTIVE'
GROUP BY msd.user_id, msd.device_id, msd.entity
ORDER BY msd.user_id, msd.device_id, msd.entity
Hi
Can you please run below sql and check whether how many records appear for entity ResourceActivity
SELECT msd.user_id, msd.device_id, msd.entity, count(1) as "Record Count"
FROM ifsapp.mobile_sync_data msd, ifsapp.mobile_device_app_user mdau
WHERE msd.app_name='MaintEngApp'
AND mdau.app_name=msd.app_name
AND mdau.device_id = msd.device_id
AND mdau.user_id = msd.user_id
AND msd.user_id = upper('XXXXXXX') --- Replace your user id
AND mdau.state_db = 'ACTIVE'
GROUP BY msd.user_id, msd.device_id, msd.entity
ORDER BY msd.user_id, msd.device_id, msd.entity
Hi
But as I sync, I get the warning on Logs screen.
Sometimes also the medialiraryItem appears.
Considereing topdown the sorting, I have others entities with large number.
Br.
Lopes
Ok timing seems not due to returning large rec count. Can you share the record count in below tables:
Ok timing seems not due to returning large rec count. Can you share the record count in below tables:
Yes.
select count(*) from ifspet.Mobile_Work_Order_Tab;
select count(*) from ifspet.Jt_Task_Tab;
select count(*) from ifspet.Resource_Activity_Alloc_Tab;
Sorry I forgot to add table resource_activity_tab. Please share that count too.
Sorry I forgot to add table resource_activity_tab. Please share that count too.
Sure. Follow.
resource_activity_tab: 1178422
Tks
It is appeared this very large record count in resource_activity_tab and Resource_Activity_Alloc_Tab causing the delay when syncing Ly ResouceActivity
Our default where is
"origin_key1 IN(select task_seq from Mobile_Work_Order_Uiv) and activity_origin_db = 'WORK_TASK' and resource_activity_seq NOT IN (select resource_activity_seq from resource_activity_alloc)";
It is unlikely we can do any thing in the core solution. May be you can try to add below indexes and check for any improvement.
Cheers,
B
It is appeared this very large record count in resource_activity_tab and Resource_Activity_Alloc_Tab causing the delay when syncing Ly ResouceActivity
Our default where is
"origin_key1 IN(select task_seq from Mobile_Work_Order_Uiv) and activity_origin_db = 'WORK_TASK' and resource_activity_seq NOT IN (select resource_activity_seq from resource_activity_alloc)";
It is unlikely we can do any thing in the core solution. May be you can try to add below indexes and check for any improvement.
Cheers,
B
Hi
Besides that, is there any option in permission set filter to reduce the number of records to be sync to mobile?
IF yes, What can I filter to improve performance.
Tks a lot
Hi
Hi
Great
Tks for attention and help.
Br.
Lopes
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.