‎2007 Feb 07 1:24 PM
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
‎2007 Feb 07 2:18 PM
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>