cancel
Showing results for 
Search instead for 
Did you mean: 

How to implement "Please wait your request is being processed" window ?

Gauri
Active Participant
0 Kudos

Hi all,

We are integrating BSP iviews in SAP portal. When the BSP applicaiton is being processed(eg. a form is submitted"), is it possible to show a small window like "Please wait your request is being processed" ? .

Do I need to implement this in the portal or in the BSP applicaiton? Our Applications are created using Web request. Is it possbile to implement this without using the HTMLB

How do I implement this functionality? Any sample code is available?

Thanks and Regards,

Gauri Gosavi.

Accepted Solutions (0)

Answers (2)

Answers (2)

athavanraja
Active Contributor
0 Kudos

you have to do it in your BSP application and you can do it without using HTMLB tags.

investigate HTMLB_SAMPLES/loading.htm to see how you can do that.

Regards

Raja

Former Member
0 Kudos

Hi,

you can use a xhtmlb extension.

Here's the way to do it:


<%@extension name="xhtmlb" prefix="xhtmlb" %>
      <htmlb:form>
        <xhtmlb:protectDoubleSubmit/>
            <htmlb:button text     = "Test"
                          onClick  = "test" />
      </htmlb:form>

If you press the Test-Button there will popup a "Please wait" message.

Hope this helps.

Greetings

Claudia

Former Member
0 Kudos

also check this blog. it is not exactly what you need but you may tweak this for your requirement.

Pls check https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4a0ceb90-0201-0010-38b9-a0d...

for this.