cancel
Showing results for 
Search instead for 
Did you mean: 

can call from BSP application to Webdynpro java application

Former Member
0 Kudos

Dear Experets,

we have one BSP page inside got one butten, can it possible to call webdynpro screen when i click button in bsp page.

please give solution.. how to intigrate BSP and Webdynpro java application.

with support of sdn experts i learan atlost 20%.

please keep support for this..

sinerely

yours

Accepted Solutions (1)

Accepted Solutions (1)

former_member751941
Active Contributor
0 Kudos

Hi Ganesh,

Check this code.

<htmlb:button id = "myButton2"

text = "Emphasized button"

tooltip = "button quick info: Please click me"

onClick = "<put the url of your webdynpro application>"

design = "emphasized"

/>

http://help.sap.com/saphelp_nw04/helpdata/en/5a/f8b53a364e0e5fe10000000a11405a/frameset.htm

Regards,

Mithu

Former Member
0 Kudos

Dear Raj,

Tq for giving reply first time to me, i know you are the one of the right person bsp problem solution. what you given example is very nice, but i facing following problems

1. how to transfer bsp session to webdynpro and how to transfer data ..

2. bsp is different server and webdynpro is deferent server then how to call generic way,

raja_thangamani
Active Contributor
0 Kudos

<i>1. how to transfer bsp session to webdynpro and how to transfer data ..</i>

--> YOu can transfer via URL Parameter or you can store it in server side cookies.. To access the server side cookies from webdynpro, just make RFC FM call & access the cookies inside..

<i>2. bsp is different server and webdynpro is deferent server then how to call generic way</i>

-->TO make it dynamic, you can make some config table in SAP which will have DEV, QA & PROD Basis URL.

Let me know if you have any question.

<b>*Reward each useful answer</b>

Raja T

raja_thangamani
Active Contributor
0 Kudos

Ganesh,

Let me know if you have any more issues on the same, otherwise Reward & close the thread pls..

Raja T

Former Member
0 Kudos

dear Raj,

still i am going on process, I think i need some more help from you, please let me know what time genarally you are giving replies, I am in malaysia, thats why time gap purpose asking..

once solve the problem will be assigne remaing awards for u, becuase what you say that my Project manager agreed for that way...

Regards

raja_thangamani
Active Contributor
0 Kudos

Im in US...EST timezone

Raja T

Message was edited by:

Raja Thangamani

Former Member
0 Kudos

Dear Raja Thangamani ,

as per your request, I am closing this thread, and giving rewards to you, at the moment i am concentrating on BSP standard applications, hap_document, hcm_learning customaization. once finish that then i am going Webdynpro, then i will be touch with u.

please help me for BSP also, I know you and duggirala raju are Guru's of BSP.

reall thanks..

Answers (3)

Answers (3)

raja_thangamani
Active Contributor
0 Kudos

On Button click event, call the below method..

navigation->goto_page( url = <ur_webdynpro_url>).

<b>Entire code:</b>


<htmlb:button id = "myButton2"
text = "Cal URL"
onClick = "callURL"
design = "emphasized"
/>

<b>In OnInputprocessing (do_handle_event - MVC )</b>

DATA : button_event TYPE REF TO cl_htmlb_event_button,

event1 TYPE REF TO cl_htmlb_event.


event1 = cl_htmlb_manager=>get_event( runtime->server->request ).

CASE event1->server_event.

WHEN 'callURL'.
  navigation->goto_page( url = <ur_webdynpro_url>).
ENDCASE.

Raja T

Message was edited by:

Raja Thangamani

Former Member
0 Kudos

Hi,

Check these links they maybe helpful to you

/people/siddhartha.jain/blog/2007/01/16/how-to-retrieve-a-generic-object-services-gos-or-sapoffice-document-display-it-in-a-bsp-webdynprojava-application

http://help.sap.com/search/highlightContent.jsp

http://help.sap.com/search/highlightContent.jsp

Regards,

SURYA

Former Member
0 Kudos

Hi,

Check the below link u will get idea about that...

http://help.sap.com/saphelp_nw04/helpdata/en/7a/b86041397211d5992200508b6b8b11/frameset.htm

http://help.sap.com/saphelp_nw04/helpdata/en/1b/c676fb006be249bdd087113b3ee470/frameset.htm

http://help.sap.com/saphelp_nw04/helpdata/en/61/5d0b3fe56a11d4990d00508b6b8b11/frameset.htm

/people/siddhartha.jain/blog/2007/01/16/how-to-retrieve-a-generic-object-services-gos-or-sapoffice-document-display-it-in-a-bsp-webdynprojava-application

null

Former Member
0 Kudos

Dear Expertes,

I think you are not understand my quation, please suggest me how to call webdynpro on java application from BSP Page

is it possible ?

Sincerely

Former Member
0 Kudos

still i am fighting about this way

please any links about this or any example send me regards this

your cooparetion highly apprisiated.

sincerely

Former Member
0 Kudos

Hi,

You can call the URL of the Web Dynpro application on click of the buton in BSP. You find the URL of your application in the Web Dynpro Explorer on the Properties tab. The URL of any Web Dynpro application looks like:

<i>http://<host>.<domain>.<extension>:<port>/webdynpro/dispatcher/<namespace>/<application name></i>

Regards,

Satyajit.