SAP ME Tool Functions

Hi experts,
I am currently looking at tool related functions in SAP ME while I have found two questions.
1.  Is there any OOTB reporting function for tools maintained for the site?
2.  Is there any message type that can help to create message when the tool was at the expiration date?
Thanks in Advance!
Johnny

Hi Johnny,
It looks as if neither is available. So, you might need to implement a customization.
However, you can give your operators an access to Message Board or Create Message button so that they can manually create a message. And you can create your own message type for this need.
See Message Board How-To Guide.
Regards,
Sergiy

Similar Messages

  • SAP Project Tools

    Hi There
    Recently my manager requested me to download the below SAP tools from Service Marketplace. Question is, are these tools not intergrated with Solution Manager because most of them reference to ASAP which from my understanding has been phased out. IS this worth the effort to download them? If yes, then where and how can I download them.
    u2022     The Project Estimator, an internal SAP tool which enables SAP consultants to accurately gauge the required resources, the costs and the time frame of implementation. The Project Estimator takes into account the project scope and several project and risk factors.
    u2022     The Concept Check Tool, a tool enabling you to carry out quality checks on the project preparation, technical infrastructure and R/3 configuration settings. This is done mainly during the first two implementation phases of the R/3 project. In this way you are alerted to potential data volume and configuration conflicts that could lead to performance issues if not addressed.
    u2022     The Implementation Assistant: The ASAP navigation tool that accompanies you through the five phases of implementation down to the task level. It includes a description and a detailed "how-to" for each task in the Roadmap. Along with that, many tools, templates and documents are hyperlinked to the task. The Implementation Assistant contains the following elements:
    u2022     ASAP Implementation Roadmap and Project Plan. The Roadmap contains the five phases, from which you can drill down into work packages, activities and tasks. The Project Plan contains three components, a budget plan, a resource plan and a work plan
    Regards,
    Prince

    Dear Prince,
    From a tool perspective, the SAP Solution Manager implementation function is the successor to the ValueSAP tools, covering implementation aspects. This means that all major ValueSAP/AcceleratedSAP tools such as the Implementation Assistant, Q&Adb, and the Master Lists are replaced by SAP Solution Manager functionality.
    I would recommend you to kindly visit the URL :
    http://service.sap.com/solutionmanager
    There is a FAQ Section built here which addresses most of the common queries on Solution Manager.
    Hope that this addresses your query.
    Regards
    Amit

  • SAP BI Tools

    I am wandering if anyone knows anything about the BI toolsets from SAP and how it integrates with Essbase?

    >
    SoniaG wrote:
    > 1. I Names of SAP BI tools that are used for SAP FI reporting.
    > 2. Can anyone also send me material / links to the readings that could help understand creating functional specs for such reports?
    > 3. It would also tremendously help me if anyone can tell me the difference between functional specs for ABAP reports Vs. BI reports. I have worked on ABAP functional specs but not on BI reports.
    >
    1. you'll need to extract data into BW, so you'll need to set up a Data Model for FI; then depending on which kind of reports, you'll need BEx Query Designer, BEx Analyzer, Report Designer, Web Application Designer or any of the BOBJ tools (or external party tools)
    2. /
    3. I personally would be fine with ABAP specs... basically what one needs to know is which data you wish to see in what format and how that data can be found in the source system... if calculations are necessary, those have to be delivered as well
    Important is to determine the granularity of data

  • SAP BI tools for FI reports

    Hello everybody,
    I am SAP FICO consultant but new to SAP BI. I have a requirement that uses BI tools to create FI reports and I need to give functional specs. Can anyone give me general guideline to do that? More specifically, I have following questions:
    1. I Names of SAP BI tools that are used for SAP FI reporting.
    2. Can anyone also send me material / links to the readings that could help understand creating functional specs for such reports?
    3. It would also tremendously help me if anyone can tell me the difference between functional specs for ABAP reports Vs. BI reports. I have worked on ABAP functional specs but not on BI reports.
    Thank you,
    Sonia

    >
    SoniaG wrote:
    > 1. I Names of SAP BI tools that are used for SAP FI reporting.
    > 2. Can anyone also send me material / links to the readings that could help understand creating functional specs for such reports?
    > 3. It would also tremendously help me if anyone can tell me the difference between functional specs for ABAP reports Vs. BI reports. I have worked on ABAP functional specs but not on BI reports.
    >
    1. you'll need to extract data into BW, so you'll need to set up a Data Model for FI; then depending on which kind of reports, you'll need BEx Query Designer, BEx Analyzer, Report Designer, Web Application Designer or any of the BOBJ tools (or external party tools)
    2. /
    3. I personally would be fine with ABAP specs... basically what one needs to know is which data you wish to see in what format and how that data can be found in the source system... if calculations are necessary, those have to be delivered as well
    Important is to determine the granularity of data

  • How to Send Internal table to SAP Spool using Function Modules or Methods?

    Hi Experts,
    How to Send Internal table to SAP Spool using Function Modules or Methods?
    Thanks ,
    Kiran

    This is my code.
    I still get the no ABAP list data for the spool, even tho I can see it sp01?
    REPORT  Z_MAIL_PAYSLIP.
    * Declaration Part *
    tables: PERNR, PV000, T549Q, V_T514D, HRPY_RGDIR.
    infotypes: 0000, 0001, 0105, 0655.
    data: begin of ITAB occurs 0,
      MTEXT(25) type C,
      PERNR like PA0001-PERNR,
      ABKRS like PA0001-ABKRS,
      ENAME like PA0001-ENAME,
      USRID_LONG like PA0105-USRID_LONG,
    end of ITAB.
    data: W_BEGDA like HRPY_RGDIR-FPBEG,
          W_ENDDA like HRPY_RGDIR-FPEND.
    data: RETURN like BAPIRETURN1 occurs 0 with header line.
    data: P_INFO like PC407,
          P_FORM like PC408 occurs 0 with header line.
    data: P_IDX type I,
          MY_MONTH type T549Q-PABRP,
          STR_MY_MONTH(2) type C,
          MY_YEAR type T549Q-PABRJ,
          STR_MY_YEAR(4) type C,
          CRLF(2) type x value '0D0A'.
    data: W_CMONTH(10) type C.
    data: TAB_LINES type I,
          ATT_TYPE like SOODK-OBJTP.
    data: begin of P_INDEX occurs 0,
            INDEX type I,
    end of P_INDEX.
    constants: begin of F__LTYPE, "type of line
       CMD like PC408-LTYPE value '/:',  "command
       TXT like PC408-LTYPE value 's',   "textline
    end of F__LTYPE.
    constants: begin of F__CMD, "commands
      NEWPAGE like PC408-LINDA value '',
    end of F__CMD.
    data: P_LIST like ABAPLIST occurs 1 with header line.
    *data: OBJBIN like SOLISTI1 occurs 10 with header line,
    data: OBJBIN like  LVC_S_1022 occurs 10 with header line,
          DOCDATA like SODOCCHGI1,
          OBJTXT like SOLISTI1 occurs 10 with header line,
          OBJPACK like SOPCKLSTI1 occurs 1 with header line,
          RECLIST like SOMLRECI1 occurs 1 with header line,
          OBJHEAD like SOLISTI1 occurs 1 with header line,
          it_mess_att LIKE solisti1 OCCURS 0 WITH HEADER LINE,
          gd_buffer type string,
          l_no_of_bytes TYPE i,
          l_pdf_spoolid LIKE tsp01-rqident,
          l_jobname     LIKE tbtcjob-jobname.
    data: file_length  type int4,
          spool_id     type rspoid,
          line_cnt     type i.
    *-------------------------------------------------------------------* * INITIALIZATION *
    OBJBIN = ' | '.
    append OBJBIN.
    OBJPACK-HEAD_START = 1.
    data: S_ABKRS like PV000-ABKRS.
    data: S_PABRP like T549Q-PABRP.
    data: S_PABRJ like T549Q-PABRJ.
    * SELECTION SCREEN                                                  *
    selection-screen begin of block BL1.
    parameters: PAY_VAR like BAPI7004-PAYSLIP_VARIANT default 'ESS_PAYSLIPS' obligatory.
    selection-screen end of block BL1.
    START-OF-SELECTION.
      s_ABKRS = PNPXABKR.
      S_PABRP = PNPPABRP.
      s_pabrj = PNPPABRJ.
      w_begda = PN-BEGDA.
      w_endda = PN-ENDDA.
    get pernr.
    *                                 "Check active employees
      rp-provide-from-last p0000 space pn-begda  pn-endda.
      CHECK P0000-STAT2 IN PNPSTAT2.
    *                                 "Check Payslip Mail flag
      rp-provide-from-last p0655 space pn-begda  pn-endda.
      CHECK P0655-ESSONLY = 'X'.
      rp-provide-from-last p0001 space pn-begda  pn-endda.
    *                                 "Find email address
      RP-PROVIDE-FROM-LAST P0105 '0030' PN-BEGDA PN-ENDDA.
      if p0105-usrid_LONG ne ''.
        ITAB-PERNR      = P0001-PERNR.
        ITAB-ABKRS      = P0001-ABKRS.
        ITAB-ENAME      = P0001-ENAME.
        ITAB-USRID_LONG = P0105-USRID_LONG.
        append itab.
        clear itab.
      endif.
      "SY-UCOMM ='ONLI'
    END-OF-SELECTION.
    *------------------------------------------------------------------* start-of-selection.
      write : / 'Payroll Area        : ', S_ABKRS.
      write : / 'Payroll Period/Year : ',STR_MY_MONTH,'-',STR_MY_YEAR. write : / 'System Date : ', SY-DATUM.
      write : / 'System Time         : ', SY-UZEIT.
      write : / 'User Name           : ', SY-UNAME.
      write : / SY-ULINE.
      sort ITAB by PERNR.
      loop at ITAB.
        clear : P_INFO, P_FORM, P_INDEX, P_LIST, OBJBIN, DOCDATA, OBJTXT, OBJPACK, RECLIST, TAB_LINES.
        refresh : P_FORM, P_INDEX, P_LIST, OBJBIN, OBJTXT, OBJPACK, RECLIST.
    *                                                  Retrieve Payroll results sequence number for this run
        select single * from HRPY_RGDIR where PERNR eq ITAB-PERNR
                                        and FPBEG ge W_BEGDA
                                        and FPEND le W_ENDDA
                                        and SRTZA eq 'A'.
    *                                                  Produce payslip for those payroll results
        if SY-SUBRC = 0.
          call function 'GET_PAYSLIP'
            EXPORTING
              EMPLOYEE_NUMBER = ITAB-PERNR
              SEQUENCE_NUMBER = HRPY_RGDIR-SEQNR
              PAYSLIP_VARIANT = PAY_VAR
            IMPORTING
              RETURN          = RETURN
              P_INFO          = P_INFO
            TABLES
              P_FORM          = P_FORM.
          check RETURN is initial.
    *                                                 remove linetype from generated payslip
          loop at p_form.
            objbin = p_form-linda.
            append objbin.
            line_cnt = line_cnt + 1.
          endloop.
          file_length = line_cnt * 1022.
    *                                                 create spool file of paylsip
          CALL FUNCTION 'SLVC_TABLE_PS_TO_SPOOL'
            EXPORTING
              i_file_length = file_length
            IMPORTING
              e_spoolid     = spool_id
            TABLES
              it_textdata   = objbin.
          IF sy-subrc EQ 0.
            WRITE spool_id.
          ENDIF.
          DESCRIBE table objbin.
          DATA PDF LIKE TLINE OCCURS 100 WITH HEADER LINE.
          CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
            EXPORTING
              SRC_SPOOLID                    = spool_id
              NO_DIALOG                      = ' '
              DST_DEVICE                     = 'MAIL'
    *      PDF_DESTINATION                =
    *    IMPORTING
    *      PDF_BYTECOUNT                  = l_no_of_bytes
    *      PDF_SPOOLID                    = l_pdf_spoolid
    *      LIST_PAGECOUNT                 =
    *      BTC_JOBNAME                    =
    *      BTC_JOBCOUNT                   =
            TABLES
              PDF                            = pdf
            EXCEPTIONS
              ERR_NO_ABAP_SPOOLJOB           = 1
              ERR_NO_SPOOLJOB                = 2
              ERR_NO_PERMISSION              = 3
              ERR_CONV_NOT_POSSIBLE          = 4
              ERR_BAD_DESTDEVICE             = 5
              USER_CANCELLED                 = 6
              ERR_SPOOLERROR                 = 7
              ERR_TEMSEERROR                 = 8
              ERR_BTCJOB_OPEN_FAILED         = 9
              ERR_BTCJOB_SUBMIT_FAILED       = 10
              ERR_BTCJOB_CLOSE_FAILED        = 11
              OTHERS                         = 12
          IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    *Download PDF file C Drive
      CALL FUNCTION 'GUI_DOWNLOAD'
        EXPORTING
          filename = 'C:\itab_to_pdf.pdf'
          filetype = 'BIN'
        TABLES
          data_tab = pdf.
    * Transfer the 132-long strings to 255-long strings
    *  LOOP AT pdf.
    *    TRANSLATE pdf USING ' ~'.
    *    CONCATENATE gd_buffer pdf INTO gd_buffer.
    *  ENDLOOP.
    *  TRANSLATE gd_buffer USING '~ '.
    *  DO.
    *    it_mess_att = gd_buffer.
    *    APPEND it_mess_att.
    *    SHIFT gd_buffer LEFT BY 255 PLACES.
    *    IF gd_buffer IS INITIAL.
    *      EXIT.
    *    ENDIF.
    *  ENDDO.
          OBJHEAD = 'Objhead'.
          append OBJHEAD.
    * preparing email subject
          concatenate W_ENDDA(6)
                    ' Payslip-'
                    ITAB-ENAME+0(28)
                    ITAB-PERNR+4(4) ')'
                 into DOCDATA-OBJ_DESCR.
          DOCDATA-OBJ_NAME = 'Pay Slip'.
          DOCDATA-OBJ_LANGU = SY-LANGU.
          OBJTXT = 'Pay Slip.'.
          append OBJTXT.
    *prepare email lines
          OBJTXT = DOCDATA-OBJ_DESCR.
          append OBJTXT.
          OBJTXT = 'Please find enclosed your current payslip.'.
          append OBJTXT.
    * Write Attachment(Main)
    * 3 has been fixed because OBJTXT has fix three lines
          read table OBJTXT index 3.
    *    DOCDATA-DOC_SIZE = ( 3 - 1 ) * 255 + strlen( OBJTXT ).
          clear OBJPACK-TRANSF_BIN.
          OBJPACK-HEAD_START = 1.
          OBJPACK-HEAD_NUM = 0.
          OBJPACK-BODY_START = 1.
          OBJPACK-BODY_NUM = 3.
          OBJPACK-DOC_TYPE = 'RAW'.
          append OBJPACK.
    * Create Message Attachment
          ATT_TYPE = 'PDF'.
          describe table OBJBIN lines TAB_LINES.
          read table OBJBIN index TAB_LINES.
    *    OBJPACK-DOC_SIZE = ( TAB_LINES - 1 ) * 255 + strlen( OBJBIN ).
          OBJPACK-TRANSF_BIN = 'X'.
          OBJPACK-HEAD_START = 1.
          OBJPACK-HEAD_NUM = 0.
          OBJPACK-BODY_START = 1.
          OBJPACK-BODY_NUM = TAB_LINES.
          OBJPACK-DOC_TYPE = ATT_TYPE.
          OBJPACK-OBJ_NAME = 'ATTACHMENT'.
          OBJPACK-OBJ_DESCR = 'Payslip'.
          append OBJPACK.
    * Create receiver list refresh RECLIST.
          clear RECLIST.
          RECLIST-RECEIVER = itab-USRID_long.
          translate RECLIST-RECEIVER to lower case.
          RECLIST-REC_TYPE = 'U'.
          append RECLIST.
    * Send the document
    *SO_NEW_DOCUMENT_ATT_SEND_API1
          call function 'SO_DOCUMENT_SEND_API1'
            exporting
              DOCUMENT_DATA = DOCDATA
              PUT_IN_OUTBOX = 'X'
              COMMIT_WORK = 'X'
    * IMPORTING
    *   SENT_TO_ALL =
    *   NEW_OBJECT_ID =
            tables
              PACKING_LIST  = OBJPACK
              OBJECT_HEADER = OBJHEAD
              CONTENTS_BIN  = pdf
              CONTENTS_TXT  = OBJTXT
    *   CONTENTS_HEX =
    *   OBJECT_PARA =
    *   OBJECT_PARB =
              RECEIVERS = RECLIST
            exceptions
              TOO_MANY_RECEIVERS = 1
              DOCUMENT_NOT_SENT = 2
              DOCUMENT_TYPE_NOT_EXIST = 3
              OPERATION_NO_AUTHORIZATION = 4
              PARAMETER_ERROR = 5
              X_ERROR = 6
              ENQUEUE_ERROR = 7
              others = 8.
          if SY-SUBRC NE 0.
            ITAB-MTEXT = 'Message Not Sent to : '.
          else.
            ITAB-MTEXT = 'Message Sent to : '.
          endif.
    *    else.
    *      ITAB-MTEXT = 'Message Not Sent to : '.
    *    endif.
        else.
          "SY-SUBRC Not = 0
          ITAB-MTEXT = 'Payroll data not found : '.
        endif.
        "end of SY-SUBRC = 0.
        modify ITAB.
      endloop. "end loop at ITAB
      sort ITAB by MTEXT PERNR.
      loop at ITAB.
        at new MTEXT.
          uline.
          write : / ITAB-MTEXT color 4 intensified on.
          write : / 'Emp. Code' color 2 intensified on,
                 12 'Emp. Name' color 2 intensified on,
                 54 'Email ID' color 2 intensified on.
        endat.
        write : / ITAB-PERNR, 12 ITAB-ENAME, 54 ITAB-USRID_LONG.
      endloop.

  • Sap reporting tools

    Hi,
    Plz any one explain
    1. What are the Sap reporting Tools
    2. What r the diff between Forms and Reports
    plz if possible give some examples
    thanks in advance
    bye

    Hi:
    SAP Reporting Tools
    ABAP list reports (customized and R/3 delivered)
    Report Writer / Report Painter
    ABAP queries
    InfoSets
    Ad-Hoc Query Tool
    Crystal Reports (using the Business Objects' Integration Kit for SAP)
    SAP Reports means Reading and displaying data or A method of outputting data for evaluatation.
    SAP Form can be Document that either an end user interacts with or that is produced by merging a form template with data. or A form can be seen as a semifinished report, which is completed when you select the characteristics and indicators during report definition.
    Please let me know if you need more information.
    Assign points if useful.
    Regards
    Sridhar M

  • Alternatives to SAP GRC Tool to monitor compliance & automatic provisioning

    Hello Gurus,
    Not sure if this would be the right forum to ask this but surely there exist tools in the market which are viable alternatives to the SAP GRC Tool. We are a large semiconductor firm and currently manage role assignments, user provisioning and auditing manually.It is a huge cost overhead and is labor intensive.
    Looking at possible alternatives?
    SAP GRC Tool is a strong contender but I am trying to weigh in other options with it and their comparisons.
    To your minds, what would be the biggest advantage of implementing GRC versus any other third party tool? What is the distinctive edge it provides? This is also to help me build a strong business for pushing GRC to the management.
    Appreciate any thougts/ideas/suggestions, at the earliest!! Much appreciated.
    -Tan
    Edited by: Tania Nijhawan on Jul 21, 2011 2:19 AM

    Hi Tania,
    GRC is a convenient grouping of solutions that have been developed and acquired over time. There are pros and cons in every application and no one can say that SAP GRC is 100% best and un comparable with any other compliance product in the market.
    But, I can strongly say that GRC gels well with all the SAP flavours such as ECC and BI, and it is easy to implement, incorporate, and manage.
    With the introduction of GRC 10, SAP is looking at more features and easy to manage compliance solutions. I bet you can't get A to B product comparision anywhere. I rather suggest you to look at the top ten features and advantages in different products in terms of deployment, adaptability, user friendlyness etc., and opt for the right one.
    Regards,
    Raghu

  • Make Business systems visible within SAP PI Tools

    Hi!
    I defined technical system and business system as well within SLD. Now I would like to see this business system within SAP PI tools (such as Integration Builder).
    Question:
    Which actions are requiered after the definition the technical and business system in order to work with these systems in SAP PI tools? 
    Is thers some documents describing this issue?
    Thank you!

    Hi,
    The order for without party is simple, just import it, then
    1. Create configuration scenario
    2. Assign this system to your scenario
    3. Create communication channels
    4. Create Sender Agreement, Receiver Determination, Interface Determination, Receiver Agreement
    And for with party.
    1. Create Party in Integration Directory
    2. Assign business system to this party
    Now when you create your scenario
    1. Create configuration scenario
    2. Assign this party and system to your scenario
    3. Create communication channels
    4. Create Sender Agreement, Receiver Determination, Interface Determination, Receiver Agreement
    >>- Creation of Party
    First
    >>- Creation of Business component
    Second
    >>- Creation of Scenario
    Third
    >>- Assign Business system
    Fourth
    Hope now it is clarified.
    Regards
    Suraj
    Edited by: S.R.Suraj on Oct 1, 2009 4:33 AM

  • Com.sap.sdb.tools.databasemanagement.DM_Exception: Runtime environment erro

    Hi,
    using Database Studio when i click on Analyzer tab of Administration tool i get follow error:
    19/05/2009      22:12:05
    ERROR           Runtime environment error
    1,OS error: 'No such file or directory'
    Component     : UIDBM
    Detail Message: com.sap.sdb.tools.databasemanagement.DM_Exception: Runtime environment error
    1,OS error: 'No such file or directory'
         at com.sap.sdb.tools.databasemanagement.internal.DM_Session.execute(DM_Session.java:150)
         at com.sap.sdb.tools.databasemanagement.internal.commands.DM_BaseCommand.doExecute(DM_BaseCommand.java:130)
         at com.sap.sdb.tools.databasemanagement.internal.commands.DM_DatabaseCommand.doExecute(DM_DatabaseCommand.java:53)
         at com.sap.sdb.tools.databasemanagement.internal.commands.DM_BaseCommand.execute(DM_BaseCommand.java:69)
         at com.sap.sdb.tools.databasemanagement.internal.DM_AnalyzerLog.open(DM_AnalyzerLog.java:66)
         at com.sap.sdb.tools.databasemanagement.internal.DM_AnalyzerLogItems.readItems(DM_AnalyzerLogItems.java:99)
         at com.sap.sdb.tools.databasemanagement.internal.DM_AnalyzerLogItems.refresh(DM_AnalyzerLogItems.java:89)
         at com.sap.sdb.tools.ui.dbm.model.AnalyzerLogAdapter.fetchDeferredChildren(AnalyzerLogAdapter.java:82)
         at org.eclipse.ui.progress.DeferredTreeContentManager$1.run(DeferredTreeContentManager.java:207)
         at org.eclipse.core.internal.jobs.Worker.run(Worker.java:58)
    is something wrong in my configurations or Analyzer tab cant check analyzer files from a remote server?
    regards
    Clóvis

    Hi Lars,
    file_getfirst ANALYZER#/20090520 returns:
    0
         END
                    2339                2339
    keyname,mode,size,date,time,comment,filename
    ANALYZER#/20090520/DBAN.prt     UNKNOWN     1080209     20090520     220608       DB Analyzer File     DBAN.prt
    ANALYZER#/20090520/DBAN_LOGGING.csv     UNKNOWN     6670     20090520     220608       DB Analyzer File     DBAN_LOGGING.csv
    ANALYZER#/20090520/DBAN_CACHES.csv     UNKNOWN     9686     20090520     220608       DB Analyzer File     DBAN_CACHES.csv
    ANALYZER#/20090520/DBAN_FILLING.csv     UNKNOWN     7335     20090520     220608       DB Analyzer File     DBAN_FILLING.csv
    ANALYZER#/20090520/DBAN_GC.csv     UNKNOWN     5392     20090520     220608       DB Analyzer File     DBAN_GC.csv
    ANALYZER#/20090520/DBAN_TASK_IO.csv     UNKNOWN     7026     20090520     220608       DB Analyzer File     DBAN_TASK_IO.csv
    ANALYZER#/20090520/DBAN_IO.csv     UNKNOWN     9976     20090520     220608       DB Analyzer File     DBAN_IO.csv
    ANALYZER#/20090520/DBAN_TRANSACTIONS.csv     UNKNOWN     7319     20090520     220608       DB Analyzer File     DBAN_TRANSACTIONS.csv
    ANALYZER#/20090520/DBAN_TASK_ACTIVITIES.csv     UNKNOWN     9721     20090520     220608       DB Analyzer File     DBAN_TASK_ACTIVITIES.csv
    ANALYZER#/20090520/DBAN_LOAD.csv     UNKNOWN     8867     20090520     220608       DB Analyzer File     DBAN_LOAD.csv
    ANALYZER#/20090520/DBAN_SHARED_SQL.csv     UNKNOWN     9370     20090520     220608       DB Analyzer File     DBAN_SHARED_SQL.csv
    ANALYZER#/20090520/DBAN_STRATEGY_PRIMKEY.csv     UNKNOWN     5612     20090520     220608       DB Analyzer File     DBAN_STRATEGY_PRIMKEY.csv
    ANALYZER#/20090520/DBAN_STRATEGY_INDEX.csv     UNKNOWN     10043     20090520     220608       DB Analyzer File     DBAN_STRATEGY_INDEX.csv
    ANALYZER#/20090520/DBAN_STRATEGY_SCANS.csv     UNKNOWN     6193     20090520     220608       DB Analyzer File     DBAN_STRATEGY_SCANS.csv
    ANALYZER#/20090520/DBAN_BACKUP.csv     UNKNOWN     4740     20090520     220608       DB Analyzer File     DBAN_BACKUP.csv
    ANALYZER#/20090520/DBAN_TASK_STATES.csv     UNKNOWN     6088     20090520     220608       DB Analyzer File     DBAN_TASK_STATES.csv
    ANALYZER#/20090520/DBAN_OVERVIEW.csv     UNKNOWN     6759     20090520     220608       DB Analyzer File     DBAN_OVERVIEW.csv
    ANALYZER#/20090520/DBAN_REGIONS.csv     UNKNOWN     5552     20090520     220608       DB Analyzer File     DBAN_REGIONS.csv
    ANALYZER#/20090520/DBAN_RW_LOCKS.csv     UNKNOWN     5379     20090520     220608       DB Analyzer File     DBAN_RW_LOCKS.csv
    ANALYZER#/20090520/DBAN_SPINLOCKS.csv     UNKNOWN     4720     20090520     220608       DB Analyzer File     DBAN_SPINLOCKS.csv
    ANALYZER#/20090520/DBAN_IOTHREADS.csv     UNKNOWN     5073     20090520     220608       DB Analyzer File     DBAN_IOTHREADS.csv
    ANALYZER#/20090520/DBAN_CPU_UTILIZATION.csv     UNKNOWN     8835     20090520     220608       DB Analyzer File     DBAN_CPU_UTILIZATION.csv
    file_getfirst ANALYZER#/20090520/DBAN.prt returns:
    1
    CONTINUE
                 1080209               15917
    ===== #0          at 2009-05-20 09:05:30
    *  I  Number of CPU's 4, processor type: x86_64
          CON: NUM_PHYSICAL_CPU > 1
          VAL: 4                > 1
    *  I  Physical memory 3943 MB, virtual memory 6000 MB, memory allocated from instance: 3246 MB
          CON: NUM_PHYSICAL_CPU > 1
          VAL: 4                > 1
    *  I  Operating system: Linux 2.6.9-42.ELsmp #1 SMP Wed Jul 12 23:32:02 EDT 2006
          CON: 1
          VAL: 1
    *  I  Kernel version: Kernel    7.6.03   Build 007-123-157-515
          CON: 1
          VAL: 1
    *  I  Instance SUNDOWN (dcpr0136n) is up since 2009-05-18 21:45:40
          CON: 1
          VAL: 1
    *  I  Configuration: number of CPUs (MAXCPU): 4, max user tasks: 500
          CON: 1
          VAL: 1
    *  I  Size of data cache 2045.56 MB
          CON: DATA_CACHE_SIZE > 1
          VAL: 2094656         > 1
    *  I  Number of data volumes: 5
          CON: 1
          VAL: 1
    *  I  PACKET_SIZE is 131072
          CON: ENV_PACKET_SIZE
          VAL: 131072         
    *  I  SQL commands executed: 12921239
          CON: SQL_Cmds > 0
          VAL: 12921239 > 0
    ===== #1          at 2009-05-20 09:06:20
    *  I  SQL commands executed: 6346, avg. 97 per second
          CON: PureSQL_Cmds > INTERVAL * 5
          VAL: 6346         > 68       * 5
    * W3  69 command cache cleanups! 6 commands reloaded, 40960 execution plans and 188 commands deleted
          CON: CmdCacheCleanups > INTERVAL
          VAL: 69               > 68      
    * W3  Task 120 (appl. 0) is waiting for lock 'row_exclusive' on table TITULOPAGAMENTO since 68s, locked 'tab_share' from task 429 (appl. 0, state Vwait)
          CON: LOCK_REQUESTOR_TID["             2898305"] == last(LOCK_REQUESTOR_TID["             2898305"]) && LOCK_WAITER_TRANS["             2898305"] == last(LOCK_WAITER_TRANS["             2898305"])
          VAL: 120                                        == 120                                              && 2898305                                   == 2898305                                        
    * W3  Task 429 (appl. 0) is waiting for lock 'tab_share' on table TITULOCOBRANCA since 68s, locked 'row_exclusive' from task 348 (appl. 0, state Vwait)
          CON: LOCK_REQUESTOR_TID["             2880370"] == last(LOCK_REQUESTOR_TID["             2880370"]) && LOCK_WAITER_TRANS["             2880370"] == last(LOCK_WAITER_TRANS["             2880370"])
          VAL: 429                                        == 429                                              && 2880370                                   == 2880370                                        
    * W3  Task 361 (appl. 0) is waiting for lock 'row_exclusive' on table TITULOPAGAMENTO since 68s, locked 'tab_share' from task 429 (appl. 0, state Vwait)
          CON: LOCK_REQUESTOR_TID["             2921405"] == last(LOCK_REQUESTOR_TID["             2921405"]) && LOCK_WAITER_TRANS["             2921405"] == last(LOCK_WAITER_TRANS["             2921405"])
          VAL: 361                                        == 361                                              && 2921405                                   == 2921405                                        
    * W3  Task 313 (appl. 0) is waiting for lock 'row_exclusive' on table TITULOPAGAMENTO since 68s, locked 'tab_share' from task 429 (appl. 0, state Vwait)
          CON: LOCK_REQUESTOR_TID["             2913185"] == last(LOCK_REQUESTOR_TID["             2913185"]) && LOCK_WAITER_TRANS["             2913185"] == last(LOCK_WAITER_TRANS["             2913185"])
          VAL: 313                                        == 313                                              && 2913185                                   == 2913185                                        
    * W3  Task 135 (appl. 0) is waiting for lock 'row_exclusive' on table TITULOPAGAMENTO since 68s, locked 'tab_share' from task 429 (appl. 0, state Vwait)
          CON: LOCK_REQUESTOR_TID["             2918713"] == last(LOCK_REQUESTOR_TID["             2918713"]) && LOCK_WAITER_TRANS["             2918713"] == last(LOCK_WAITER_TRANS["             2918713"])
          VAL: 135                                        == 135                                              && 2918713                                   == 2918713                                        
    * W3  Task 563 (appl. 0) is waiting for lock 'row_exclusive' on table TITULOPAGAMENTO since 68s, locked 'tab_share' from task 429 (appl. 0, state Vwait)
          CON: LOCK_REQUESTOR_TID["             2911020"] == last(LOCK_REQUESTOR_TID["             2911020"]) && LOCK_WAITER_TRANS["             2911020"] == last(LOCK_WAITER_TRANS["             2911020"])
          VAL: 563                                        == 563                                              && 2911020                                   == 2911020                                        

  • Red EWA alert in SAP Solution Manager Functionality

    Hi Experts,
    We found a red alert in Service Plan and General Infrastructure in EWA under SAP Solution Manager Functionality for Solman system. The error is as follows.
    Service Data Download Center
    SDCCN settings are not maintained -
    Service Plan
    RFC connection errors to SAP backend system
    General Infrastructure
    Not all services in ICF required for Solution Documentation Assistant are active
    RFC connection errors to SAP backend system
    Number range check inconsistent
    RNOTIFUPDATE01 is currently not scheduled Hourly
    & settings are inconsistent
    Could anyone provide a solution to rectify these red alerts.
    Thanks & Regards,
    Sundara.

    SDCCN:
    Go to tx SDCCN - Goto - Settings - Task-specific
    Make sure all settings are correct.
    Service Plan:
    Check your RFC's to satellite systems in SMSY.
    General Infrastructure:
    Go to transaction SICF and activate all nescesarry services.
    Hope this helps!
    Regards,
    David

  • How to install the SAP Netweaver tools

    Dear Friends,
    I want to develop applications thro SAP Netweaver Tools.  Can any one guide me thro installation process, since I am new to Netweaver.  Where do i get the software.  Pls help.
    Regards,
    Shankaran J
    +91 98404 61721

    HI
    Hi,
    You can download NWDS from this link
    https://www.sdn.sap.com/irj/sdn?rid=/library/uuid/cfc19866-0401-0010-35b2-dc8158247fb6
    Refer the thread for more information
    Re: Where "SAP Netweaver Developer Studio 2.0"?
    For Development refer these links
    NETWEAVER
    http://help.sap.com/saphelp_nw04/helpdata/en/30/c4461ff69d5a438f1286e344b545fa/frameset.htm
    PORTAL
    http://help.sap.com/saphelp_nw04/helpdata/en/a9/76bd3b57743b09e10000000a11402f/frameset.htm
    DEVELOPMENT MANUAL
    http://help.sap.com/saphelp_nw04/helpdata/en/6a/50c0b26e2543a2984dcd518e26dc65/frameset.htm

  • Urgently Need SAP SUS Techno Functional Consultant at AZ

    Hi Partners,
    Please let me know if you have suitable Consultants for SAP SUS Techno Functional requirement.
    Please Send your resumes to me.
    Title: SAP SUS Techno Functional Consultant.
    Location: PHX, AZ
    Duration: 6 +months
    Job Description for SAP SUS:
    Ø Must have Techno-functional Experience in SAP SUS and ROS.
    Ø Ability to Design, configure, develop custom requirements and test SUS with ECC and/or SRM Integration.
    Ø Experience in Vendor On-boarding, Collaboration and Vendor Integration processes.
    Ø Knowledgeable in SAP SRM, PI/XI.
    Ø Knowledgeable in ABAP, BSP.
    Ø Collaboratively within the team environment
    Ø Interact daily with the client, project team, and senior management staff
    Any SRM cons with spl on SUS will be able to do the job
    Thanks
    Srikanth kumar.V

    Hi,
    Good morning and greetings,
    Wishing you a very Happy New Year 2007
    Considering your experience, it is better to get into SAP as the market is growing a lot...eventhough you have functional experience, in order to materialize with Functional Consulting, you will have to undergo classes...SAP themselves conduct classes using various business partners and you can join them to understand the configuration bit...For pursuing your goal, first step would be to join a class on understanding the indepth knowledge on SAP...Since the market requires lot of consultant, but still the requirement is majorly for expereinced consultants and for achieving that you will have to work hard to gain that experience in SAP...At the time of doing the course please ensure that you keep continuing with your existing job.
    Hope this meets your requirement.
    Please reward points if found useful
    Thanking you
    With kindest regards
    Ramesh Padmanabhan

  • SAP ABAP Techno Functional Consultant

    Hi all,
    What kind of profile is this? I'm talking about 'SAP ABAP Techno Functional Consultant'. I'm thinking in a multimodule consultant with strong ABAP skills. Am I right?
    Thanks in advance.
    Regards,
    Eduardo

    Thanks
    Its clear that there are consultants with a shameful behavior, overselling themselves. But, in the other side that Jeyakanthan
    tell us (an ABAPer with strong functional skills). If you are a functional with 10/15 years of experience, with 2 or more modules and you have ABAP skills (not all, of course, you develop your own enhancements/BADI/BTE, your ALV lists, perhaps you have problems with smartforms -ie: you are slow in the development of forms-, a little bit of ABAP OO, you are able to do traces and check bottlenecks...) ¿How do you sell yourself? ¿How do you improve your possibilities in the market?
    Regards,
    Eduardo

  • SAP Database tools

    Hello,
    1. These SAP Database tools (SAP DBA tool and BR tool ) are database independent or dependent?
    Thanks in advance
    regards,
    sanjeeva

    Hello,
    They are specific to the Oracle database.
    Regards,
    Olivier

  • SAP HANA Tools not installed

    Hello,
    I followed all the steps and found a workaround to set the local platform.
    The problem is that I was never able to install the runtime "SAP HANA Tools" from "Install New Software".
    Kind regards,
    Patrice

    Hi Patrice,
    The presentation is a bit confusing for me, but if you have the yellowish icons in new server wizard (Servers View > New Server), you are fine and you can continue.
    basically after setting up your development environment, you have to be able to do this: https://help.hana.ondemand.com/help/frameset.htm?7613f000711e1014839a8273b0e91070.html
    best regards,
    Dimitar

Maybe you are looking for

  • Diffrence in incomming order qty and billing qty in cube 0sd_c03 & 0sd_c01

    Dear All. i have uploaded 2 cubes 0SD_C01 & 0SD_C01 from our R/3 data, SAP recommed for 0SD_C03 for sales analysis and their best practice is also based on 0SD_C03  but it is very strange the values of both the cubes are not the same when i run the r

  • WebService to File Scenario

    Hi All, I am doing WebService to File Scenario. Here I am facing problem when I  am sending request . It is saying " http error.Could not post file" I have given the url as    http://<server>.domain:<port>/XISOAPAdapter/MessageServlet?channel=:BS_SOA

  • Jre Error

    Hi guys, im getting this error when i run my program: An unexpected error has been detected by Java Runtime Environment: # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x04e8c964, pid=860, tid=320 # Java VM: Java HotSpot(TM) Client VM (10.0-b23 mixe

  • Is there a known bug about some sites displaying without CSS?

    A few websites display with the effect of CSS being turned off.

  • Sales document is deleted still billing plans are in billing due list

    Hello, Sales document is deleted which have billing plans, But still billing plans are showing in billing due list for billing. Please let me know how to delete the entries in billing due list. Thanks and Regards Vikram.M