cancel
Showing results for 
Search instead for 
Did you mean: 

Integrated ITS - CSS in MIME cannot be loaded

Former Member
0 Kudos

Hello,

I have a service, Z_MIME, which contains a bunch of MIME objects (CSS, Javascript, Pictures, ...).

On the other side, I have several other ITS services, which all use some MIME objects of this Z_MIME service.

Everything is published, but the MIME objects of Z_MIME just are not loaded.

For example, a Z_COMMI service loads a CSS contained in Z_MIME via the following HTMLB instruction :

`mimeURL(~service="z_mime", ~theme=99, ~language="", "Style.css")`

I have tried republishing my Z_MIME service, and also to invalidate the MIME cache via program SITSPMON, without results.

Can anyone give me any hint about what I could try ? Please tell me if more details are needed.

Accepted Solutions (1)

Accepted Solutions (1)

former_member316351
Active Contributor
0 Kudos

Hello Thomas,

The HTMLb should probably be:

`mimeURL(~service="z_mime", ~theme="99", ~language="", name="Style.css")`

Then make sure that the mime is actually available. The URL, based on the HTMLb, should be:

http://host:port/sap/public/bc/its/mimes/z_mime/99/Style.css

If that is all correct then you could try adding the parameter ~sources with a value of z_mime to the z_commi configuration in SICF.

Edgar

Answers (1)

Answers (1)

Former Member
0 Kudos

Hello,

You were right, quotes were missing in my ~theme parameter. This is weird however, because this version of my template worked in another system with integrated ITS, without the quotes.

It was mistake anyway to not use quotes, so it is better now.

Thanks for the help.

Thomas