cancel
Showing results for 
Search instead for 
Did you mean: 

reports

Former Member
0 Kudos

hi frndz,

can any body tell me the exact report structure in implention project?

helpful answers will be rewarded.

thanks n regards.

venkat.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Venkat,

The structure of a report will be same in any kind of project. Project can be implementation or support/maintenance. We have to use standards, naming conventions, modularization etc for any program delivering to the client.

Example:

Report zreport1 message-id z1 no standard page heading line-size 180.

line-size 141.

  • ZREPORT1 : XXX *

  • Created by : XXX *

  • Date : 12/10/2006 *

  • Description : Report to display XXXXXX *

  • *

  • MODIFIED BY DATE DESCRIPTION *

  • ----------- -------- -------------------------------------------- *

  • XXX 02/14/07 To include Document Number *

*-- External Tables -


tables: bsak.

*-- Internal Tables -


*Internal table for BSAK

*-- Variables -


Data: w_doc type c value ' 0001'.

*-- Constants -


constants: c_space type c value ' '.

*-- Selection-Screen -


selection-screen begin of block bl1 with frame.

select-options: s_budat for bsak-budat obligatory.

selection-screen end of block bl1.

*-- AT Selection-Screen -


at selection-screen.

*validation of the fields

perform validate_fields.

*-- Top-of-Page -


top-of-page.

*to diplay header

perform list_header.

*-- Start-of-Selection -


start-of-selection.

*to get data from tables

*-- End-of-Selection -


end-of-selection.

*to display the retrieved data

perform list_data.

Hope this helps.

Please reward if useful.

Thanks,

Srinivasa

Former Member
0 Kudos

Hi Srinivas,

thanks a lot.

regards.

venkat.

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi

the structure of the ABAP report in implementation project is like this

the ABAP header - details about the user who develped when it is developed

etc..

declaration - all declaration parts

design - selection screen deign

start-of-selection.

events

end of selection

if u want more ask me

reward if usefull

former_member189629
Active Contributor
0 Kudos

Exact Report Structure? U mean the structure of ABAP reports? If yes, it is:

Header: Data Declarations

Body: Initializations and Data extracts

Footer: Report Output statements