<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: why abap language? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807060#M346351</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP is a business application.&lt;/P&gt;&lt;P&gt;So, the foremost thing for any application is easy understandability and for that it should use a programming language that could be easily understood by people.&lt;/P&gt;&lt;P&gt;most of the syntax in ABAP are like normal English statements like &lt;/P&gt;&lt;P&gt;WRITE , DO 5 TIMES.... etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, anybody, even those who don't have much knowledge on ABAP can understand it easily.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope ur doubt is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Neha Bansal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Neha Bansal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Mar 2007 06:03:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-23T06:03:15Z</dc:date>
    <item>
      <title>why abap language?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807053#M346344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why sap created a own language ABAP to write code , why cant it depend on c , c++ ,etc.?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Dec 2006 18:10:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807053#M346344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-25T18:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: why abap language?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807054#M346345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As SAP Has to work with most of the Database and also it requires the Business logic to be incorporated in the language. &lt;/P&gt;&lt;P&gt;It can use the open sql available in the market but then patent issues and propritory isues come into picture.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amandeep Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Dec 2006 19:08:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807054#M346345</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-25T19:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: why abap language?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807055#M346346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ranjith gupta  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ABAP   : Advanced Business Application   Programming&lt;/P&gt;&lt;P&gt;4          : Fourth generation Language	&lt;/P&gt;&lt;P&gt;Multi Lingual&lt;/P&gt;&lt;P&gt;Only Tool for developing SAP applications.&lt;/P&gt;&lt;P&gt;ABAP Workbench contains all tools, we need to create ABAP/4 Programs.&lt;/P&gt;&lt;P&gt;ABAP/4 program contains all usual control structures and modularization concepts.&lt;/P&gt;&lt;P&gt;After coding, we will save and generate. During generation, the system creates a Run Time object. When we execute, the system executes this Run Time Object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are different from sequential programming languages such as FORTRAN, PASCAL and C.&lt;/P&gt;&lt;P&gt;Instead it shares certain features with event Oriented programming languages such as VB and JAVA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An ABAP/4 program has modular structure.&lt;/P&gt;&lt;P&gt;Source text (processing Block) always consists, Collection of One or more programming modules .&lt;/P&gt;&lt;P&gt;Programming module consists of sequential statements.&lt;/P&gt;&lt;P&gt;With in the processing Block, we can use general Control statements such as DO, IF, WHILE and CASE statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Execution of ABAP/4 Programs you need a special Run Time Environment .&lt;/P&gt;&lt;P&gt;This Run Time Environment is responsible for calling the individual program modules one after the other .&lt;/P&gt;&lt;P&gt;This Run Time Environment is nothing but ABAP/4 Processor .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declarative Elements for declaring Data.&lt;/P&gt;&lt;P&gt;Operational Elements for Manipulating data.&lt;/P&gt;&lt;P&gt;Control statements for processing program flow.&lt;/P&gt;&lt;P&gt;Functions for processing character strings.&lt;/P&gt;&lt;P&gt;Subroutines with or without passing values.&lt;/P&gt;&lt;P&gt;Central Library with special type of Subroutines called Function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open SQL (a subset of SQL) to read and change data base tables.&lt;/P&gt;&lt;P&gt;Allows you to define and process Internal Tables.&lt;/P&gt;&lt;P&gt;Allows you to store data as Sequential files on Application and Presentation Servers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Executable program (1) &lt;/P&gt;&lt;P&gt; INCLUDE program (I)    &lt;/P&gt;&lt;P&gt; Module pool (M)       &lt;/P&gt;&lt;P&gt; Function group (F)     &lt;/P&gt;&lt;P&gt; Subroutine pool (S)    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP differentiates between two general types of ABAP/4 Programs.&lt;/P&gt;&lt;P&gt;Report Programs&lt;/P&gt;&lt;P&gt;Dialog Programs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 10:00:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807055#M346346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T10:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: why abap language?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807056#M346347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IMHO SAP created ABAP, because it needed a way to make programming more flexible....R/3 was developed 90% ABAP and 10% C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C/C++ are very hard to learn programming languages....ABAP is easy to learn and is oriented to Business Applications....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Dec 2006 16:36:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807056#M346347</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-26T16:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: why abap language?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807057#M346348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  well it can use c or c++,but it has its own tables for different modules,its own predefined applications that makes the user to just use those things when needed,instead of creating each and every thing.&lt;/P&gt;&lt;P&gt;let us suppose to create a table we have to write a lot of code in c or c++,&lt;/P&gt;&lt;P&gt;but if it is with abap only we will define the fields and ots structure ,thats it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 10:55:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807057#M346348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T10:55:04Z</dc:date>
    </item>
    <item>
      <title>Re: why abap language?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807058#M346349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello SriLatha garu.. ekadi nuchi...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Dec 2006 11:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807058#M346349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-27T11:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: why abap language?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807059#M346350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ranjith,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To answer your question, I would recommend that you read the following blog: "&amp;lt;a href="http://martinceronio.net/?p=5"&amp;gt;Why I like ABAP&amp;lt;/a&amp;gt;". I think it may prove interesting to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Feb 2007 15:17:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807059#M346350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-27T15:17:25Z</dc:date>
    </item>
    <item>
      <title>Re: why abap language?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807060#M346351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP is a business application.&lt;/P&gt;&lt;P&gt;So, the foremost thing for any application is easy understandability and for that it should use a programming language that could be easily understood by people.&lt;/P&gt;&lt;P&gt;most of the syntax in ABAP are like normal English statements like &lt;/P&gt;&lt;P&gt;WRITE , DO 5 TIMES.... etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, anybody, even those who don't have much knowledge on ABAP can understand it easily.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope ur doubt is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Neha Bansal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Neha Bansal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 06:03:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-abap-language/m-p/1807060#M346351</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T06:03:15Z</dc:date>
    </item>
  </channel>
</rss>

