User Tracking ---Report

Hi experts,
can any body tell me how can i make a ABAP Report which give number of user login in into the system on the user specified date and time for how long time with all details
for example -
.user name,time,tcode,tables,anything that used by user
Regards,
imran

Hi
try this code
*& Report  ZALV_LIST_OF_USERS                                          *
REPORT ZALV_LIST_OF_USERS.
TABLES: ZSAPUSERS.
type-pools slis.
DATA: ITAB TYPE ZSAPUSERS OCCURS 0 WITH HEADER LINE,
      TEMP TYPE I.
DATA: INT_FCAT TYPE SLIS_T_FIELDCAT_ALV.
DATA: i_repid like sy-repid, SDATE TYPE SY-DATUM.
DATA: TITLE(50) TYPE C.
DATA: STR TYPE ZSAPUSERS-ZUSER.
DATA: LISTHEADER TYPE SLIS_T_LISTHEADER.
DATA: DATELOW(10) TYPE C,
      DATEHIGH(10) TYPE C.
DATA: TOP_OF_PAGE      TYPE SLIS_FORMNAME VALUE 'TOP_OF_PAGE'.
DATA: TOP_OF_LIST     TYPE SLIS_FORMNAME VALUE 'TOP_OF_LIST'.
DATA: V_USER_COMMAND TYPE SLIS_FORMNAME VALUE 'USER_COMMAND'.
DATA: EVENTS           TYPE SLIS_T_EVENT.
SDATE = SY-DATUM - 1.
SELECTION-SCREEN BEGIN OF BLOCK SR WITH FRAME TITLE TEXT-001.
SELECT-OPTIONS ZVUSER FOR ZSAPUSERS-ZUSER DEFAULT '*' OBLIGATORY no
INTERVALS no-extension.
SELECT-OPTIONS ZTCODE FOR ZSAPUSERS-TCODE no INTERVALS
no-extension.
SELECT-OPTIONS ZVDATE for ZSAPUSERS-ZDATE.
SELECTION-SCREEN END OF BLOCK SR.
PERFORM GET_EVENTS.
START-OF-SELECTION.
  MOVE: 'I'      TO ZVUSER-SIGN,
        'CP'     TO ZVUSER-OPTION,
         ZVUSER-LOW  TO ZVUSER-LOW.
  APPEND ZVUSER.
*  MOVE: 'I'      TO ZTCODE-SIGN,
*        'CP'     TO ZTCODE-OPTION,
*         ZTCODE  TO ZTCODE-LOW.
*  APPEND ZTCODE.
  i_repid = sy-repid.
  IF ZTCODE-LOW EQ ''.
    SELECT * INTO TABLE ITAB FROM ZSAPUSERS WHERE ( ZDATE IN
    ZVDATE AND ZUSER IN ZVUSER ) ORDER BY RECID.
  ELSE.
    SELECT * INTO TABLE ITAB FROM ZSAPUSERS WHERE ( ZDATE IN
    ZVDATE AND ZUSER IN ZVUSER ) AND ( TCODE IN ZTCODE ) ORDER BY RECID.
  ENDIF.
  DELETE ADJACENT DUPLICATES FROM ITAB COMPARING ZUSER TCODE SERVER
  TERMID.
  PERFORM COMMENT_BUILD  USING LISTHEADER[].
  DESCRIBE TABLE ITAB LINES TEMP.
  TITLE = 'Displays SAP Users list, No. of Records : '.
  SET TITLEBAR 'TITLEBAR' WITH TITLE TEMP.
  PERFORM INIT_FIELDCAT.
  CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
      I_CALLBACK_PROGRAM      = i_repid
      i_callback_user_command = 'USER_COMMAND'
      I_STRUCTURE_NAME        = 'ZSAPUSER'
      IT_FIELDCAT             = int_fcat[]
      it_events               = EVENTS[]
    TABLES
      T_OUTTAB                = ITAB
    EXCEPTIONS
      program_error           = 1
      others                  = 2.
*&      Form  INIT_FIELDCAT
*       text
FORM INIT_FIELDCAT.
  DATA: POS TYPE I VALUE 1.
  DATA: M_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
