cancel
Showing results for 
Search instead for 
Did you mean: 

Fiori - Count is not getting refreshed in IE

0 Kudos

Hi,

We have implemented all HR related Fiori applications.

When a user approves or rejects any work item from applications like Approve Leave Request, Approve Travel Request etc., a count is not getting refreshed on the launchpad in IE. It displays the old count.

I suspect this is the IE cache problem.

Please help me to get it solved.

Regards,
Vikas

masa_139
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi Vikas,

Does it work in other browser?

Regards,

Masa / SAP Technology RIG

Accepted Solutions (1)

Accepted Solutions (1)

Hi Masa,

Yes. It works in other browser.

It was a cache issue. Added below code in the service side to disable the caching of data and it is working now.

DATA ls_header TYPE ihttpnvp.
ls_header-name = 'Cache-Control'.
ls_header-value = 'no-cache, no-store'.
set_header( EXPORTING is_header = ls_header ).

Regards,

Vikas

Answers (0)