‎2008 Jun 09 9:13 AM
What is the main purpose of Report XYZ statement in the report?
‎2008 Jun 09 12:39 PM
hi krishna.
report with y or z for user creating reports.can you clarify me your requirement
thanks
abdul.
‎2008 Jun 09 12:58 PM
Hi Krishna,
The Report statement in the editor program will uniquely identifies that particular report name.
If u code another report statement in the same program, it'll show syntax error.
If it helpful to u, reward me plz
Thanks
Suren
‎2008 Jun 09 2:02 PM
In REPORT rep
rep is not required and can in fact be any alphanumeric string. Its use is described in the ABAP HELP for keyword REPORT, but briefly, it tells the ABAP runtime that the program is executable, and it can link a message class, or be used to define a logical database, or define the page layout when writing list reports.
matt
‎2008 Jun 10 8:07 AM
Hi
Report Statement Identify that Program type is executable program.
1 .it will trigger the EVENTS like INITIALIZATION, START-OF-SELECTION
2. it can be schedule in Background also using sm36.
3. it can be executed standalone.
With Regards,
Nikunj Shah
Edited by: Nikunj Shah on Jun 10, 2008 9:09 AM
‎2008 Jun 24 2:17 PM
‎2008 Jun 24 2:40 PM
The first statement of an ABAP program must always be the statement REPORT or
PROGRAM, respectively (only exception: FUNCTION-POOL for function modules). Both
statements have exactly the same function.
The name specified in the statements REPORT and PROGRAM must not necessarily be
the program name, but for documentation reasons, you should use the correct name.
The statements REPORT or PROGRAM can have several options, such as LINE-SIZE,
LINE-COUNT, or NO STANDARD PAGE HEADING. You use these options mainly in
programs that which evaluate data and display the results in a list.
‎2008 Jun 25 8:10 AM