* Header Details.
  CLEAR M_FIELDCAT.
  M_FIELDCAT-COL_POS       =  POS.
  M_FIELDCAT-FIELDNAME     = 'RECID'.
  M_FIELDCAT-SELTEXT_M     = 'RECORD ID'.
  M_FIELDCAT-HOTSPOT       = ''.
  M_FIELDCAT-TABNAME       =  'ITAB'.
  M_FIELDCAT-OUTPUTLEN = ''.
  APPEND M_FIELDCAT TO INT_fcat.
  POS = POS + 1.
  CLEAR M_FIELDCAT.
  M_FIELDCAT-COL_POS       =  POS.
  M_FIELDCAT-FIELDNAME     = 'ZDATE'.
  M_FIELDCAT-SELTEXT_M     = 'START DATE'.
  M_FIELDCAT-HOTSPOT       = ''.
  M_FIELDCAT-TABNAME       =  'ITAB'.
  M_FIELDCAT-OUTPUTLEN = ''.
  APPEND M_FIELDCAT TO INT_fcat.
  POS = POS + 1.
  CLEAR M_FIELDCAT.
  M_FIELDCAT-COL_POS       =  POS.
  M_FIELDCAT-FIELDNAME     = 'TIME'.
  M_FIELDCAT-SELTEXT_M     = 'TIME'.
  M_FIELDCAT-HOTSPOT       = ''.
  M_FIELDCAT-TABNAME       =  'ITAB'.
  M_FIELDCAT-OUTPUTLEN = ''.
  APPEND M_FIELDCAT TO INT_fcat.
  POS = POS + 1.
  CLEAR M_FIELDCAT.
  M_FIELDCAT-COL_POS       =  POS.
  M_FIELDCAT-FIELDNAME     = 'ZUSER'.
  M_FIELDCAT-SELTEXT_M     = 'USER'.
  M_FIELDCAT-HOTSPOT       = ''.
  M_FIELDCAT-TABNAME       =  'ITAB'.
  M_FIELDCAT-OUTPUTLEN = ''.
  APPEND M_FIELDCAT TO INT_fcat.
  POS = POS + 1.
  CLEAR M_FIELDCAT.
  M_FIELDCAT-COL_POS       =  POS.
  M_FIELDCAT-FIELDNAME     = 'TCODE'.
  M_FIELDCAT-SELTEXT_M     = 'TRANS ID'.
  M_FIELDCAT-HOTSPOT       = ''.
  M_FIELDCAT-TABNAME       =  'ITAB'.
  M_FIELDCAT-OUTPUTLEN = ''.
  APPEND M_FIELDCAT TO INT_fcat.
  POS = POS + 1.
  CLEAR M_FIELDCAT.
  M_FIELDCAT-COL_POS       =  POS.
  M_FIELDCAT-FIELDNAME     = 'SERVER'.
  M_FIELDCAT-SELTEXT_M     = 'SERVER NAME'.
  M_FIELDCAT-HOTSPOT       = ''.
  M_FIELDCAT-TABNAME       =  'ITAB'.
  M_FIELDCAT-OUTPUTLEN = ''.
  APPEND M_FIELDCAT TO INT_fcat.
  POS = POS + 1.
  CLEAR M_FIELDCAT.
  M_FIELDCAT-COL_POS       =  POS.
  M_FIELDCAT-FIELDNAME     = 'TERMID'.
  M_FIELDCAT-SELTEXT_M     = 'TERMINAL ID'.
  M_FIELDCAT-HOTSPOT       = ''.
  M_FIELDCAT-TABNAME       =  'ITAB'.
  M_FIELDCAT-OUTPUTLEN = ''.
  APPEND M_FIELDCAT TO INT_fcat.
  POS = POS + 1.
ENDFORM.                    "INIT_FIELDCAT
*&      Form  COMMENT_BUILD
*       text
*      -->LT_TOP_OF_Ptext
FORM COMMENT_BUILD USING LT_TOP_OF_PAGE TYPE SLIS_T_LISTHEADER.
  DATA: LS_LINE TYPE SLIS_LISTHEADER.
  data: tempstr(255) type c.
  write zvDATE-LOW to DATELOW DD/MM/YYYY.
  write zvDATE-HIGH to DATEHIGH DD/MM/YYYY.
  CLEAR LS_LINE.
  LS_LINE-TYP  = 'H'.
  concatenate 'Searching User : ' zvuser-low ' and Tcode : ' ztcode-low
  into tempstr.
  LS_LINE-INFO = tempstr.
  APPEND LS_LINE TO LT_TOP_OF_PAGE.
  CLEAR LS_LINE.
  LS_LINE-TYP  = 'S'.
  LS_LINE-KEY  = 'FROM DATE : '.
  LS_LINE-INFO = DATELOW.
  APPEND LS_LINE TO LT_TOP_OF_PAGE.
  LS_LINE-TYP  = 'S'.
  LS_LINE-KEY  = 'TO DATE : '.
  LS_LINE-INFO = DATEHIGH.
  APPEND LS_LINE TO LT_TOP_OF_PAGE.
