cancel
Showing results for 
Search instead for 
Did you mean: 

Initial help with BSP applications

Former Member
0 Kudos

Hi @all,

I'm new in developing BSP applications and I've got some simple questions to the experts

Everything to use BSP apps in our SAP system is configured.

But now I am confused with a simple coding problem. It might be so easy that Google has no answer for me

I've got a grid in my SAP dynpro. Within clicking a cell, the value of the cell should be transported into a inputbox as a default value of a BSP app. By clicking the cell, the BSP app starts and the browser appears. Does anyone know how to get the variable from sap dynpro into BSP?

A little code snippet would be helpful for me.

Thank you in Advance,

Stefan

Edited by: Stefan Burghardt on Jan 19, 2009 4:14 PM

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Stefan,

If I understand you correctly, you should simply add the value as a request parameter, that is use something like /mybspapp/my_controller.do?thevalue=myvalue.

In the BSP application, you can access thevalue by

request->get_form_field( 'thevalue' )

.

Best regards,

Frank