Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

SAP Help shows only empty sections or blank pages


Author: Raghu Boddu MVP

View products that this article applies to.

Summary

SAP Help may display only blank sections/pages when you press F1 key.

↑ Back to the top


Symptoms

SAP Help�pages will appear as blank screen, instead of displaying the text and/or graphics when you want to view the help document.

↑ Back to the top


Cause

This issue can occur due to one of the following reasons:

  • Existence of Internet Explorer 7.0
  • Incorrect Windows registry entries for the SAP Help in the local Windows system.

Internet Explorer Release 7 is not completely compatible as release 6. SAP GUI uses Internet Explorer in the HTML control to display the help documents.

↑ Back to the top


Resolution

To resolve this issue, you need to either apply one of the SAP GUI patches mentioned below (or the latest one which is available from the SAP Market place):

SAP GUI for Windows 6.20 Patchlevel 64
SAP GUI for Windows 6.40 Patchlevel 20
SAP GUI for Windows 7.10

or uninstall Internet Explorer 7.0 (only applies to Windows XP or earlier OS.)

To know the version of Internet Explorer, follow the below mentioned steps:

1. Open Internet Explorer.
2. Click Help menu, About Internet Explorer.

If you are experiencing this issue with Internet Explorer 6, you need to add "MaxAllowedZone"�registry DWORD value in the following key:

"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions\"

To add the key automatically, follow the steps mentioned below:

  1. Open Windows Notepad (Click, Start, Run, notepad.exe)
  2. Copy and paste the following code.
  3. Save the notepad as "saphelp.vbs".
  4. Double-click it to add the entry in to Windows registry automatically.

<!------------------------------ Code starts here ------------------------------->

'Adding value to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions
'by Raghu Boddu - 12/28/2007
'This code may be freely distributed/modified

Option Explicit

'Declare variables
Dim WSHShell, n, MyBox, p, p1, p2, t, errnum, vers
Dim enab, disab, jobfunc, itemtype

Set WSHShell = WScript.CreateObject("WScript.Shell")
p = "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\HTMLHelp\1.x\ItssRestrictions\"
p = p & "MaxAllowedZone"
itemtype = "REG_DWORD"
enab = "4"
disab = "0"
jobfunc = "Created the Required Entries in the Registry (A code by Raghu Boddu) "

'This section tries to read the registry key value. If not present an
'error is generated.� Normal error return should be 0 if value is
'present
t = "Confirmation"
Err.Clear
On Error Resume Next
n = WSHShell.RegRead (p)
On Error Goto 0
errnum = Err.Number

if errnum <> 0 then
'Create the registry key value for MaxAllowedZone with value 0
�WSHShell.RegWrite p, 0, itemtype
End If


If n = 0 Then
�n = 4
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & disab, 4096, t)
ElseIf n = 1 then
�n = 0
WSHShell.RegWrite p, n, itemtype
Mybox = MsgBox(jobfunc & enab, 4096, t)
End If


<!------------------------------ Code ends here ------------------------------->

NOTE: Ensure that no application, or Internet Explorer window is opened while executing the script.)

Restart the system once after adding the key to take the changes affected.

↑ Back to the top


More information

It is recommended to take a backup of the registry before you execute any scripts.The following KB will help you to understand the process of backing up the registry:

http://support.microsoft.com/kb/322756

↑ Back to the top


Community solutions content disclaimer

Microsoft corporation and/or its respective suppliers make no representations about the suitability, reliability, or accuracy of the information and related graphics contained herein. All such information and related graphics are provided "as is" without warranty of any kind. Microsoft and/or its respective suppliers hereby disclaim all warranties and conditions with regard to this information and related graphics, including all implied warranties and conditions of merchantability, fitness for a particular purpose, workmanlike effort, title and non-infringement. You specifically agree that in no event shall Microsoft and/or its suppliers be liable for any direct, indirect, punitive, incidental, special, consequential damages or any damages whatsoever including, without limitation, damages for loss of use, data or profits, arising out of or in any way connected with the use of or inability to use the information and related graphics contained herein, whether based on contract, tort, negligence, strict liability or otherwise, even if Microsoft or any of its suppliers has been advised of the possibility of damages.

↑ Back to the top


Keywords: KB556050, kbhowto, kbpubtypecca, kbpubmvp

↑ Back to the top

Article Info
Article ID : 556050
Revision : 1
Created on : 12/28/2007
Published on : 12/28/2007
Exists online : False
Views : 374