cancel
Showing results for 
Search instead for 
Did you mean: 

Menu Bar

shiva_suvarna
Participant
0 Kudos

hi friends,

i am not getting the menu bar , some days back i asked this question i was answered that need to be upgrade service packs. now i am usind 6.20 and it is having the <b>62053</b> service pack still i am not able to get the menu bar .

i will wait for ur replies,

thanks in advance .

Accepted Solutions (1)

Accepted Solutions (1)

rainer_liebisch
Contributor
0 Kudos

Yes, this syntax error is solved by the note I mentioned above.

Regards,

Rainer

Answers (3)

Answers (3)

rainer_liebisch
Contributor
0 Kudos

It is very important that you apply note 851647. This solves a common runtime error in this Support Package.

Regards,

Rainer

shiva_suvarna
Participant
0 Kudos

I reactivated the SBSPEXT_PHTMLB application in SICF .

But when activating the application through SE80. It's showing the syntax error <b>"statement concluding with '..ID' ended unexpectedly</b>".

Here this 'ID' is a variable and using in the id attribute of elements like InputField,Menubar etc.

rainer_liebisch
Contributor
0 Kudos

Hi,

call the page default.htm of the application SBSPEXT_PHTMLB and click in the left menu on the link "MenuBar". Does it work there or do you get an error?

Regards,

Rainer

shiva_suvarna
Participant
0 Kudos

i run that application and i got the error

Error is

Following error text processed in system:

<b>BSP exception: Access to URL /sap(bD1lbiZjPTAyNSZ3PTQ3NjAwMDAr)/bc/bsp/sap/sbspext_phtmlb/menuBarSample.htm is forbidden.

</b>

and for the 'PopupMenu' example in the same application i go t the error

Following error text processed in system:

<b>BSP Exception: Internal Error in Business Server Page Runtime</b>.

Program CL_BSP_RUNTIME================CP

Include CL_BSP_RUNTIME================CM001

Row 196

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

SBSPEXT_PHTML service node isn't active. Go to SICF and activate that node.

thomas_jung
Developer Advocate
Developer Advocate
0 Kudos

Can you elaborate on what you mean by "Not getting the Menu Bar"?

shiva_suvarna
Participant
0 Kudos

hi Thomas earlier also u solved one of my problem.

When i am clicking on the menu item the menu is not collapsing means the popupmenu is not displaying. i am sending the code also.

<%@page language="abap" %>

<%@extension name="htmlb" prefix="htmlb" %>

<%@extension name="phtmlb" prefix="phtmlb" %>

<htmlb:content id = "content"

design = "DESIGN2003"

rtlAutoSwitch = "true" >

<htmlb:page>

<htmlb:form method="post" >

<phtmlb:popupMenu id="popupmenu1" >

<phtmlb:popupMenuItem menuItemId =

"popupmenu1_item1"

text = "item1"

enabled = "true" />

<phtmlb:popupMenuItem menuItemId = "popupmenu1_item2"

text = "item2"

enabled = "true" />

<phtmlb:popupMenuItem menuItemId = "popupmenu1_item3"

text = "item3"

enabled = "true" />

</phtmlb:popupMenu>

<phtmlb:menuBar id = "menu1"

width = "100%" >

<phtmlb:menuBarItem id = "menu1_popupmenu1"

caption = "caption1"

enabled = "true"

popUpMenuId = "popupmenu1"

tooltip = "tooltip1" />

</phtmlb:menuBar>

</htmlb:form>

</htmlb:page>

</htmlb:content>