Building A Simple BSP Application To Retrieve Material Information
Building A Simple BSP Application To Retrieve Material Information
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 createpage.
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.
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>
Save, Check and activate the BSP application and execute. Enter the login name and password in the popup that appears.
In the Event Handler tab, under OnInputProcessing tab, write the code as shown below or copy and paste the code that is given below.
Code under OnInputProcessing. CASE EVENT_ID. WHEN 'select'. NAVIGATION->SET_PARAMETER( 'matnr' ). SELECT * FROM MARA INTO TABLE I_MARA WHERE MATNR BETWEEN MATNR AND MATNR2. WHEN 'materials'. SELECT * FROM MARA INTO TABLE I_MARA. WHEN OTHERS. ENDCASE. Click on the BSP application name and input as shown below.
Save, check and activate the BSP application and then execute the application. The page would be displayed as shown below.
Enter the material numbers in the textboxes and then click on Get details. The output would be as follows. The output is a result of the select query that we fired selecting the specified set of fields.
Click on the Get all button to get the output as follows. Remember, we have fired a select query selecting all the records from the database table MARA and are displaying it.