ENDFORM.                    "COMMENT_BUILD
*&      Form  TOP_OF_PAGE
*       text
FORM TOP_OF_PAGE.
  CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
      IT_LIST_COMMENTARY = LISTHEADER.
ENDFORM.                    "TOP_OF_PAGE
*&      Form  GET_EVENTS
*       text
FORM GET_EVENTS.
  DATA: LS_EVENT TYPE SLIS_ALV_EVENT.
  CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
    EXPORTING
      I_LIST_TYPE = 0
    IMPORTING
      ET_EVENTS   = EVENTS.
  READ TABLE EVENTS WITH KEY NAME = SLIS_EV_TOP_OF_PAGE
                                    INTO LS_EVENT.
  IF SY-SUBRC = 0.
    MOVE TOP_OF_PAGE TO LS_EVENT-FORM.
    APPEND LS_EVENT TO EVENTS.
  ENDIF.
ENDFORM.                    " GET_EVENTS
<b> create an table using the name ZSAPUSERS
in which include the following fileds
ZUSER
TCODE
SERVER
TERMID</b>
then excute the program u can get the track or else there is standard TCode SM04
try with that also
Reward all helpfull points
Regards
Pavan

Similar Messages

  • Campus Manager User Tracking Report - dot1xEnabled = False

    The Campus Manager User Tracking Report has the dot1xEnabled field that is always false.
    It was my understanding that the switch will send SNMP Trap Notifications to Cisco Works regarding the status of 802.1x authentication per port.
    We have configured per port:
    snmp trap mac-notification added
    snmp trap mac-notification removed
    and globally
    snmp-server host x.x.x.x  abababa udp-port 1431 MAC-Notification
    With no success, so we opened a TAC case, 614376387 and we were told by TAC and the Development Engineers that this "feature" does not work in LMS 3.2 and Campus Manager 5.2.1 and that this feature will be available in the next new release.
    I thought I had read on this forum that some folks have this 'feature' working, where this field shows the current status of 802.1x per access port.
    Has anyone been able to get this 'feature' to work?  And if so, what versions are you running and what were the 'tricks' to get it working?
    Much appreciated.

    The MAC address notification traps only alert Campus to the fact that a MAC address has been learned or removed from a given port.  That starts the dynamic UT process.  With no other information, you will potentially see a new record appear in UT shortly after receiving the trap.  However, that record will not have IP or username data associated with it.
    To get the IP data, Campus will poll the CISCO-DHCP-SNOOPING-MIB to pull IP data.  To get username data, Campus will poll the IEEE8021-PAE-MIB of the switch to get dot1x information.  So, your switch must be configured for dot1x, and it must support this MIB (in particular, the objects dot1xAuthSessionTime, dot1xAuthSessionUserName, and dot1xPaePortCapabilities).
    Without dot1x, hope is not lost.  If the end host is running Windows and the UTLite tool, then when the user logs in, UTLite should start from their logon script, and send a UDP update to Campus with the username and IP of the host.

  • ALV user Tracking Report

    Hi experts,
    can any body tell me how can i make a ABAP  ALV Report which give number of user login in into the system for how long time with all details based on the user specified date,username,tcode  and time on selection screen
    for example -
    .user name,time,tcode,tables,anything that used by user on that specified date
    Regards,
    imran

    Hi Imran
    <u><b>
    I think yesterday i had given u the coding of the alv grid which displays the list of users
    ok refer to this code and follow what i say so that u can get the list of users</b></u>
    In this U have to create an Table with the following fields. In this program i had created a table with the name
    <b>ZSAPUSERS</b>
    In which u have to include the following fileds
    <b>ZUSER</b>   <u><b>Name of the User.</b></u>
    <b>TCODE</b>  <u><b> Transaction.</b></u>
    <b>SERVER</b> <u><b>Name of The Server.</b></u>
    <b>TERMID</b>  <u><b>Terminal ID working from</b></u>
    *& Report  ZALV_LIST_OF_USERS                                          *
    REPORT ZALV_LIST_OF_USERS.
    TABLES: ZSAPUSERS.
    type-pools slis.
    DATA: ITAB TYPE ZSAPUSERS OCCURS 0 WITH HEADER LINE,
          TEMP TYPE I.
    DATA: INT_FCAT TYPE SLIS_T_FIELDCAT_ALV.
    DATA: i_repid like sy-repid, SDATE TYPE SY-DATUM.
    DATA: TITLE(50) TYPE C.
    DATA: STR TYPE ZSAPUSERS-ZUSER.
    DATA: LISTHEADER TYPE SLIS_T_LISTHEADER.
    DATA: DATELOW(10) TYPE C,
          DATEHIGH(10) TYPE C.
    DATA: TOP_OF_PAGE      TYPE SLIS_FORMNAME VALUE 'TOP_OF_PAGE'.
    DATA: TOP_OF_LIST     TYPE SLIS_FORMNAME VALUE 'TOP_OF_LIST'.
    DATA: V_USER_COMMAND TYPE SLIS_FORMNAME VALUE 'USER_COMMAND'.
    DATA: EVENTS           TYPE SLIS_T_EVENT.
    SDATE = SY-DATUM - 1.
    SELECTION-SCREEN BEGIN OF BLOCK SR WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS ZVUSER FOR ZSAPUSERS-ZUSER DEFAULT '*' OBLIGATORY no
    INTERVALS no-extension.
    SELECT-OPTIONS ZTCODE FOR ZSAPUSERS-TCODE no INTERVALS
    no-extension.
    SELECT-OPTIONS ZVDATE for ZSAPUSERS-ZDATE.
    SELECTION-SCREEN END OF BLOCK SR.
    PERFORM GET_EVENTS.
    START-OF-SELECTION.
      MOVE: 'I'      TO ZVUSER-SIGN,
            'CP'     TO ZVUSER-OPTION,
             ZVUSER-LOW  TO ZVUSER-LOW.
      APPEND ZVUSER.
    *  MOVE: 'I'      TO ZTCODE-SIGN,
    *        'CP'     TO ZTCODE-OPTION,
    *         ZTCODE  TO ZTCODE-LOW.
    *  APPEND ZTCODE.
      i_repid = sy-repid.
      IF ZTCODE-LOW EQ ''.
        SELECT * INTO TABLE ITAB FROM ZSAPUSERS WHERE ( ZDATE IN
        ZVDATE AND ZUSER IN ZVUSER ) ORDER BY RECID.
      ELSE.
        SELECT * INTO TABLE ITAB FROM ZSAPUSERS WHERE ( ZDATE IN
        ZVDATE AND ZUSER IN ZVUSER ) AND ( TCODE IN ZTCODE ) ORDER BY RECID.
      ENDIF.
      DELETE ADJACENT DUPLICATES FROM ITAB COMPARING ZUSER TCODE SERVER
      TERMID.
      PERFORM COMMENT_BUILD  USING LISTHEADER[].
      DESCRIBE TABLE ITAB LINES TEMP.
      TITLE = 'Displays SAP Users list, No. of Records : '.
      SET TITLEBAR 'TITLEBAR' WITH TITLE TEMP.
      PERFORM INIT_FIELDCAT.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM      = i_repid
          i_callback_user_command = 'USER_COMMAND'
          I_STRUCTURE_NAME        = 'ZSAPUSER'
          IT_FIELDCAT             = int_fcat[]
          it_events               = EVENTS[]
        TABLES
          T_OUTTAB                = ITAB
        EXCEPTIONS
          program_error           = 1
          others                  = 2.
    *&      Form  INIT_FIELDCAT
    *       text
    FORM INIT_FIELDCAT.
      DATA: POS TYPE I VALUE 1.
      DATA: M_FIELDCAT TYPE SLIS_FIELDCAT_ALV.
    * Header Details.
      CLEAR M_FIELDCAT.
      M_FIELDCAT-COL_POS       =  POS.
      M_FIELDCAT-FIELDNAME     = 'RECID'.
      M_FIELDCAT-SELTEXT_M     = 'RECORD ID'.
      M_FIELDCAT-HOTSPOT       = ''.
      M_FIELDCAT-TABNAME       =  'ITAB'.
      M_FIELDCAT-OUTPUTLEN = ''.
      APPEND M_FIELDCAT TO INT_fcat.
      POS = POS + 1.
      CLEAR M_FIELDCAT.
      M_FIELDCAT-COL_POS       =  POS.
      M_FIELDCAT-FIELDNAME     = 'ZDATE'.
      M_FIELDCAT-SELTEXT_M     = 'START DATE'.
      M_FIELDCAT-HOTSPOT       = ''.
      M_FIELDCAT-TABNAME       =  'ITAB'.
      M_FIELDCAT-OUTPUTLEN = ''.
      APPEND M_FIELDCAT TO INT_fcat.
      POS = POS + 1.
      CLEAR M_FIELDCAT.
      M_FIELDCAT-COL_POS       =  POS.
      M_FIELDCAT-FIELDNAME     = 'TIME'.
      M_FIELDCAT-SELTEXT_M     = 'TIME'.
      M_FIELDCAT-HOTSPOT       = ''.
      M_FIELDCAT-TABNAME       =  'ITAB'.
      M_FIELDCAT-OUTPUTLEN = ''.
      APPEND M_FIELDCAT TO INT_fcat.
      POS = POS + 1.
      CLEAR M_FIELDCAT.
      M_FIELDCAT-COL_POS       =  POS.
      M_FIELDCAT-FIELDNAME     = 'ZUSER'.
      M_FIELDCAT-SELTEXT_M     = 'USER'.
      M_FIELDCAT-HOTSPOT       = ''.
      M_FIELDCAT-TABNAME       =  'ITAB'.
      M_FIELDCAT-OUTPUTLEN = ''.
      APPEND M_FIELDCAT TO INT_fcat.
      POS = POS + 1.
      CLEAR M_FIELDCAT.
      M_FIELDCAT-COL_POS       =  POS.
      M_FIELDCAT-FIELDNAME     = 'TCODE'.
      M_FIELDCAT-SELTEXT_M     = 'TRANS ID'.
      M_FIELDCAT-HOTSPOT       = ''.
      M_FIELDCAT-TABNAME       =  'ITAB'.
      M_FIELDCAT-OUTPUTLEN = ''.
      APPEND M_FIELDCAT TO INT_fcat.
      POS = POS + 1.
      CLEAR M_FIELDCAT.
      M_FIELDCAT-COL_POS       =  POS.
      M_FIELDCAT-FIELDNAME     = 'SERVER'.
      M_FIELDCAT-SELTEXT_M     = 'SERVER NAME'.
      M_FIELDCAT-HOTSPOT       = ''.
      M_FIELDCAT-TABNAME       =  'ITAB'.
      M_FIELDCAT-OUTPUTLEN = ''.
      APPEND M_FIELDCAT TO INT_fcat.
      POS = POS + 1.
      CLEAR M_FIELDCAT.
      M_FIELDCAT-COL_POS       =  POS.
      M_FIELDCAT-FIELDNAME     = 'TERMID'.
      M_FIELDCAT-SELTEXT_M     = 'TERMINAL ID'.
      M_FIELDCAT-HOTSPOT       = ''.
      M_FIELDCAT-TABNAME       =  'ITAB'.
      M_FIELDCAT-OUTPUTLEN = ''.
      APPEND M_FIELDCAT TO INT_fcat.
      POS = POS + 1.
    ENDFORM.                    "INIT_FIELDCAT
    *&      Form  COMMENT_BUILD
    *       text
    *      -->LT_TOP_OF_Ptext
    FORM COMMENT_BUILD USING LT_TOP_OF_PAGE TYPE SLIS_T_LISTHEADER.
      DATA: LS_LINE TYPE SLIS_LISTHEADER.
      data: tempstr(255) type c.
      write zvDATE-LOW to DATELOW DD/MM/YYYY.
      write zvDATE-HIGH to DATEHIGH DD/MM/YYYY.
      CLEAR LS_LINE.
      LS_LINE-TYP  = 'H'.
      concatenate 'Searching User : ' zvuser-low ' and Tcode : ' ztcode-low
      into tempstr.
      LS_LINE-INFO = tempstr.
      APPEND LS_LINE TO LT_TOP_OF_PAGE.
      CLEAR LS_LINE.
      LS_LINE-TYP  = 'S'.
      LS_LINE-KEY  = 'FROM DATE : '.
      LS_LINE-INFO = DATELOW.
      APPEND LS_LINE TO LT_TOP_OF_PAGE.
      LS_LINE-TYP  = 'S'.
      LS_LINE-KEY  = 'TO DATE : '.
      LS_LINE-INFO = DATEHIGH.
      APPEND LS_LINE TO LT_TOP_OF_PAGE.
    ENDFORM.                    "COMMENT_BUILD
    *&      Form  TOP_OF_PAGE
    *       text
    FORM TOP_OF_PAGE.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY = LISTHEADER.
    ENDFORM.                    "TOP_OF_PAGE
    *&      Form  GET_EVENTS
    *       text
    FORM GET_EVENTS.
      DATA: LS_EVENT TYPE SLIS_ALV_EVENT.
      CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
        EXPORTING
          I_LIST_TYPE = 0
        IMPORTING
          ET_EVENTS   = EVENTS.
      READ TABLE EVENTS WITH KEY NAME = SLIS_EV_TOP_OF_PAGE
                                        INTO LS_EVENT.
      IF SY-SUBRC = 0.
        MOVE TOP_OF_PAGE TO LS_EVENT-FORM.
        APPEND LS_EVENT TO EVENTS.
      ENDIF.
    ENDFORM.                    " GET_EVENTS
    If u finf any difficulties or any problem let me know to clear ur doubt
    Reward if helpfull
    Regards
    Pavan

  • LMS4.1 user tracking not sortable

    in LMS 4.1, under Monitor->Identity Dashboard, i have "user tracking summary" as a portlet, which tells me i have ~ 17,000 users.  when i click the report, it pops up a screen that shows mac address, ip address, hostname, subnet, etc.
    If i try to do ANY filtering, it returns 0 records.  this could be from a specific IP, mac address, device name, or subnet.  i have tried every type of record.  every filter i attempt always ends with 0 records returned, even though in the unfiltered list they show up.  It would be problematic to manually sort through 17,000 users looking for the particular records i need without the ability to use the filter.
    can anyone provide an example of how to filter the User Tracking report? is there some feature in LMS i don't own or have enabled to allow this filtering?
    thanks!

    I can't disagree with your logic, I guess I just assumed such an enterprise solution (that is FAR from cheap) wouldn't require an export of my close to 20,000 records to a .csv in order to do simple sorting.
    I will continue to look for a solution within the application, but if worse comes to worse i guess an export could suffice for some of what i'm trying to do.

  • User Tracking - Application error: URN_NOT_FOUND

    hello
                running ciscoworks 3.2 on Windows 2008 SP2 - installed apps are:
    1.  Campus Manager 5.2.1
    2.  CiscoView 6.1.9
    3.  CiscoWorks Assistant 1.2.0
    4.  CiscoWorks Common Services 3.3.0
    5.  Device Fault Manager 3.2.0
    6.  Integration Utility 1.9.0
    7.  Internetwork Performance Monitor 4.2.0
    8.  LMS Portal 1.2.0
    9.  Resource Manager Essentials 4.3.1
    When I run a quick report in Campus Manager (User Tracking > Reports) I get the following error appearing in a window:
    Application error: URN_NOT_FOUND : urn "ogs_server_urn" : Not found !!.
    Acquisition is working fine – on completion it states how many new hosts have been discovered but I get the above error when I try running a report.
    Reloaded server but problem persists. I’ve attached the output of pdshow and the cmapps log - any advice/guidance appreciated.
    Thanks
    Andy

    Hello,
    I have the same problem.
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Tabla normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-priority:99;
    mso-style-qformat:yes;
    mso-style-parent:"";
    mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
    mso-para-margin:0cm;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:10.0pt;
    font-family:"Times New Roman","serif";}
    LMS2.6
    could anybody help me?
    I attach the ctm_config.txt file.
    Thanks

  • LMS 2.6 User Tracking - Application error: URN_NOT_FOUND

    Hi,
    When I run a quick report in Campus Manager (User Tracking  > Reports) I get the following error appearing in a window:
    Application error: URN_NOT_FOUND :  urn "ogs_server_urn" : Not found !!.
    Could anybody help me?
    I attach the ctm_config.txt file
    thanks

    From which directory did you get this ctm_config.txt?  I need to see the ones under NMSROOT/MDC/tomcat/webapps/campus/WEB-INF/lib and NMSROOT/MDC/tomcat/webapps/cmapps/WEB-INF/lib.
    Since this is LMS 2.6, I also need to see the output of the pdshow command.

  • CiscoWorks LMS 4.0.1 + Catalyst 3750X - User Tracking Issue

    Hello all,
    We just deployed some Catalyst 3750X-48PF-L switches. I noticed that the user tracking report doesn't work normally.
    The switches have C3KX-10Gb NM modules, and all access port are 1 Gbit. But in the User Tracking report, I see devices found on Fa0/43 for example (this is because the previous switch was a Catalyst 2960. I deleted the old switch and add the new 3750X, so this could not be the cause of the problem).
    I installed all the patches that are available for LMS 4.0.1.
    Could anybody help me please?
    Thanks in advance!

    Any old entries won't automatically be removed until they age out (I believe 90 days is the default time). You can override / modify that by going in to Admin > Network > Purge Settings > User Tracking Purge Policy.
    If that fails, you could re-initaitlize the User Tracking db and re-run a Major Acquisition to refresh everything but that would also have the effect of deleting all historical UT entries you may want to keep.
    To reinitialize a db, please see the procedures posted here. ANI is the db used by User Tracking.

  • User Tracking like traceroute

    May I get any kind report or tool for user tracking link traceroute?
    I mean is "user A or server <--> layer2 switch <--> layer2 switch <--> gateway <--> layer2 switch <--> layer2 switch <--> userB "
    May I get User tracking report user A to user B     or   User A to gateway
    I think old verison of lms have these reports

    The layer 2 path trace to which you refer no longer exists in LMS.  The application that did this, Path Analysis, was removed in LMS 3.0.

  • User Tracking empty "UserName" field

    Hi,
    Does anyone know why the 'User name' column in Campus User Tracking Report is empty.
    How CiscoWorks reads the UserName from Windows stations?
    Thanks.

    You need the utlite script to run on the users PC to make it upload the username.
    It is usually made part of the login script on the DC
    http://www.cisco.com/en/US/partner/products/sw/cscowork/ps563/products_configuration_example09186a00801a9ff6.shtml
    Cheers,
    Michel

  • Financial Reports User Tracking

    Hi Guys
    Can any one tell me how to track the user login, report modification, creation and deletion kind of activities in FR--System 9.X??
    Appreciate your inputs..
    Thanks
    Jagan

    Thanks for your response.
    Can you explain how can we set up this user tracking for FR and WA reports. I think this usage tracking is only for IR reports.
    Really appreciate if you can share your experiance on this...
    Thanks
    Jagan

  • LMS 4.2.4 User Tracking End Host Report The system cannot find the path specified

    Hello at all,
    I have a problem when creating a scheduled User Tracking End Host Report.
    I always get the message "The system cannot find the path specified" and the job fails.
    An immediate report is successful.
    I tried to change the "Report Publish Path" from "C:/Program Files (x86)/CSCOpx/" to "C:/PROGRA~2/CSCOpx/", but that did'nt worked.
    Has anybody an idea?
    Regards, Kerstin

    Share the screenshot of the following directory :
    NMSROOT\CSCOpx\campus\etc\cwsi
    In case it is blank, try following :
    1.Stop the services : net stop crmdmgtd 
    2.Take a copy of > C:/Progra~2/campus/etc/users and place it under C:/Progra~2/campus/etc/cwsi
    3.Start the services : net start crmdmgtd
    Please try and let me know the updates.
    -Thanks
    Vinod
    **Encourage Contributors. RATE them.**

  • Campus User Tracking Quick report of wan location

    Hi All,
    I have one WAN location for which I am not getting campus user tracking for the end host.
    I added all the WAN location switches in cisco works and getting logging report. But when
    I tried to pull up end host report via IP ADDRESS or hostname it says end host not found.
    Any help would be appriciated.
    Thanks in advance.
    Samir

    Do the end hosts show up by MAC?  Can you search for end hosts based on the remote switch name or IP?  In order for UT to display IP information, the ARP cache of the remote router needs to be populated and pollable via SNMP.  That means the remote router needs to be managed by Campus Manager.

  • Campus User Tracking Quick report

    Hi All,
    I'm new to Cisco works and I'm trying to generate a report and wondering if anyone can point me in the right direction.
    I am trying to run report via campus user tracking --> quick report with the vlad id.
    But my problem is, for some of the vlan I can't get the report, as I know we have lot's end hosts in that vlan.
    Our network consists of bridge vlan of 200-210 from core switch --- distribution switch -- access switch.
    I am getting report for my 205 vlan but not for others.
    Thanks for your reply in advance.
    Samir

    Hi All,
    Can anyone help in this issue will be appriciated.
    Thanks,
    Samir

  • Content Tracker Reports Query file modification issue - Custom Report

    Hi All,
    I was trying to generate a custom report using Content Tracker. I was successful in doing so. However, I found that sometimes it does not pick up the updated query file of Content Tracker reports.
    I made a change in my query:
    from SELECT * FROM Users to
    SELECT dname FROM Users
    the change is written on the file but when i generated the report from C.T. UI, it's still showing me the old results having all the columns. Tried bouncing the server as well, but no use.
    I also added a new query 24 hrs back (as SELECT count(*) As UsersNum FROM Users), it's still not recognizing it and giving error as Failure of server APACHE bridge: No backend server available for
    connection: timed out after 10 seconds or idempotent set to OFF;
    and the log says,
    Unable to execute service SCT_GET_DOCUMENT_INFO_ADMIN and function sctExecuteQuery.
    Unable to create the result set for query '(null)'. SQL statement to execute cannot be empty or null
    What could be the resolution of this issue?
    I am using UCM 11g + SSXA.

    Server bounce.
    Issue is not file update but some other issue, ongoing in another thread by Me.

  • Error in running custom query from jspx(site) for Content Tracker Report

    Hi All,
    I want to generate a custom Content Tracker Report. I am able to do so from Content Tracker console, but when i try to invoke the service 'SCT_GET_DOCUMENT_INFO_ADMIN' or 'SCT_GET_DOCUMENT_INFO' with my custom query(which simply counts the number of rows in a table) from my jspx page, it gives the following error.
    oracle.stellent.wcm.server.request.RequestException: Error
    occurred in Content Server executing service
    'SCT_GET_DOCUMENT_INFO_ADMIN'
    Caused By: oracle.stellent.ridc.protocol.ServiceException: Unable to get
    document info. Unable to execute service method 'sctExecuteQuery'. The
    error was caused by an internally generated issue. The error has been
    logged.
    What could be the reason and the resolution?
    Also, I know that i am invoking the service in the right way as custom report from query as 'select * from users' works fine from site.
    P.S. I am using UCM 11g + SSXA

    Things are turning weird. The below two queries work from jspx.
    1. SELECT * FROM Users
    2. SELECT dname FROM Users
    But, the following query gives error (SQL is correct).
    select dname, count(dname) from users group by dname
    Unable to execute service method 'sctExecuteQuery'. Null pointer is dereferenced.
    $Unable to get document info.!csUnableToExecMethod,sctExecuteQuery!syNullPointerException
    intradoc.common.ServiceException: !$Unable to get document info.!csUnableToExecMethod,sctExecuteQuery
    *ScriptStack SCT_GET_DOCUMENT_INFO_ADMIN
    3:sctExecuteQuery,**no captured values**
    at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:2115)
    at intradoc.server.Service.buildServiceException(Service.java:2260)
    at intradoc.server.Service.createServiceExceptionEx(Service.java:2254)
    at intradoc.server.Service.createServiceException(Service.java:2249)
    at intradoc.server.Service.doCodeEx(Service.java:584)
    at intradoc.server.Service.doCode(Service.java:505)
    at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1643)
    at intradoc.server.Service.doAction(Service.java:477)
    at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1458)
    at intradoc.server.Service.doActions(Service.java:472)
    at intradoc.server.ServiceRequestImplementor.executeActions(ServiceRequestImplementor.java:1391)
    at intradoc.server.Service.executeActions(Service.java:458)
    at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:737)
    at intradoc.server.Service.doRequest(Service.java:1890)
    at intradoc.server.ServiceManager.processCommand(ServiceManager.java:435)
    at intradoc.server.IdcServerThread.processRequest(IdcServerThread.java:265)
    at intradoc.server.IdcServerThread.run(IdcServerThread.java:160)
    at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:528)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: java.lang.NullPointerException
    at java.util.concurrent.ConcurrentHashMap.get(ConcurrentHashMap.java:768)
    at intradoc.util.IdcConcurrentHashMap.get(IdcConcurrentHashMap.java:60)
    This works fine from Content Tracker UI.
    Anyone has any idea, what could be the issue here?

Maybe you are looking for

  • Help with Oracle Report Builder and SQL Server2000

    Hey guys, I just installed it Oracle Developer Suite10g with Report Builder and I am trying to use Report builder and wants to connect with SQL Server 2000. The problem that I am running in to is SQL Server 2000 i have is Window Authentication so Doe

  • Download script Output to XML format

    Dear friends, I want to download script output to xml format. Can you please help me regarding this issue. Its very Urgent..... Regards, Munna.G

  • Borderless printing in custom sizes

    I'm working on an HP 2575 with Windows 7 I need to print borderless at custom sizes - the main one being 125x250mm. I understand that this isn't a pre-programmed option but somehow in the past I have managed to create a template in print properties t

  • Editable regions and UL tags

    I notice that D8 design view can corrupt the view of a page element if an editable region is included. I.e. <div class="leftsideCol"><!-- TemplateBeginEditable name="sideNav" --> <ul> <li class="title">In-Page links</li> <li><a href="#">Navigation Ti

  • I can't open photos stored on my phone after upgrading to ios6

    After upgrading to ios6 i have a problem in accessing my photos stored in my iphone!!!