SL Reporting for individual Monitoring objects (CPH)

Hi SLR-experts,
I would like to set up the SL Reporting for individual Monitoring objects (CPH).
I already done following:
Tcode RZ23N: Setting up a collective and reorganization schema
Tcode RZ23N: Assign a collection and reorganization schema
Unfortunately I cannot choose these objects in DSWP Setup and of course I cannot see any data in SL Report.
Can some one help with this problem?
Thank you
regards
Thom

in 2010 also it is not working, I see that your post is in 2008. let me knowif you found any resolution for this issue

Similar Messages

  • View Reports for individual Collections

    Hello,
    Is there a way to view Reports for individual Collections?  When I review my Usage Reports or look at Reports within the PSM I only get a break down of total user actions per day for the whole site.  I don't see a way to view data for just a single Collection.  It would be extremely helpful to me and my faculty if we could see reports or stats for specific Collections.  For example, if I could see total subscriptions and downloads for HIST1010.  It'd be even better if we could view totals for whole months rather than each day of the month but at this point any data about a whole individual Collection would be great.  Any help in viewing the data in this way is really appreciated.
    Thanks!
    Nikki
    Multimedia Tech
    Roane State Community College

    Hi Syd,
    Thanks so much for your prompt reply.  I was able to use your directions to pull stats for the last few weeks for the faculty member who requested this info. 
    My dream (if Apple is reading) would be to view monthly stats and have that information attached to each course so faculty members could view and sort that information on their own.  This would be especially helpful because as our site continues to grow and I continue to encourage faculty to manage their own content, the ability to access the data on their Collections would provide great feedback on how their ocntent is being used.  Being able to see how frequently the content they're taken the time to make is being used could be empowering.
    Anyway, thanks again for assisting with how to access the data that is currently available.
    Best,
    Nikki

  • ALV report for individual fields (urgent...........)

    Hi all,
    using this ZUS_SDN_THREE_ALV_GRIDS program structure i have generated the all the fields from table.
    could you please guide me how to generate the ALV report for splecific fileds from  individual tables.
    if i click in click on grid1 (that is sales header details) we need populate the item details in grid2 and paralally customer details in grid3.
    please guide me how to resolve the issuee..
    thanks in advance
    Srinivas...

    Hi,
    I have done an example, like on 1st grid it displays header data (EKKO) and when you double click on any record, for that PO you will get item details (EKPO) on 2nd grid,
    In the similar way, you can add one more grid and populate it with your own data simultaneously along with 2nd grid.
    *& Report  ZOOABAP1_SOW
    report  zabap2.
    *                     TABLES
    tables:ekko.
    *                     DATA DECLARATIONS
    data: grid1 type ref to cl_gui_alv_grid,
          grid2 type ref to cl_gui_alv_grid,
          container1 type ref to cl_gui_custom_container,
          container2 type ref to cl_gui_custom_container,
          flag.
    *                     INTERNAL TABLES
    data: it_ekko type table of ekko.
    data: wa_ekko like line of it_ekko.
    data: it_ekpo type table of ekpo.
    data: it_fcat1 type lvc_t_fcat,
          wa_fcat1 type lvc_s_fcat,
          it_fcat2 type lvc_t_fcat,
          wa_fcat2 type lvc_s_fcat,
          wa_layout1 type lvc_s_layo,
          wa_layout2 type lvc_s_layo,
          wa_variant type disvariant.
    *                     SELECTION-SCREEN
    selection-screen begin of block b with frame title text-s01.
    select-options: s_ebeln for ekko-ebeln.
    selection-screen end of block b.
    *       CLASS lcl1 DEFINITION
    class lcl1 definition.
      public section.
        methods:
          handler_dbl_clk for event double_click
                                      of cl_gui_alv_grid
                                         importing e_row.
    endclass.                    "lcl1 DEFINITION
    *       CLASS lcl1 IMPLEMENTATION
    class lcl1 implementation.
      method handler_dbl_clk.
        read table it_ekko into wa_ekko index e_row-index.
        if sy-subrc = 0.
          perform get_ekpo.
        endif.
      endmethod.                    "handler_dbl_clk
    endclass.                    "lcl1 IMPLEMENTATION
    *                     START_OF_SELECTION
    start-of-selection.
    * Get PO header data
      perform get_ekko.
    * screen for container
      call screen 100.
    *&      Module  STATUS_0100  OUTPUT
    *       text
    module status_0100 output.
      set pf-status 'PFS'.
      set titlebar 'TIT'.
      data: obj type ref to lcl1.
      if flag is initial.
        create object container1
          exporting
            container_name = 'CONT1'.
        create object container2
          exporting
            container_name = 'CONT2'.
        create object grid1
          exporting
            i_parent = container1.
        create object grid2
          exporting
            i_parent = container2.
        create object obj.
        set handler obj->handler_dbl_clk for grid1.
        perform build_fcat.
        perform build_layout.
        call method grid1->set_table_for_first_display
           exporting
    *        i_buffer_active               =
    *        i_bypassing_buffer            =
    *        i_consistency_check           =
    *          i_structure_name              = 'EKKO'
    *        is_variant                    = wa_variant
            i_save                        = 'X'
    *        i_default                     = 'X'
            is_layout                     = wa_layout1
    *        is_print                      =
    *        it_special_groups             =
    *        it_toolbar_excluding          =
    *        it_hyperlink                  =
    *        it_alv_graphics               =
    *        it_except_qinfo               =
    *        ir_salv_adapter               =
              changing
                it_outtab                     = it_ekko
                it_fieldcatalog               = it_fcat1
    *        it_sort                       =
    *        it_filter                     =
    *      EXCEPTIONS
    *        invalid_parameter_combination = 1
    *        program_error                 = 2
    *        too_many_lines                = 3
    *        others                        = 4
        if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
        flag = 'X'.
      endif.
    endmodule.                 " STATUS_0100  OUTPUT
    *&      Form  get_ekko
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form get_ekko .
      select ebeln bsart lifnr
             from ekko
             into corresponding fields of table it_ekko
             where ebeln in s_ebeln.
    endform.                    " get_ekko
    *&      Form  GET_EKPO
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form get_ekpo .
      select ebeln ebelp menge meins peinh from ekpo
       into corresponding fields of table it_ekpo
       where ebeln = wa_ekko-ebeln.
      if not it_ekpo[] is initial.
        call method grid2->set_table_for_first_display
      exporting
    *    i_buffer_active               =
    *    i_bypassing_buffer            =
    *    i_consistency_check           =
    *    i_structure_name              =
    *    is_variant                    =
    *    i_save                        =
    *    i_default                     = 'X'
        is_layout                     = wa_layout2
    *    is_print                      =
    *    it_special_groups             =
    *    it_toolbar_excluding          =
    *    it_hyperlink                  =
    *    it_alv_graphics               =
    *    it_except_qinfo               =
    *    ir_salv_adapter               =
          changing
            it_outtab                     = it_ekpo
            it_fieldcatalog               = it_fcat2
    *    it_sort                       =
    *    it_filter                     =
    *  EXCEPTIONS
    *    invalid_parameter_combination = 1
    *    program_error                 = 2
    *    too_many_lines                = 3
    *    others                        = 4
        if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
      endif.
    endform.                    " GET_EKPO
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    module user_command_0100 input.
      case sy-ucomm.
        when 'BACK' or 'EXIT' or 'CANC'.
          call method container1->free.
          call method container2->free.
          leave to screen 0.
      endcase.
    endmodule.                 " USER_COMMAND_0100  INPUT
    *&      Form  build_fcat
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form build_fcat .
    * fieldcatalog for EKKO table
      wa_fcat1-col_pos = '1'.
      wa_fcat1-fieldname = 'EBELN'.
      wa_fcat1-tabname = 'EKKO'.
      wa_fcat1-coltext = 'PO No.'.
      append wa_fcat1 to it_fcat1.
      clear wa_fcat1.
      wa_fcat1-col_pos = '2'.
      wa_fcat1-fieldname = 'BSART'.
      wa_fcat1-tabname = 'EKKO'.
      wa_fcat1-coltext = 'PO Type'.
      append wa_fcat1 to it_fcat1.
      clear wa_fcat1.
      wa_fcat1-col_pos = '3'.
      wa_fcat1-fieldname = 'LIFNR'.
      wa_fcat1-tabname = 'EKKO'.
      wa_fcat1-coltext = 'Vendor No.'.
      append wa_fcat1 to it_fcat1.
      clear wa_fcat1.
    * fieldcatalog for EKPO table
      wa_fcat2-col_pos = '1'.
      wa_fcat2-fieldname = 'EBELN'.
      wa_fcat2-tabname = 'EKPO'.
      wa_fcat2-coltext = 'PO No.'.
      append wa_fcat2 to it_fcat2.
      clear wa_fcat2.
      wa_fcat2-col_pos = '2'.
      wa_fcat2-fieldname = 'EBELP'.
      wa_fcat2-tabname = 'EKPO'.
      wa_fcat2-coltext = 'PO Item'.
      append wa_fcat2 to it_fcat2.
      clear wa_fcat2.
      wa_fcat2-col_pos = '3'.
      wa_fcat2-fieldname = 'MENGE'.
      wa_fcat2-tabname = 'EKPO'.
      wa_fcat2-coltext = 'Quantity'.
      append wa_fcat2 to it_fcat2.
      clear wa_fcat2.
      wa_fcat2-col_pos = '4'.
      wa_fcat2-fieldname = 'MEINS'.
      wa_fcat2-tabname = 'EKPO'.
      wa_fcat2-coltext = 'UOM'.
      append wa_fcat2 to it_fcat2.
      clear wa_fcat2.
      wa_fcat2-col_pos = '5'.
      wa_fcat2-fieldname = 'PEINH'.
      wa_fcat2-tabname = 'EKPO'.
      wa_fcat2-coltext = 'Price Unit'.
      append wa_fcat2 to it_fcat2.
      clear wa_fcat2.
    endform.                    " build_fcat
    *&      Form  build_layout
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form build_layout .
      clear wa_layout1.
      wa_layout1-grid_title = 'Header data'.
    *  wa_layout-sel_mode = 'A'.             "allow to select multiple lines
      clear wa_layout2.
      wa_layout2-grid_title = 'Item Data'.
    endform.                    " build_layout
    If you have any poblems while doing this, post it.
    Do reward points for all helpful answers
    Regards,
    Sowjanya

  • How to restrict permissions for individual business object fields?

    I know that ACE can restrict permissions (read/write/delete) for entire business objects (Business Partner, Opportunity, Activity...).
    Is it possible to assign security permissions (read/write) to individual attributes of business objects? For example, I want that some users could not view phone number for Business Partner.

    We had similar requirement for transaction but that was more to do edit or non-edit authorization at field level, but i feel this will work for your scenario too.
    First there is no standard tool available to do this, so, you'll have to create your own authorization objects in transaction SU21 (Basis will be able to do that) lets say ZAUTHOBJ, and then assign permitted activities for this object i.e. create/generate, change, display. Then you this authorization object in UI coding to check the permission level and give access at field level. Don't forget to assign this object to your PFCG role.
    I'm not technical so can't tell you where to put the code on UI (may be some prepare output method), your tech team will be able to help you.
    Also, its good idea to have seperate auth object for each field you want to restrict because of scalability in future.
    Hope this gives you some idea...
    Regards,
    Vikas

  • Report for transaction - Maintain Object - Roles - user Id ( Authorisation)

    Hi
    I want to generate a report for the following:
    for a transaction
    for a check/ maintain object name ( Ist column)
    what are the roles ( iind column)
    and
    what are the user id for each roles.. (iiird column)
    and
    start up (yes / No) (ivth column)
    Please advise.
    Since, I need to do this report generation for more than 30 transactions, any immediate reply would be of great help.
    Thanks in advance.
    Partha

    Hi
    Try SUIM T-code and see if any of the report works
    Thanks

  • Cost Element Report for all cost objects

    Hello,
    Is there any standard SAP report where it can list down all cost elements, and their line item/total postings done to various CO Objects in one shot.
    We have CE/CCTR, CE/IO, etc, but if we can have one report which can list all cost elements and postings done via it to different cost objects - cost centers, internal orders, WBS, etc, might be very handy to us.
    Thanks
    Balla

    Hi Balla,
    Please use S_SL0_21000007 for your requirement.
    It gives cost element postings to different cost objects.
    regards,
    makrand

  • Stock Report for Individual Stock Segments

    Is there a report similar to MCBZ, but very specifically showing individual stock segments like sales order stock?

    Hi try this
    MMBE
    MB5B
    MB52
    Regards
    Kailas Ugale

  • How to find Area Report for individual module

    I have created .v file and instantiated several modules.After simulating,how can i get the individual module report 

    Hello 
    Open the synthesized/Implemented design and use the following TCL command:
    report_utilization -cells <list_of_cells>
    --Syed
    Please mark the post as an answer "Accept as solution" in case it helped resolve your query.
    Give kudos in case a post in case it guided to the solution.

  • Report for CCMS Monitoring

    Hi experts,
    Can anyone tell me how to configure reports after the CCMS Monitoring?
    Thanks.

    Hi,
    can u look these links
    http://it.toolbox.com/wiki/index.php/Setup_Sapconnect_Email_for_RZ20
    http://help.sap.com/saphelp_nw70/helpdata/en/e5/5d1741b393f26fe10000000a1550b0/content.htm
    regards,
    Srinu

  • Alert Text    : 7,100,113 open change pntrs found for this monitor object -

    Hi,
    I got this alert message..
    ALERT for MTE: RP1 \ SAP_CCMS_sapprdr3db_RP1_00 \ ALE/EDI RP1(300) Log.sys RP1CLNT300 \ change point. Z_XI_OUT_OTHER_IDOCS \ open changepointers
    Please any one can suggest me to solve this...
    Thanks

    hi krishna,
    u r right. there is no error  in sending the mail and the file but the problem is that file created and converted to pdf is not done properly.jst verify whether the file is created properly or not .thats the only problem that can occurs else ur program is absolutely right.

  • Report limits for individual tests

    Hi All
    I have a system under test which I interrogate (via RS232) for embedded hardware and firmware information. The reported response has to be added to the final test report along with all the other specified test cases.
    e.g.
    Operator:  xyz
    Date:  xyz
    UUT Type: xyz
    Serial Number: xyz
    PTS 2.1 Embedded H/W (Processor)  12345 version A  12345 version A
    PTS 2.1 Embedded H/W (Amplifier)    23456 version B  23456 version B
    PTS 2.1 Embedded H/W (Filter)         34567 version c  34567 version c
    PTS 2.1 Embedded H/W (Pre-Amp)   45678 version D  45678 version D
    PTS 2.2 12V OFF Current                  2.1mA  5  LT
    PTS 2.2 12V ON Current                   250mA  300  LT
    etc
    etc
    The only way I can think of to get the information into the main body of the report is to perform a 'String Value' test on it. However I then get the limits displayed in the report as well making the final report look messy. I do need all the limits in the report for the usual test cases e.g. voltages, currents etc so I cannot turn off limit reporting in the configuration  report options.
    Is there a way to turn OFF the limits reporting for individual test cases?
    Regards
    IanR

    What version of TestStand are you using?
    You could change the step to an 'Action' step and put the RS232 string in the report text for the step?  It depends on how your report options are setup in your environment.  Where I work, we do not put any Action steps in the report just Pass Fail results.  Hence you would have to change the Status Expression for your Action step to something other than "Done"....
    Otherwise in TestStand 4.0, you can click on the Property Browser view under the Properties Tab.  Right Click on the Limits container and select 'Advanced -> Edit Flags'
    Within that box there is an option 'Is Limit' checked, perhaps by unchecking this option it will not be put in the report.  Although I would NOT do this, because it is difficult for anyone taking over your code ( unless you document you changed this flag ) to see that it is unchecked.
    Thanks,
    Paul Holzrichter

  • Standard stock report for Stock Commitments

    Hi gurus,
    Is there any standard report available to see the  Stock  like Reserved qty,stock transfer,scheduled for delivery against each batch in a same transaction like MMBE.
    In MMBE by selecting the Read Stock Commitments indicator we can get.
    the constrain is here we can able to see against only one material.
    if i goto MB52 i am not getting the above said stock type.
    Expecting Your Valuable Suggestions!
    Regards,
    D.K.Vijaya Bhaskar

    MMBE can be used as a report for individual material & MB5B is very useful Transaction Code as stock report for multiple material. It requires to be explored more & more, so that most of the stock report as per requirement is avialble.
    Regards,
    Rajesh Banka
    Reward points if helpful.

  • Colour profiles within PS are off for one monitor only?

    Hi guys,
    I'm having a very strange issue with colour management in Photoshop CS2 currently.
    Photoshop seems to be calibrating all documents in a strange way on only *one* monitor. If I drag the file across to the other monitor the colour is completely different.
    Of course it sounds like my monitors being off, however when dragging the file across monitors Photoshop slowly updates the colours for the next monitor. You can see it display the wrong colour at first, then correct it (hopefully that makes sense).
    Another symptom of it is when I go to 'save for web'. Here, the colours revert to what I believe are correct.
    b It's worth noting that this has only started to happen since some Windows updates. One being an option update from Dell for my monitor - I can't seem to find any information about it though!
    My tester that I've been using is a plain white to black gradient. What I'm seeing is a lot of cyan in the middle of the gradient. I've saved off an example:
    http://2dforever.com/photoshop.png
    As you can see, all the greys are very green, but if you look at the gradient tool in the toolbar itself, the grey appears fine.
    I'm unsure how I can adjust the colour profile from Photoshop for one monitor - am I missing something really obvious here?
    Just to note: I'm on Win Xp SP2, Photoshop CS2, and I've cleared the preferences.

    Since you only mention Photoshop as having a problem, this is almost
    certainly, as you suspect, a monitor profile config problem.
    Color profiles for individual monitors are configured in
    Start>Settings>Control Panel>Display>Settings>(Advanced Button)>Color
    Management.
    In Settings, click on the monitor whose profile you want to verify before
    clicking on the "Advanced..." button. I would start by adding and
    defaulting the profile for the monitor that is causing problems.
    The Microsoft XP color control panel applet makes setup easier, though it
    is not really necessary. If the link below fails, google for keywords
    Microsoft XP color control panel applet.
    http://www.microsoft.com/downloads/details.aspx?FamilyID=1e33dca0-7721-43ca-9174-7f8d429fb b9e&displaylang=en

  • Crystal Reports for Eclipse vs. Crystal Reports Developer

    We are developing a Java web application for internal use.  Since we have some people at the company who are familiar with Crystal Reports, we'd like to have them write reports that we can display through our application.  Crystal Reports Server seems like overkill for this project, but the <a href="http://devlibrary.businessobjects.com/BusinessObjectsXIR2/en/devsuite.htm#en/JRC_SDK/">JRC</a> sounded like a good fit.
    I have been evaluating <a href="http://www.businessobjects.com/products/reporting/crystalreports/developer/default.asp">Crystal Reports Developer</a> and trying out the <a href="http://support.businessobjects.com/communityCS/FilesAndUpdates/crxi_r2_jrc_web_samples.zip.asp">JRC samples</a>.  The samples don't use the tag library.  Instead, they show how to set session variables and redirect to a viewer JSP which contains a bunch of Java code to use the CrystalReportViewer.
    The samples are so much more complex than the code created by Crystal Reports for Eclipse, which simply uses the tag library:
    <%@ taglib uri="/crystal-tags-reportviewer.tld" prefix="crviewer" %>
    <crviewer:viewer reportSourceType="reportingComponent" viewerName="myreport-viewer" reportSourceVar="myreport" isOwnPage="true">
    <crviewer:report reportName="myreport.rpt" />
    </crviewer:viewer>
    I assume that I should be able to use the same tag library approach without using Crystal Reports for Eclipse, but I haven't seen any tutorials on it.  I'm trying to understand whether I should purchase Crystal Reports for Eclipse instead of Crystal Reports Developer.
    This is the difference, as I understand it:
    Crystal Reports Developer gives you the stand-alone Crystal Reports Designer and the right to run the JRC on an internal server.  It costs <a href="http://store.businessobjects.com/store/bobjects/DisplayProductDetailsPage/productID.40434600">$595</a>.
    Crystal Reports for Eclipse Standard provides a free report designer built into Eclipse.  It also includes the JRC for use on an internal server.
    Crystal Reports for Eclipse Professional provides "a more powerful runtime engine" with the right to run it on one internal server.  It costs <a href="http://store.businessobjects.com/store/bobjects/DisplayProductDetailsPage/productID.52068100">$495</a>.  Is this the same JRC provided with Crystal Reports Developer?
    If the "powerful" JRC is the same as Crystal Reports Developer's JRC, could I install Crystal Reports for Eclipse Standard to take advantage of the Eclipse integration and the built-in designer, but use the more powerful JRC from Crystal Reports Developer, which would also give me the stand-alone designer?

    <p>Hi there,</p><p>     If you are planning on deploying a JRC application then you should definitely be using Crystal Reports for Eclipse for your runtime engine. It is the latest version of the JRC and includes many updates not available in Crystal Reports Developer.</p><p>As for "power" the JRC included in CR Developer is on par with the JRC available in the Basic edition of Crystal Reports for Eclipse. The Professional edition of Crystal Reports for Eclipse provides the most powerful version of the JRC available.</p><p>With the release of Crystal Reports for Eclipse, Business Objects is setting the groundwork for separating Developer needs from the Report Author needs.</p><p>A professional report author will require a professional report design tool. For these users we are recommending that they purchase Crystal Reports Professional.</p><p>The developer, on the other hand, generally needs the SDKs and a toolkit to assist with building applications. We believe that these should be available at no cost to the developer, only charging when the application is deployed (in this case a CR4E Pro license). This is different from the current model with Crystal Reports Developer where we have combined a professional report designer plus the required runtime.</p><p>So, to summarize, definitely use Crystal Reports for Eclipse for your application runtime and have your report authors puchase Crystal Reports Professional. If you need a more powerful engine, access to technical support or plan to deploy on multiple servers then I would recommend purchasing the Crystal Reports for Eclipse Professional license for your development purposes.</p><p>As for some tutorials on creating viewer pages, the integration in Eclipse provides a very simple way of accomplishing this. I would suggest reading the section titled "<strong>Creating a New Viewer Page</strong>" in our Getting Started Guide found at the following URL:</p><p><a href="/node/320"><strong> http://diamond.businessobjects.com/node/320</strong></a></p><p>Let me know if you have some follow-up questions. </p><p>Regards,<br />Sean Johnson (CR4E Product Manager) <br /><strong><br /><a href="http://www.eclipseplugincentral.com/Web_Links-index-req-ratelink-lid-639.html">Rate this plugin @ Eclipse Plugin Central</a></strong>           </p>

  • Custom Monitoring Objects in BPMon

    Dear Experts,
    As we know that there are some modules/submodules for which there are no SAP Std Monitoring Objects available in BPMon like FSCM, Asset Mgmt, Dispute Mgmt, HCM, PS, etc. so we need to go for custom monitoring objects. Would like to request you all to share your experiences in same subject.
    Let me take one simple example, may not be very relevant but just to understand the concept for e.g. whenever Cost Center gets changed in Asset Master, an alert is required to be triggered. Is it possible to cater this requirement through creating custom monitoring object?
    Please advice.
    Thanks.
    SM

    Hi Malia
    To fulfill customer's requirement, sometime I created custom monitors.
    The monitors are sometime for checking transaction document and sometime for master data like your case.
    Basically if you are able to identify the required data with some logic,  you can enable the requirement by
    using one of the following way.
    1) Table Entry Counter :
         Positive points. No coding required. Very easy to use.
                                  By using this, you can access single table (standard/custom) or 1 data base view.
         Negative point.  Only simple query is possible. If you need to access several tables or need some logic,
                                   you need to go to custom development.
        Please also check this blog.
        http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/20140
    2a) Customer exit  : Not using OO framework.
          Please also check this blog.
          http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/17437
    2b) Customer exit  : Using OO framework.           
          Please also check this blog.
          http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/28289
        Positive point. If the requirement is technically possible, you can fulfill the requirement.
       Negative point. Need some coding, And 1st you need to understand some steps to use customer exit.
                                But for both case, BPMon provides framework. So actually what you need is small coding.
                                (Setup guide provides sample).
                                If you use OO framework, you can also use BP Analytics based on custom monitor.
    I have not analyze in detail, but seems you have some possibility to fulfill the requirement.
    Idea)
    Search the table ANLA(Asset Master Record Segment) where AEDAT = Today.
    *Result of this, you can identify Asset master that have update today.
    Then to check whether the change is for cost center or not, access to the change document tables (CDHDR/CDPOS).
    CDHDR     : OBJECTCLAS = ANLA, and TCODE = AS02, OBJECTID = Object ID
    CDPOS     : CHANGENR,  FNAME = KOSTL
    By the way,  what kinf of things, do you want to enable for FSCM, Asset Mgmt, Dispute Mgmt, HCM, PS ?
    Hope above information helps you.
    Best Regards
    Keiji

