cancel
Showing results for 
Search instead for 
Did you mean: 

Spell Check using LXE_SP_CHECKSPELLING_MS

Former Member
0 Kudos

Hi,

I am using this function module to do a spell check on description and text/note fields. This works great using IC WinClient (SAP GUI). When this is called from IC WebClient (BSP), the function module is returning NO_ACTIVEX error. Did someone encounter the same issue?

Please let me know.

Thanks

Venny

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member189058
Active Contributor
0 Kudos

Hi Venkatesh,

The function internally checks whether activeX controls are supported on the frontend or not.

Check whether your Web Browser has activeX controls enabled.

Regards,

Reema.

Former Member
0 Kudos

Reema,

I tried changing the ActiveX settings and it still didn't help me.

I am looking for other options as well..

Thanks

Venny

mohammed_anzys
Contributor
0 Kudos

Hi

The functional module will be calling another function module to check whether activex exists or not ....I am not sure whether it will work with webdynpro as they are doing specific checks for ITS and BSP.

CALL FUNCTION 'GUI_HAS_ACTIVEX'

IMPORTING

return = has_activex.

IF has_activex <> 'X'.

RAISE no_activex.

ENDIF.

Thanks

Anzy