Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

abap reports

Former Member
0 Likes
664

Which statement is the heart of a report?

Which statement is the heart of a report?

5 REPLIES 5
Read only

Former Member
0 Likes
646

HI ,

Welcome to SDN ...

START-OF-SELECTION.

END-OF-SELECTION.

Regards,

Santosh

Read only

0 Likes
646

Thank u for ur reply.Can you please Explain PO cycle?

Read only

Former Member
0 Likes
646

hi,

report <report-name>

regards,

ananth

Read only

Former Member
0 Likes
646

Hai,

In each program Inroductory statement is mandatory which can be treated as heart of the stetement.

Each ABAP program starts with an introductory statement.

The functions of an ABAP program are implemented in processing blocks. Processing blocks are defined using modularization statements. You can use declarative statements in processing blocks of the type procedure to define local data types and data objects. The other processing blocks do not have a local data area, and any declarative statements apply to the program globally. Methods play a special role here: Methods are processing blocks that have to be implemented within the implementation section of their class. The order of the processing blocks or implementation sections is irrelevant for program execution, but should be designed to make the program easy to read.

Every ABAP program provides predefined data types, data object and predefined functions.

Following the introductory statement, every program contains a global declaration section, in which you implement the definitions and declarations that are valid and visible in the entire program. This includes the declaration of data types and data objects, as well as the definition of interfaces or the declaration section of classes in ABAP Objects. The definitions of interfaces and classes contain the declarations of their components. While the order of the individual definitions and declarations is not specified, you have to take into account that an ABAP statement can only refer to existing definitions and declarations. For example, a reference variable can only refer to a previously defined class, which in turn can only implement a previously defined interface. Once you introduce a procedure, you can declare the data types and data objects that will be visible within that procedure.In the broadest sense, the declaration of data types also includes the typing of objects whose data type is undetermined when the program is written.

All the other statements of an ABAP program are implementation statements, which can always be assigned to a processing block. You use the implementation statements to implement the functions of a processing block. The functions of all processing blocks are largely implemented using the same statements.

Since ABAP is a language that has grown over time, it contains several obsolete additions to statements that have been replaced with improved language constructs, but which have not been eliminated in order to ensure downward compatibility. In ABAP Objects - that is, in the implementation of methods -, almost all of the obsolete language elements will fail syntax checks. In general, you should no longer use these language elements in new programs, but you may to encounter them in older programs.

Reward points if it helps you.

Regds,

Rama chary.Pammi

Read only

Former Member
0 Likes
646

hi jeya

go to following link for PO

http://blogs.ittoolbox.com/sap/kehinde/archives/the-procure-to-pay-cycle-10574

regards ravish

plz reward if helpful