SAPWL_WORKLOAD_GET_STATISTIC  replacement in ECC6.90

Hi All,
The function module
SAPWL_WORKLOAD_GET_STATISTIC dosen't  work in version ECC6 but it's ok in 4.7.
which is the replacement function module of SAPWL_WORKLOAD_GET_STATISTIC  in ECC6.0?
The  tables used by ST03 in Version ECC6?
Regards,
Sirajuddin.

Siraj,
The FM is present in ECC 6.0
Here is the where use list:
   Program                          Short description
   LSCUIU13                         Determines statistical data
   LSISMU11
   LSTUWF01                         Include LSTUWF01
   LSTUWU20
   RSSTATF3                         Performance analysis: Include for RSSTAT30 central FORMS
   RSSTATMO                         Performance analysis: Include for central FORMS MONI I/O

Similar Messages

  • Special Stock Indicator B - I cannot find this indicator in the list

    Does anyone know if was discontuned .replaced in ECC6.0 or 46C.  Looking for B to use for customer stock that is in one of my plant . Not consignment stock.
    Any  help ?

    Hi Ratnakar:
    A further question.
    I have 2 systems, one is implementation A&D (A&D system) , another is standard ECC6(normal  system).
    I can find out all components of A&D system from normal system.
    But, I still can't use customer owner stock in normal system.
    I not found a A&D industry solution component, just like IS-OIL, IS-CWM(Industry Solution Catch Weight Management).
    I find components by SAP GUI menu:system->status->sap system data->component information.
    Could you kindly to point out how we can active MRO function or A&D solution?
    Thank you.
    Pascal Wang

  • The class "CX_SY_CONVERSION_BASE64"

    Hi Experts!!
    I'm working now on ECC6, the class  "CX_SY_CONVERSION_BASE64" doesn't exist, so I need to remplace it with another one which do the same job.
    Regard
    SMAALI Achraf

    Hello,
    The exception "CX_SY_CONVERSION_BASE64" was used to catch exceptions of the statement "CALL TRANSORMATION". It has been replaced in ECC6 by the exception "CX_TRANSFORMATION_ERROR".
    Regards.
    Nabil.
    Moderator message: points gaming detected, all points removed, please stop it right now or both user IDs are in danger.
    Edited by: Thomas Zloch on Apr 25, 2011 10:34 PM

  • How to replace obsolete download function module in ECC6.0?

    Hi Experts,
    How to replace obsolete download function module in ECC6.0?
    Thanks,
    Adi.

    Hi,
    DOWNLOAD is obsolete FM in ECC 6. To get the same functionality , we need to use
    CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG  method (It provides the File selection feature)
    and
    GUI_DOWNLOAD function module.(It downloads the internal table from program to presentation server)
    Please see the example below:
    Example:
    *CALL FUNCTION 'DOWNLOAD'
              EXPORTING
                   FILENAME            = p_filename
                   FILETYPE            = ‘DAT’
              TABLES
                   DATA_TAB            = T_DOWNL
              EXCEPTIONS
                   INVALID_FILESIZE    = 1
                   INVALID_TABLE_WIDTH = 2
                   INVALID_TYPE        = 3
                   NO_BATCH            = 4
                   UNKNOWN_ERROR       = 5
                   OTHERS              = 6.
    *End of deletion CH01-
    Replacement Method for above code:
    DATA: l_filename    TYPE string,
           l_filen       TYPE string,
           l_path        TYPE string,
           l_fullpath    TYPE string,
           l_usr_act     TYPE I.
    l_filename = P_filename.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
      EXPORTING
        DEFAULT_FILE_NAME    = l_filename
      CHANGING
        FILENAME             = l_filen
        PATH                 = l_path
        FULLPATH             = l_fullpath
        USER_ACTION          = l_usr_act
      EXCEPTIONS
        CNTL_ERROR           = 1
        ERROR_NO_GUI         = 2
        NOT_SUPPORTED_BY_GUI = 3
        others               = 4.
    IF sy-subrc = 0
          AND l_usr_act <>
          CL_GUI_FRONTEND_SERVICES=>ACTION_CANCEL.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        FILENAME                        = l_fullpath
       FILETYPE                        = 'DAT'
      TABLES
        DATA_TAB                        = T_DOWNL
    EXCEPTIONS
       FILE_WRITE_ERROR                = 1
       NO_BATCH                        = 2
       GUI_REFUSE_FILETRANSFER         = 3
       INVALID_TYPE                    = 4
       NO_AUTHORITY                    = 5
       UNKNOWN_ERROR                   = 6
       HEADER_NOT_ALLOWED              = 7
       SEPARATOR_NOT_ALLOWED           = 8
       FILESIZE_NOT_ALLOWED            = 9
       HEADER_TOO_LONG                 = 10
       DP_ERROR_CREATE                 = 11
       DP_ERROR_SEND                   = 12
       DP_ERROR_WRITE                  = 13
       UNKNOWN_DP_ERROR                = 14
       ACCESS_DENIED                   = 15
       DP_OUT_OF_MEMORY                = 16
       DISK_FULL                       = 17
       DP_TIMEOUT                      = 18
       FILE_NOT_FOUND                  = 19
       DATAPROVIDER_EXCEPTION          = 20
       CONTROL_FLUSH_ERROR             = 21
       OTHERS                          = 22.

  • Replacement of Obsolete Fm HR_DISPLAY_BASIC_LIST in ECC6.0 ??

    While upgrading to ECC6.0 (unicode enviromnent), what should be replacement for
    obsolete funciton module HR_DISPLAY_BASIC_LIST  ??
    (if suggesting REUSE_ALV_GRID_DISPLAY, please check the parameters and feedback).
    thanks,
    Susan

    Hi Remi,
    can you help me in replacing the below , as facing problem in pameter matching:
    CALL FUNCTION 'HR_DISPLAY_BASIC_LIST'
           EXPORTING
                BASIC_LIST_TITLE     = SY-TITLE
                FILE_NAME            = MYREPORT
                HEAD_LINE1           = P_RECORD_CONTROL-RECORD_TITLE
                HEAD_LINE2           = HEADLINE2
                FOOT_NOTE3           = P_TEMSE_OBJECT-FULL_NAME
                LAY_OUT              = 1  "Table ctrl error for 20+ cols
                LIST_LEVEL           = P_RECORD_CONTROL-SCREEN
                CURRENT_REPORT       = MYREPORT
           TABLES
                DATA_TAB             = T_INPUT_TABLE
                FIELDNAME_TAB        = P_FIELD_NAME_TABLE
           EXCEPTIONS
                DOWNLOAD_PROBLEM     = 1
                NO_DATA_TAB_ENTRIES  = 2
                TABLE_MISMATCH       = 3
                PRINT_PROBLEMS       = 4
                OTHERS               = 5.
    thanks & regards,
    Susan

  • What is the replacement for fm table_compress in ECC6

    Hi ,
    I am doing the ABAP remediationn from 4.7 to ECC6. Can you please let me know how to replace the obsolete function module TABLE_COMPRESS. As per the threads in SDN I came to know that there is a class availabe CL_ABAP_GZIP.  But I am not clear how to make use of this. Do we need to implement any OSS note for this.
    Thanks,

    Hi,
    No note needed, CL_ABAP_GZIP is available in ECC 6 (more precisely in NetWeaver 7.0 systems). Search forum for examples.
    BR
    Sandra

  • Need replacement for getting windows version in ecc6.0

    hi mates ,
    FM: get_gui_desktop_info with type = 8. gives the windows version of the system. since get_gui_desktop_info  is obsolete in ecc6.0. can anyone help me with the replacement to get the windows version in ecc6.0...... any help will be appreciated.
    regards
    mano

    use the class
    CL_GUI_FRONTEND_SERVICES
    methods
    GET_GUI_PROPERTIES
    GET_GUI_VERSION
    GET_IP_ADDRESS

  • Replacement  function modules in ECC6

    Hi,
    We are working Upgrade project in Ecc6.
    We found that function module 1. TABLE_COMPRESS and
                                                       2. STRING_MOVE_RIGHT                                                                               
    3. STRING_LENGHT is obsolete
    Please suggest the Replacement for these Function Modules
    Thanks
    Vanamali

    Check
    for TABLE_COMPRESS
    [Fm TABLE_COMPRESS]
    for STRING_MOVE_RIGHT
    [replacement for obsolete function module STRING_MOVE_RIGHT]
    for STRING_LENGHT
    DATA: lv_length TYPE i,
          var(10) TYPE c VALUE 'Sathar'.
    lv_length = STRLEN( var ).
    WRITE lv_length.

  • Steps to replace match code objects with search helps in ECC6 upgrade

    Hi,
    Upgrade 4.7 to ECC6, match code objects need to be replaced with search hellps.
    SAP note provided by client but not understanding clearly. Can any one explain me the stelps to migrate the match code objects into search hepls.
    Thanks,
    Jwala Deepa

    Hi,
    Migration must be done by a developer who knows both matchcodes and search helps. It's not just like a procedure that you can follow without knowledge/without thinking.
    It's probably a little bit like forms (but far more simple), they often need to be "migrated from scratch"
    The first important point is where to find the matchcode object/IDs -> SE11 -> Utility -> Other DDic objects. Then you'll see that are the update type, base table, etc.
    There's a little scheme here to show the differences: http://help.sap.com/saphelp_46c/helpdata/en/3e/f3fc37eeb70143e10000009b38f8cf/frameset.htm (plus the general matchcode documentation : http://help.sap.com/saphelp_46c/helpdata/en/cf/21ef1f446011d189700000e8322d00/frameset.htm )
    If you need a procedure, let's wait, and see if someone has one, but it doesn't look promising as matchcodes are not used since a long time now.
    BR
    Sandra

  • Replacement of  CALL FUNCTION 'WWW_USER_AUTHORITY' in ECC6.O

    Hi,
        Can any one share the function module for replacement of  below function modules in ECC6.O
    1) CALL FUNCTION 'WWW_USER_AUTHORITY'
    2)   CALL FUNCTION 'VALUES_DISPLAY'.
    Thanks & Regards
    Kiran

    ISA_INTERNET_USER should be a replacement for WWW_USER_AUTHORITY???
    Just kidding?
    Have a smart look into the replacement - what do you see?:
    FUNCTION ISA_INTERNET_USER.
    *"*"Lokale Schnittstelle:
    *"       IMPORTING
    *"             VALUE(USERID) LIKE  BAPIUSW01-OBJID
    *"             VALUE(NEW_USERID) LIKE  BAPIUSW01-OBJID OPTIONAL
    *"             VALUE(OBJTYPE) LIKE  BAPIUSW01-OBJTYPE
    *"             VALUE(PASSWORD) LIKE  BAPIUID-PASSWORD OPTIONAL
    *"             VALUE(NEWPASSWORD) LIKE  BAPIUID-PASSWORD OPTIONAL
    *"             VALUE(VERIPASSWORD) LIKE  BAPIUID-PASSWORD OPTIONAL
    *"             VALUE(ACTION) LIKE  BAPIUID-ACTION
    *"             VALUE(NEWVALIDTO) LIKE  BAPIUSW01-VALIDTO OPTIONAL
    *"       EXPORTING
    *"             VALUE(RETURN) LIKE  BAPIRETURN STRUCTURE  BAPIRETURN
    *"             VALUE(INITPASSWORD) LIKE  BAPIUID-PASSWORD
    *"       TABLES
    *"              STATUSINFO STRUCTURE  BAPIUSWSTA OPTIONAL
      CONSTANTS: C_MSG_ID LIKE SY-MSGID VALUE 'ISA'.
      DATA: RET LIKE BAPIUID-RCODE.
      CALL FUNCTION 'WWW_USER_AUTHORITY'
           EXPORTING
                ID           = USERID
                NID          = NEW_USERID
                IDTYPE       = OBJTYPE
                PASSWORD     = PASSWORD
                NEWPASSWORD  = NEWPASSWORD
                VERIPASSWORD = VERIPASSWORD
                ACTION       = ACTION
           IMPORTING
                RET          = RET
                INITPASSWORD = INITPASSWORD
           TABLES
                STATUSINFO   = STATUSINFO
           EXCEPTIONS
                OTHERS       = 1.
    RIGHT! The replacement calls the function module to be replaced...

  • Replacement for FM  WS_MSG as it is obsolete in ECC6.0

    HI ALL,
                  can you please suggest me the replacement for obsolete  FM  WS_MSG.

    Try with
    HELP_VALUES_GET_WITH_VALUE
    POPUP_TO_DISPLAY_TEXT
    Regards.

  • Replacement for HTTP_BASE64_ENCODE in ECC6.

    Hi Experts ,
    I am working in an SAP Upgrade project  from 4.6 to ECC we are using Unicode UTF 8 in ECC
    I have a problem in one User exit of F110 transaction ( EXIT_SAPLIEDP_002  ) in a Function Module HTTP_BASE64_ENCODE which imports parameters of Type x .When we provide Chinese and Japanese languages it provides an encoded output, But in ECC its providing AAAAAA== in the output instead of encoded output .
    Please let me know if there are any replacement for the FM HTTP_BASE64_ENCODE which will help in my case for encoding chinese and japanese characters .
    Ex when we input "日本テスト日本テスト" in put for function module it should provide " 5pel5pys44OG44K544OI5pel5pys44OG44K544OI"
    in output .
    Please let me know if ECC has provided any function module for this encoding ..
    Please refer to for encoding format
    http://www.opinionatedgeek.com/dotnet/tools/Base64encode/Default.aspx
    Thanks in advance...

    Thanks for your Inputs
    I have used but it provides ###### in output instead of encoded output . Could  you please let me know how to use it while passing chinese and japanese characters to method and getting Encoded output

  • Function moule to fetch stat reccords in ECC6.0

    Hi All,
    The function module
    SAPWL_WORKLOAD_GET_STATISTIC dosen't work in version ECC6 but it's ok in 4.7.
    The Function module is available in ECC6.0 but it doesn't fetch the stat records from ST03.
    which is the replacement function module of SAPWL_WORKLOAD_GET_STATISTIC in ECC6.0?
    The tables used by ST03 in Version ECC6?
    Regards,
    Siraj.

    hi,
    changes to transactions for versions is stored in table PRGN_CORR2.
    SAPWL_ST03N
    open this program in se80,u can find all tables used.

  • ESS is not working properly after upgrade from 4.7 to ECC6.0

    ESS Scenario in 4.7
    4.7 Scenario:
    The IMG configuration u201CWork and Life Eventsu201D is done to map them with the PZM3 service (Home Page) to get them as different folders/links on the home page as given below:
    List of Services used to set up ESS:
    Sl.No     Functionality     Service/EWT/URL Name     Standard/ Customized     Type
    1     Home Page     PZM3                                          Standard                 Service
    2     Inbox                     BWSP                                          Standard                 Service
    3     Calendar                     BWCA                                          Standard                 Service
    4     Whou2019s Who     PZ01                                          Standard                 Service
    5     CPF Display     http://192.168.0.2:7070/omcpf             NA                                  URL
    6     Payslip Display     ZPAYSLIP_USER                          Customized                Service
    7     Section 80C     PZ88                                          Standard                EWT
    8     Section 80                     PZ80                                          Standard                EWT
    9     Form 16                     HRESSIN_F16                          Standard                EWT
    10     Address                     PZ02                                             Standard                EWT
    11     Bank Information     PZ03                                          Standard                Service
    12     Open Appraisals     Not Available                           NA                                 Service
    13     Emergency Address     PZ05                                           Standard                 EWT
    14     Family/Dependents     PZ12                                           Standard                 EWT
    15     Personal Data     PZ13                                               Standard                  EWT
    16     Previous Employers     PZ28                                           Standard                 EWT
    17     Apply Leave     WS20000081                           Standard               Service
    18     Leave Overview     WS01000109                           Standard              Service
    19     Leave Balance     PZ09                                             Standard              Service
    20     Loan Application     ZLOAN                                          Customized              Service
    ECC6.0 Scenario:
    In ECC6.0, flow based services are no more supported by ECC6.0 and Dynpro based services are supported.PZM3 (Home Page) is a flow based service.
    There is no replacement provided for PZM3 service, so the IMG configuration is not possible for u201CWork and Life Eventsu201D.
    OSS ticket raised, but no solution for IMG u201CWork and Lifeu201D events.
    List of Services would be used to set up ESS:
    Sl.No     Functionality     Service/EWT/URL Name     Standard/ Customized    Type
    1     Home Page     PZM3                                       Standard                           service
    1)this service is not available
    2)SAP does not provide any replacement.
    3)PZM3 is not supported in Integrated ITS. No direct solution proposed.
    4)Given reference of few notes.
    5) A dynpro (module pool screen) based IAC needs to be created and links need to be provided on that screen. Generated HTML page is modified  to access the services via URL or by OKCODE.
    Screenshot attached below.
    2           Whou2019s Who                 PZ01                                      Standard                             Service
    1)this service Available
    2)Not Working properly.
    3) The problem may be because of the dependency with SAP Query. Either Query is missing in the new system or not having the proper authorization. Needs to be debugged and finalized.
    7     Section 80C     PZ88      Standard     EWT     Available               
    8     Section 80      PZ80     Standard     EWT     Available               
    9     Form 16                HRESSIN_F16     Standard     EWT     Available               
    10     Address                PZ02     Standard     EWT     Available     Only EWT Available.          Service needs to be created to access the EWT.
    11     Bank Information     PZ03     Standard     Service     Available     EWT Available.           Service needs to be created to access the EWT.
    12     Open Appraisals     Not Available     NA     Service          EWT Available.           Service needs to be created to access the EWT.
    13     Emergency Address     PZ05     Standard     EWT     Available     EWT Available.           Service needs to be created to access the EWT.
    14     Family/Dependents     PZ12     Standard     EWT          EWT Available.           Service needs to be created to access the EWT.
    15     Personal Data     PZ13     Standard     EWT          EWT Available.           Service needs to be created to access the EWT.
    16     Previous Employers     PZ28     Standard     EWT          Service Available          
    17     Apply Leave     WS20000081     Standard     Service     Available, but not working                                                                               No solution is proposed yet.
    18     Leave Overview     WS01000109     Standard     Service     Available, but not working               No solution is proposed yet.
    19     Leave Balance     PZ09     Standard     Service     Available, but not working               No solution is proposed yet.

    Ya ramakrishna,
    Even easier is for you to send us the mail ID of your client. We will do the work, then send them an idoc of message type INVOICE and for you a post card of course.
    Please do the needfull,
    Julius

  • TP version problem during upgrade from 4.7 sr2 to ECC6

    Hello All,
    i am doing an upgrade from 4.7 to ECC6 (ultimately i have to upgrade to EHP4). I am stuck in phase PREPARE module Initialization finished with status failed #. Below is the error i am getting. before pasting log file i tried my best to uprade TP level by upgrading the Patch level. but its not taking effact in to SAP system. If i check TP version in STMS >> system >> Check TP tool it shows me old version.
    below is the error log excerpt from file CHECKS.LOG
       #====================================================#
    Requests and information for module Initialization #
       #====================================================#
    ERROR:   The upgrade needs a patched version of R3trans which is
             build on 21.06.06 or later.
             The R3trans in your active SAP kernel is either older or
             the version could not be determined. Call it without
             any option to determine the build date.
             If the build date is too old, you have to replace it
             before you can continue the upgrade.
             Download the latest executable available from the SAP service
             market place and update it before you continue.
             Otherwise, the upgrade tools will be corrupted.
    INFO:    The version check of the disp+work in your active SAP kernel
            determined that it has a sufficient level.
             No update of disp+work is necessary.
    ERROR:   The upgrade needs a patched version of tp with version
             number 340.16.05 or higher.
             The tp in your active SAP kernel is either older or the
             version could not be determined. Call it without any option
             to determine the version.
             If the version is too old, you have to replace it before
             you can continue the upgrade.
             Download the latest executable available from the SAP service
             market place and update it before you continue.
             Otherwise, the upgrade tools will be corrupted.
    ERROR: To be able to use ASU Toolbox, your system requires
           the ST-PI software component with at least Support Package Level 8
          After the update is done, the module must be repeated!
           For more information, see the upgrade documentation
    INFO:       The upgrade strategy for the addon ABA_PLUS
                is described in note: 632429
    INFO:       The upgrade strategy for the addon APPINT
                is described in note: 632429
    INFO:       The upgrade strategy for the addon BP-R3PF
                is described in note: 632429
    INFO:       The upgrade strategy for the addon FINBASIS
                is described in note: 438521
    INFO:       The upgrade strategy for the addon LSO
                is described in note: 503468
    INFO:       The upgrade strategy for the addon LSOFE
                is described in note: 503907
    INFO:       The upgrade strategy for the addon PI
                is described in note: 700779
    INFO:       The upgrade strategy for the addon PI_BASIS
                is described in note: 555060
    INFO:       The upgrade strategy for the addon SLL_PI
                is described in note: 1306751
    INFO:       The upgrade strategy for the addon ST-A/PI
                is described in note: 69455
    INFO:       The upgrade strategy for the addon ST-PI
                is described in note: 539977
    INFO:       The upgrade strategy for the addon WP-PI
                is described in note: 632429
       #===========================================================#
    PREPARE module Initialization finished with status failed #
       #===========================================================#
    i downloaded the 47 kernel files SAPEXEDB_304-20001172.SAR and SAPEXE_304-20001172.SAR and installed the kernel file. if i check TP version from command level it shows me 340.16.62, but in SAP STMS it shows me 340.16.03. Can somebody explain what shoulkd i do?
    Can i know also if i can update SAP Kernel from 4.7 sr2 to NW7.0 without upgrading even started?
    If somebody can tell me the exact number of CDs to use to upgrade from 4.7 SR2 to ECC6 EHp4, that would be very
    nice.
    Mani

    Hi Mani,
    ERROR: The upgrade needs a patched version of R3trans which is
    build on 21.06.06 or later.
    ERROR: The upgrade needs a patched version of tp with version
    number 340.16.05 or higher.
    show that the tp and R3trans used by the source 470 system are old.
    You should download the latest tp and R3trans for kernel 470, and
    replace the old tp and R3trans with the downloaded ones under the 470 kernel directory. The 470 kernel directory is specified by parameter DIR_EXECUTABLE which is usually /usr/sap/<SID>/SYS/exe/run.
    Please note that there is also a kernel directory under /<DIR_PUT>/<SID>/SYS/exe which is for the the target system 700. Please do not replace tp and R3trans under this directory with the ones downloaded for kernel 470.
    NO, you cannot update SAP Kernel from 4.7 sr2 to NW7.0 without upgrading even started. Kernel upgrade will be done by SAPup automatically.
    With Best Regards
    Julia

Maybe you are looking for