Advertisement
tumbilandia

BMC ARSystem Remedy

Oct 4th, 2014
351
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 5.96 KB | None | 0 0
  1. 20141004
  2. ----------------------------------------------------------------------
  3.  
  4. ------------------------------------------
  5. * Useful remedy tools
  6. ------------------------------------------
  7. http://remedylegacy.com/tools/
  8. http://soleauthority.net/  -- there are many examples, cool ***
  9. http://missingpiecessoftware.com/
  10. https://communities.bmc.com/community/bmcdn/bmc_atrium_and_foundation_technologies/bmc_remedy_ar_system/content?filterID=contentstatus[published]~objecttype~objecttype[idea]
  11. Birt Reports: Resources -- https://communities.bmc.com/docs/DOC-32513
  12. https://communities.bmc.com/docs/DOC-11739
  13.  
  14. ------------------------------------------
  15. * Web services
  16. ------------------------------------------
  17. - Access Remedy the RESTful way
  18. http://spf13.com/post/soap-vs-rest/
  19. https://communities.bmc.com/docs/DOC-29073
  20.  
  21. ------------------------------------------
  22. * Great Idea's
  23. ------------------------------------------
  24. Mid-Tier v8.1 with ARServer v7.6.04
  25. https://communities.bmc.com/groups/product-ideas
  26. Custom Android App for Field Engineers  -- https://communities.bmc.com/docs/DOC-31524
  27. rMobility….a simple mobile solution where any end user can submit a BMC Remedy request, update, check status and approve via any mobile device -- http://www.raptek.com/rmobility/
  28. Attachments in a Separate Form  -- https://communities.bmc.com/docs/DOC-82
  29. Overlays - use of it for disable some al if-then-else -- https://communities.bmc.com/ideas/1407
  30.  
  31. ------------------------------------------
  32. * Mid-Tier
  33. ------------------------------------------
  34. - cache
  35. ehcache-core-2.0.1.jar
  36. http://ehcache.org/         -- cacheMgr = CacheManager.create("...\\config\\ehcache.xml");
  37. http://www.javablog.fr/javaehcache-a-simple-example-of-use-of-ehcache-2-6-2.html
  38.  
  39. - The Pulse: Mid-Tier Health Check based on Access logs
  40. https://communities.bmc.com/community/bmcdn/bmc_atrium_and_foundation_technologies/bmc_remedy_ar_system/blog/2014/08/05/the-pulse-mid-tier-health-check-based-on-access-logs
  41. https://communities.bmc.com/docs/DOC-32461
  42.  
  43. - Midtier doubt, 2 midtiers one for webservices, another for users
  44. https://communities.bmc.com/thread/116288
  45.  
  46. ------------------------------------------
  47. * Useful links
  48. ------------------------------------------
  49. https://docs.bmc.com/docs/display/public/itsm80/PDFs
  50. http://www.bmc.com/blogs/
  51. http://www.mail-archive.com/[email protected]/
  52. http://ars-action-request-system.1.n7.nabble.com/
  53.  
  54. ------------------------------------------
  55. * ARSystem Server
  56. ------------------------------------------
  57. - ar.conf
  58. Yes, the Max-Log-History parameter works with the Max-Log-Size parameter to store versions of files (up to 999 I believe) for server side logs listed on the Server Information form -> Log File tab.
  59. see algo logrotate unix command - http://www.thegeekstuff.com/2010/07/logrotate-examples/
  60. <Default-Order-By: T>
  61.  
  62. Hidden and Undocumented Configuration Settings - https://communities.bmc.com/docs/DOC-20894
  63.  
  64. - debug
  65. Workflow debugger - The AR System Workflow Debugger is a command-line utility that enables AR System application developers to debug workflow interactively.
  66. 183985-Opt-Tshoot-7604.pdf (p/84)
  67.  
  68. - https://communities.bmc.com/ideas/3542
  69. Field Type - Field ID
  70. Here is our scheme:
  71. Range Type  Starting    Ending  # of Fields
  72. Dynamic Group Fields    60001   N/A
  73. Data Fields (Saved) 600010001   600016999   6998
  74. Shared Data Fields (Saved)  600017001   600018999   1998
  75. Temp Fields (Display Only)  600019001   600019699   698
  76. Shared Temp Fields (Display Only)   600019701   600019999   298
  77. Trim/page/button/column 600020001   600026999   6998
  78. Shared Buttons Trim/page/button/column  600027001   600029999                   2998
  79.  
  80. - more fieldid -- Field ID Best Practices
  81. https://communities.bmc.com/docs/DOC-16775
  82.  
  83. - Plug-Ins
  84. https://communities.bmc.com/ideas/2137
  85. http://docs.bmc.com/docs/display/ars81/Creating+plug-ins+to+extend+BMC+Remedy+Developer+Studio
  86. c:\BMC\client\ARDevelop\DeveloperStudio\files\SamplePlugins-win32.win32.x86.zip\
  87.  
  88. ------------------------------------------
  89. * FAQ
  90. ------------------------------------------
  91. - AREA LDAP vs ARDBC LDAP -- http://jxplorer.org/
  92.  
  93. AREA LDAP is for authentication - it allows you to use an LDAP server to verify the passwords of your users - an Active Directory   system for example.
  94.  
  95. ARDBC LDAP allows you to present information from an LDAP server in a Remedy form.  For example you could create a form listing all of the users in your corporate domain from an Active Directory server running LDAP.
  96.  
  97. - how to decrypt the current password field alone
  98. You can't because the user passwords are encrypted using a one-way hash - they can't be decrypted.  You can use the PROCESS command Application-Confirm-Password to validate a string provided by the user against the current password.
  99.  
  100. - How discover client's IP or hostname? -- https://communities.bmc.com/thread/23268
  101.  
  102. ------------------------------------------
  103. * Logging
  104. ------------------------------------------
  105. - web services
  106. By default the Web Services plugin in 7604 uses the Java plugin server, not the C one as in previous versions. You need to edit the log4j_pluginsvr.xml file in the pluginsvr directory and set the log level for the plugin.  You'll need to add something like this
  107. <logger name="com.bmc.arsys.ws.plugin.WSPlugin">   
  108. <level  value="debug" />
  109. </logger>  
  110. Then you should see the SOAP data logged in the arjavaplugin.log file.
  111.  
  112. - Disable Email Engine Logging to Form
  113. https://communities.bmc.com/ideas/1758
  114. https://communities.bmc.com/docs/DOC-22528
  115.  
  116. ------------------------------------------
  117. * SQL
  118. ------------------------------------------
  119. - Remedy Regular Form Record Counts
  120. select a.schemaid,
  121.        a.name,
  122.        (select ut.num_rows from user_tables ut where ut.table_name = 't' || a.schemaid) t_rows,
  123.        (select ut.num_rows from user_tables ut where ut.table_name = 'h' || a.schemaid) h_rows,
  124.        (select ut.num_rows from user_tables ut where ut.table_name = 'b' || a.schemaid) b_rows
  125.   from arschema a
  126.  where a.schematype = 1
  127.    and schemaid = 299
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement