| Home • Tips • Tutorials • Forums • Certification Q's • Interview Q's • Jobs • Testimonials • Contact Us | ||
Document Categories:
What's New?
Contribute?Sample SpecsWhat's Hot? |
Building a simple BSP Application to retrieve Material informationBy Vakada Raghava, Mouri Tech Solutions Go to
transaction SE80. Select BSP application and input the name of the BSP
application that you want to create.
Save and
activate the application. Right
click on the application name and click àcreateàpage.
The resultant window appears as follows. Enter the name of the page that you want to create. In this
case it is the ‘default.htm’ that I am creating. Enter the description of the page and click on
‘continue’.
Click save.
You can
observe the ‘pages with flow logic’ and under that you can find
‘default.htm’ page in the BSP application tree.
Change
the code in the layout as shown in the image below or copy and paste the code
given below in the layout window.
<%@ page language="abap" %>
<html>
<body BGCOLOR="#B5E1D2" >
<h2> <B> MATERIAL DETAILS </B> </h2>
<form method="post">
Material Number <input type=text name="matnr" value="" > <input type=text name="matnr2" value="" > <p> <input type=submit name="onInputProcessing(select)" value="Get Details"> <p> <input type=submit name="onInputProcessing(materials)" value="Get All"> <p> <center> <table border=1> <% data: wa_mara type mara. %> <% if i_mara is not initial. %> <tr> <td><b>MATNR</b></td>
<td><b>ERSDA</b></td>
<td><b>LAEDA</b></td>
<td><b>VPSTA</b></td>
</tr>
<% loop at i_mara into wa_mara. %>
<tr> <td> <%= wa_mara-matnr %> </td> <td> <%= wa_mara-ersda %> </td> <td> <%= wa_mara-laeda %> </td> <td> <%= wa_mara-vpsta %> </td> </tr> <% endloop. %> <% else. %> <tr> <td><b>MATNR</b></td>
<td><b>ERSDA</b></td>
<td><b>LAEDA</b></td>
</tr> <% loop at it_mara into S_mara. %> <tr> <td> <%= S_mara-matnr %> </td> <td> <%= S_mara-ersda %> </td> <td> <%= S_mara-laeda %> </td> </tr> <% endloop. %> <% endif. %> </table>
</form>
</body>
</html>
Create the page attributes as shown below.
Save, Check and activate the BSP application and execute.
Enter the login name and password in the pop-up that appears.
The BSP page looks as shown below.
|
|
|
Please send us your feedback/suggestions at webmaster@SAPTechnical.COM Home • Contribute • About Us • Privacy • Terms Of Use • Disclaimer • Safe • Companies: Advertise on SAPTechnical.COM | Post Job • Contact Us ©2006-2007 SAPTechnical.COM. All rights reserved. All
product names are trademarks of their respective companies. SAPTechnical.COM
is in no way affiliated with SAP AG. Graphic Design by Round the Bend Wizards |
||