Maybe you are looking for

  • Multi-level nested tables for repeatable XML Elements

    Hi there, Suppose we have a XML Schema „ASchema“ like this (XMLDB schema annotations are left out for simplicity): <xs:schema xmlns:xs=" .... " /> <xs:element name=“A“>      <xs:complexType>           <xs:sequence>                <xs:element name=“B“

  • Revoking permissions

    i have a number of java permissions associated with the oracle.aurora.rdbms.security.PolicyTablePermission type that i would like 'disabled': select * from user_java_policy order by type_name, name; GRANT TANTALIS oracle.aurora.rdbms.security.PolicyT

  • Adjusting row height in JTable

    hi: i think i have a tricky one.. i have a Jtable where the cell renderers extend JTextArea. I set the column width, but because the cells can contain any amount of text, i have to adjust each row width to accomodate the text. i used the FontMetrics

  • IPhoto Migration : Mixed Reference and Manged

    I just purchased a new mac to replace an old one,  in iPhoto I have one library and copied the library library across to new,  most photo's work fine however I have found some are only thumbnail. After doing a bit of research it would seem iPhoto lib

  • I am not able to see the contents of the mail in the screen although the mails appear in the list

    I have registered my Yahoo, GMail and also my office mails on to my Apple Ipad. I am able to see listing of mails, the mail contents does not appear on the screen even after clicking on the mail.