Choosing between BSP and Web Dynpro

Choosing between BSP and Web Dynpro

I am new to SAP. I want to become a technical consultant, specifically a programmer. I don't know how to choose between BSP and WebDynpro. How can I make this decision?

    Requires Free Membership to View

    When you register, you will start receiving targeted emails from my award-winning team of editorial writers. Our goal is to keep you informed on the hottest topics and biggest challenges faced by SAP professionals today.

    Hannah Smalltree, Editorial Director

    By submitting your registration information to SearchSAP.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchSAP.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

This is not an either-or situation. If you are serious you need to learn both: First BSP, then WebDynpro.

WebDynpro for ABAP is a framework for Web development that runs on top of BSP.

BSP in a nutshell: You can create BSP applications in SE80, Add a page to your application. Now you can code normal web page in HTML as in any other Web server. If you need to insert ABAP code, just embrace the code in <% ... %> tags, like you do in ASP.NET or JSP.NET

Sample:

My BSP test <% data: itab type table of t005 with header line. select * from t005 into table itab. %> <% loop at itab. %> <%= itab-land1 %> <% endloop. %> To learn more, try SAP help.

There is also the HTMLB extension for BSP, a macro language that makes pages easier to create. There are also many tutorials in SDN.

This was first published in October 2008