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

Demo programs for performance check

Former Member
0 Likes
297

Hi there ,

Ik know there are some performance check reports in SAP using data from SBOOK and SFLIGHT. But these tables are empty. Does anybody know how to fill these tables ?? I know there's a report for in in the higher versions, but i can't find it in 4.6C

Kind regards,

Gert-Jan van Holland

1 REPLY 1
Read only

Former Member
0 Likes
250

You can copy the data from client 000 for demo tables

data : i_sflight like sflight occurs 0 with header line.

select * from sflight client specified into table i_sflight

where mandt eq '000'.

loop at i_sflight.

move sy-mandt to i_sflight-mandt.

modify i_sflight.

endloop.

modify sflight from table i_sflight.

In short - All the demo tables have data in client 000.

or

chk if this program exists in ur version of SAP

<b>SAPBC_DATA_GENERATOR</b>