2009 Mar 24 5:36 AM
Dear all my friends,
I have a program which call function module SAPWL_WORKLOAD_GET_STATISTIC.
it run properly on ECC 6.0 but it doesn't work on R/3 4.6.
please help to show me the equivalence function in R/3 4.6
many thanks !
2009 Mar 24 6:31 AM
Hi,
pls check the startdate parameter that u r providing, the date format chages for different versions.
the date format must be different in ecc6 and 4.6.
so, try providing the correct format in 4.6.
thanks
ravi
2009 Mar 24 7:32 AM
Dear Ravi
this is my source code :
CALL FUNCTION 'SAPWL_WORKLOAD_GET_STATISTIC'
EXPORTING
periodtype = 'M'
INSTANCE = 'TOTAL'
startdate = '01032009'
only_application_statistic = ''
TABLES
memory_statistic = P_memory_stat
EXCEPTIONS
UNKNOWN_PERIODTYPE = 1
NO_DATA_FOUND = 2
NO_SERVER_GIVEN = 3.
it still doesn't work.
please help me to check !
thanks !
2013 Dec 05 6:55 AM