Different Types of SAP ABAP Select Statements
Different Types of SAP ABAP Select Statements As a SAP ABAP Consultant ,Our main role is fetching data using Select Statement and displaying it in output for End user .So Here i shared Different types of Select statements and their definitions and syntaxes and example programs. SELECT is a keyword used in SAP ABAP programming. SELECT Statement Syntax: SELECT result [target] FROM source [where] [GROUP BY fields] [ORDER BY order]. Select Retrieves or extract and/or a set of data from a database table or view (see Relational database ). SELECT belongs to the OPEN SQL command set. Each SELECT command consists of a series of clauses specifying different tasks: The result table might be a table or a single record, The INTO target clause defines the target place into which the selected data is to be retrived. If the target area is an internal table, the INTO clause specifies The INTO clause specify the result table that may be work area or internal table in which fetc...