Reports that can be outputted from the system

Hello,
Does IMS5.2 provide any tool to generate reports with indicators like :
� Activity logs, with statistics by account.
� Login and failed login attempts.
� Account activity/inactivity by period.
� Active users trace.
or i need to use a third-party tool to obtain this indicators?
Many thanks in advance

Look in the console or server log from the ALDSP server to verify that this message is coming from the ALDSP server.
Seeing the stack trace would help.
It sounds like either (1) you have not rebuilt/redeployed your DSP application on the ALDSP server (it's possible to develop new data services in Workshop and execute them in the Test View without rebuilding. But it's not possible to use the 'submit' function because the compiled xmlbean classes are required.
First thing you want to do is test the SDO Update/submit in the Test View - so pick any function in that data service, run it in the test view, and click on 'Edit'. Now change something, and click on submit. Did it work? I'm guessing you get the same error message that you saw via service bus. Try rebuilding and redeploying your ALDSP application (make sure it redeploys successfully by messages in the log file). YOu should have the ALDSP logging set to 'Debug' for your application, and also set the WLS logging to Debug so you can see the ALDSP messages.
Btw - you will have the same issue in ALSB 'Debug' as you had when you tried to use the submit function via the JWS Test page. You won't have a DataGraph unless you create one manually.
Other thing - why don't you open a case with customer support so that you have 24/7 help instead of only help when I check this forum?

Similar Messages

  • Report that gets full name from the users id in the computer name

    I don't even know if this is possible, but I am finding that quite often of late I am needing to get the users full name from the computer name.
    We have a standard where a computer name is in this format XXXXXXXUSERID.
    Is there a way to get the Full name from the USERID that is in the computername (not last logged on user).
    I am fairly sure that I might be able to work it out in SQLSMS but I really need it on the web reports form SCCM.
    If anyone has any ideas please let me know.

    Thanks, I want to add it to most my reports but this is the main one that I am using right now due to an audit. 
    SELECT DISTINCT
    CS.Name0 AS 'Computer Name', CS.Domain0 AS 'Domain', CS.UserName0 AS 'User', BIOS.SerialNumber0 AS 'Bios serial',
    SE.SerialNumber0 AS 'System Enclosure serial', CS.Manufacturer0 AS 'Manufacturer', CS.Model0 AS 'model', OS.Caption0 AS 'OS',
    RAA.SMS_Assigned_Sites0 AS 'Site', RAM.TotalPhysicalMemory0 AS 'Total Memory', SUM(ISNULL(LDisk.Size0, '0')) AS 'Hardrive Size',
    SUM(ISNULL(LDisk.FreeSpace0, '0')) AS 'Free Space', CPU.Name0 AS [CPU Name]
    FROM dbo.v_GS_COMPUTER_SYSTEM AS CS RIGHT OUTER JOIN
    dbo.v_GS_PC_BIOS AS BIOS ON BIOS.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_GS_SYSTEM AS SYS ON SYS.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_GS_OPERATING_SYSTEM AS OS ON OS.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_RA_System_SMSAssignedSites AS RAA ON RAA.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_GS_X86_PC_MEMORY AS RAM ON RAM.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_GS_LOGICAL_DISK AS LDisk ON LDisk.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_GS_PROCESSOR AS CPU ON CPU.ResourceID = CS.ResourceID RIGHT OUTER JOIN
    dbo.v_GS_SYSTEM_ENCLOSURE AS SE ON SE.ResourceID = CS.ResourceID
    WHERE (LDisk.DriveType0 = 3)
    GROUP BY CS.Name0, CS.Domain0, CS.UserName0, BIOS.SerialNumber0, SE.SerialNumber0, CS.Manufacturer0, CS.Model0, OS.Caption0, RAA.SMS_Assigned_Sites0,
    RAM.TotalPhysicalMemory0, CPU.Name0
    What I really want to do is add another column called owner that just has the UID in it, I will then try to pull the users full name into another column.. hopefully I am not biting off more then I can chew with this but i have thousands of records and i
    will be forced to export to excel or something then look up all the names if I can't do this...

  • I need to design a form that can accept images from the responder. Can this be done?

    I'm designing an award application/submission form, and the respondent will need to include photos in the application. Is this possible in Adobe FormsCentral?

    We've just added support for uploading files in our latest release (12/5/2011). You can read more about the feature here:
    http://forums.adobe.com/thread/934728
    Please try it out and give us your feedback.
    Randy

  • I want to enter ICE numbers that can be seen from the lock screen of my iPhone. Any solutions?

    ICE numbers (In Case of Emergency) help first responders make important phone calls on your behalf in the event of an emergency. Typically these are stored as ICE numbers in your contacts, however, your contacts can't be accessed from a lock screen if you have set a password to get into your phone. Any wonderful solutions? I have developed one solution that works: I entered my ICE information into "Notes", and then took a screen shot of the information. Then I mailed it to myself and saved it in my camera roll. Once I selected the "photo" of my ICE information, I saved this as my lock screen photo. Now when anyone turns on my phone, they see my ICE numbers and they do not have access to any other parts of my phone.

    Having access to contact numbers stored in a phone without knowing the passcode sort of nullifies part of the reason for the passcode protection in the first place.  However, I do support giving users more freedom, os long as they understand the possible negative consequences.

  • What command can be run from the cmd to inquire about the language layout that is used right now?

    I have windows 7 32bit platform. Is there any command that can be run from the command line just to inquire about the language bar that is currently in use? Suppose I have English keyboard on my machine but I am switching between 3 languages when I write
    my documents (e.g. English, German, Spanish). I want to know if there is any way to tell what language layout that is in current use as seen in the language bar. This question is not about how to change language layout from the command line -- just to know
    what layout. For example, the command can return some sort of string to indicate which layout is currently in use: "english", "german", "spanish", and so on.
    My ultimate goal from this question is to pass this output into an external editor that will hopefully change font based on the input language? Any help to achieve this goal will be much appreciated.
    Or put differently, what is the best way to tell an external editor like Emacs about the current language layout that is in current use?

    For the current input language you can try using
    reg query "HKCU\Keyboard Layout\Preload" /v 1
    The return value includes an eight digit hex value. The first four digits indicate either default layout for the language (all zeros) or a variation (non-zero). The last four digits are the locale id - see:
    http://msdn.microsoft.com/en-us/goglobal/bb964664.aspx
    From this table, you can see in the example above my input language is English - Australia. 
    For the keyboard layout you could try
    WMIC Path Win32_Keyboard Get Layout
    0409 is an English - US keyboard.
    For a few other ideas/methods try reading
    http://p0w3rsh3ll.wordpress.com/2013/06/07/about-keyboard-layouts/

  • How to update content types enheriting from the System Page Content type

    After importing a design package I found out that my content types was missing some columns. I could add the missing columns to my "page" and "Article Page" site content type. When adding the exisiting columns I could choose to update
    everything that inherits from this type:
    This is working. However I still miss 2 columns in the "Page" Content type:
    1. Rollup Image
    2. Hide physical URLs from search
    If I roll back my dev environment I can see that these are inherited from the "System Page" content type which is not editable. The columns are in the "System Page" content type but They are gone in "Page" content type that
    should inherit the columns.
    So how do I update these?
    Thanks

    Hi Alex,
    Thank you for replying. I totally agree with you regarding not to modify the OOB content types. The content types I have created/modified is also my own "new" content types.
    However the designpackage import messed up the OOB content types somehow so I'm only trying to get back to the state before the import. The only thing I see is still missing is the two previously mentioned columns in the "page" content type.
    Do you have any other suggestions in how to get back to the "OOB State"?
    Thank you
    Update: this is my page content type. It's not set to read only so it should update the last two missing columns from its parent (system page content type) right?

  • Are there any childrens tablets that can run itunes, specificlly the apps?

    I am wondering if there are any children's tablets that can run apps in the itunes store. Like leapfrog, fuhu, vtech, etc.

    No. The only devices that can run apps from the iTunes Store are the iPad, iPod touch and iPhone.
    Regards.

  • Report that can take the system: (users, utilization, T-CODE)

    I need a report that can take the system:
    How many times a user logged into the system in the last month
    Most used transactions
    Changes passwords.
    Etc., all you have to do with a user-level tuning.
    thanks,
    VLopes

    Hi
    If you Activate the audit log you can keep track all information,
    have a look at   -successful and unsuccessful dialog and RFC logon attempts
                             --successful and unsuccessful transaction and report stats ...
                             how many times a user logged -in and all .yah you need to count
                             the number of times a user logged based on the report.
    Once you activate....every day transaction details are recorded for every user
    who tries to log in.keep an eye on the below parameters
    In RZ10
    rsau/enable :set to 1 to activate audit logging
    rsau/local/file   :to specify name and location of audit log file
    rsau/max_diskspace/local :To specify maximum space for audit file say if
                                                max.size is reached auditing stops
    Hope that helps.
    regards
    Manjula .U

  • Can the width of a report that has been run in the background be increased?

    Hello Experts,
    How can I increase the width of a report that I have run in the background so that it does not wrap text to the next line?
    I have been running the same HR report successfully in the background for many months.  Today I ran it with the same parameters that I've always used and when I retrieve it from my Own Job Spool - System | Own Spool Request | Display Contents the last field is wrapped to the next line.
    Thanks.
    Regards,
    Jeanette

    Jeanette,
    Thereu2019s another possibility if Tedu2019s suggestion doesnu2019t work. When you look at your spool requests, thereu2019s an icon on the toolbar next to the eyeglasses that looks like a yellow rectangular callout. Itu2019s called u201CDisplay in Maximum Widthu201D. Select the Spool no. to display and then press this icon. Shift + F4 is the shortcut.
    Regards,
    Howard

  • HT204152 I am unable to update my App  store Updations. the reason being billing problem asking to update payment method.many times i updated my credit card details but refusing from the system .how can i update my app store updations like  Face book etc.

    I am unable to update my App  store Updations. the reason being billing problem asking to update payment method.Many a  times i updated my credit card details but refusing from the system .how can i update my app store updations like  Face book etc....Using ! phone 6plus  .IOS8.3

    What do you mean by 'refusing from the system', if you are getting an error message then what does it say ?
    For a credit card to have a chance of being accepted it needs to be registered to the same name and address (including format and spacing etc) that you have on your iTunes account, and have been issued by a bank in the country where you and your iTunes account are. If it is and if you are getting a 'declined' message then you could check with the card issuer to see if it's them that are declining it, and if not then try contacting iTunes Support (these are user-to-user forums) and see if they know why it's being declined : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    If when trying to download you are getting a message about a 'problem with a previous purchase' then that implies that iTunes wasn't able to collect the money for your last purchase. If that is the case then you won't be able to download anything else (including app updates) until you've paid off what you owe : Pay an unpaid balance in the iTunes Store - Apple Support
    If you aren't getting the 'problem with a previous purchase' message then try logging into your account (not when trying to download something) and see if you get the 'none' option so that you can remove the card's details and be able to download updates to your apps : Change or remove your payment information from your iTunes Store account (Apple ID) - Apple Support

  • I am attempting to have cells use data from a selective month from the year before so that I can show actual from the prio. years each month.

    I am attempting to have cells use data from a selective month from the year before so that I can show actual from the prio. year each month. I need to create a spreedsheet using the the Acutlas from the year-to-date and from last year-to-date, but need to report each month.

    Hi Tony,
    Answering your question would be easier given a screen shot of the source table and one of what you want the summary table to look like.
    Is the data you want for each month in a single cell o the source table, or does the summary table need to collect February's data (for example) from several cells and do some math with those numbers before presenting them on the summary table?
    Regards,
    Barry

  • My UR12 Steinberg interface is recognized by Yosemite but I can't get any output from the device, does anyone know how to fix this problem? Thanks in advance

    My UR12 Steinberg interface is recognized by Yosemite but I can't get any output from the device, does anyone know how to fix this problem? Thanks in advance

    Apparently it's related to the Firefox plug in.
    This isn't exactly a solution but more of a way to avoid opening PDFs with Firefox's plug in.
    1. Highlight "Tools" from the Menu Bar in the top left of the screen (or click "Options" if using the Firefox Compact Menu)
    2. Select to "Options
    3. Select "Applications"
    4. Look for "Adobe Acrobat Document" under Content Type and to the right under Action select "Use Adobe Reader (default)" instead of the using Adobe Acrobat in Firefox
    5. Open a test PDF. It should open in it's own window now.
    Again, not a complete solution but something that'll at least let you scroll with PDFs open.
    More info here: http://forums.mozillazine.org/viewtopic.php?f=38&t=2171033

  • R/3 report that can show the inventory aging

    Hi Gurus,
            Pls adv whether there is any R/3 report that can show the inventory aging. We know there is a BW report RDD861 can serve this purpose but we would like to have same report pulled from R/3.
    please advice asap and do the needful.
    Regards
    KRISHNA

    Not sure exactly what your complete requirements are but you could try the following standard reports to see if any fit your needs.
    Real-Time
    MC50 - Dead stock
    MC46 - Slow-moving items
    MC44 - Inventory turnover
    LIS Reports
    MC.2 - Receipts/issues
    MC.3 - Inventory turnover
    Regards

  • Is there a way to get photos off of a thumb drive onto something that can be uploaded to the ipad. I am doing away with my windows systems and using the ipad exclusively?

    is there a way to get photos off of a thumb drive onto something that can be uploaded to the ipad. I am doing away with my windows systems and using the ipad exclusively?

    iPad Photo Recovery: How to Recover Deleted Photos
    http://www.iskysoft.com/iphone-data-recovery-mac/ipad-photo-recovery.html
    How to Restore Lost or Deleted Files from iPad
    http://www.iphone-ipad-recovery.com/recover-ipad-mini-files.html
    How to Recover Deleted Files from iPad
    http://www.kvisoft.com/tutorials/recover-deleted-files-from-ipad.html
    How to Recover Photos from iPad
    http://www.ipubsoft.com/idevice-tips/recover-deleted-photos-on-ipad-mini.html
    iSkysoft Free iPhone Data Recovery
    http://www.iskysoft.com/iphone-data-recovery/
    Recover iPhone/iPad/iPod touch lost data, Free.
    Free recover iPhone/iPad/iPod touch lost contacts, photos, videos, notes, call logs and more
    Recover data directly from iPhone or from iTunes backup
    Preview and recover lost iOS data with original quality
    Wondershare Dr.Fone for iOS
    http://www.wondershare.net/data-recovery/iphone-data-recovery.html?gclid=CJT7i9e 6gb4CFcvm7AodbUEAJQ
    Recover contacts, messages, photos, videos, notes, call history, calendars, voicemail, voice memos, reminders, bookmarks and other documents.
    iPad Data Recovery Software (PC & Mac)
    http://www.anysoftwaretools.com/ipad-data-recovery.html
    Jihosoft Mobile Recovery for iOS
    http://www.fonerecovery.com/iphone-data-recovery.html
     Cheers, Tom

  • When I ran the bootcamp assistance for software update I get an error that it can't download from the server

    Install Mac OS X lion fine without any issue
    I'm trying to dual boot Lion and Wind 7 on different HD but when I ran the bootcamp assistance for software update I get an error that it can't download from the server.
    I also try without downloading the software and do the installation but it fail. It seem that this bootcamp is giving problem so I revert back to SN leopard and it does the same. Why can't the bootcamp assistance update the software, is it something that I did wrong or my system is not supporting dual booting.
    Here is my spec
    Apple Mac Pro "Quad Core" 2.66
    Identifiers: Mac Pro - MA356LL/A - MacPro1,1* - A1186

    MacPro1,1 has EFI32 and does not support Windows 7 very well, can't boot 64-bit, can't use all your RAM.
    There have always been trouble and issues, ways around those, but a big PITA too.
    Select CD-ROM Boot
    Select CD-ROM Boot Error Apple
    Nothing to do with Lion actually. Other than downloading drivers from Apple servers has been mostly hit or miss, with miss being 90%.
    I have rebuned the DVD (make a new ISO image using Imgburn etc) but now I just install Windows on PC then move the drive to the Mac. A lot easier.
    Without 64-bit you can't use more than 1.9GB RAM. And you need Windows 7 Pro to use both processors.

Maybe you are looking for

  • Colours on my Iphone screen keep messing up

    My Iphone keeps showing everything in strange colours and sometimes then crashes to a blank screen, this used to only happen when i went on camera but now it happens all the time, whats wrong and how can i fix it?

  • ITunes crashed, CD playback messed up

    Well my problem is that I was importing a CD and on the second song form the CD, iTunes froze up for a while, then crashed. Now my CDs play but its slowed down and when its playing a CD the any type of sound from my computer has that warped effect to

  • Print Job remains in queue even though it prints OK?

    Hello All, I am trying to help a friend of mine setup wireless printing from her Macbook. Unfortunately I don't know very much about Macs and OSX but I am a quick learner The setup: Virgin Media Cable Modem -> connected (RJ45) to a Wireless Linksys C

  • DSP filter problem in modifying the Oscilloscope

    The hardware and software I am using are: LabVIEW: 5.1.1 DAQ device: PCI-MIO-16XE-50 VI programs: 2 Channel Oscilloscope(sample VI) I want to modify the function of the sample VI of 2 Channel Oscilloscope to simulate the AC-GND-DC function of Real Os

  • Data look like coupled

    Hi, I'm trying to collect data from 4 different channels by using USB-6259 BNC and LabView 2009. When I try to collect them through a DAQ assistant, if there is an input from one channel (say channel 0), the data from different channels are also chan