
Automation Script for Maximo Integration Framework (MIF) - Enterprise Service
In the last Blog I talked about the automation script for Object Structure. Follow the link: https://www.ibm.com/developerworks/community/blogs/a9ba1efe-b731-4317-9724-a181d6155e3a/entry/Automation_Script_for_Maximo_Integration_Framework_MIF?lang=en Now I will show an example and explain all details of an automation script using Enterprise Service. Go to System Configuration => Platform Configuration => Automation Scripts. Click on Select Action=> Create=>Script for Integration. The pop up below will appear for... [More]
|
Automation Script for Maximo Integration Framework (MIF)
Automation Script for Maximo Integration Framework (MIF) is introduced in 7.6 and is a good practice to create and manipulate data. You have the same functionality as the Java Class. But in this case you are not going to lose your class if you upgrade Maximo. Let’s take a look at a simple example. Creating an Automation Script for an inbound Object Structure Go to System Configuration => Platform Configuration => Automation Scripts. Click on Select Action => Create => Script for Integration. You have a couple options... [More]
Tags:  automation_scripting integration autoscript maximo+7.6 integration_framework |
Automation Script : How to make memo field required depending on status to be changed
Do you have a requirement to make the memo field required when status is gonna be changed to specific status? Actually, your requirment may not be done using conditional UI setting. You may need to use automization script or java code in order to achieve your requirement. You can reference below automation script example. The requirment : make the memo field required when status is gonna be changed to 'Approved' in the Change Status Dialog. - Go to the Automation Scripts - Select Action /... [More]
Tags:  automation script #supmax |
Automation Script : How to create a WO from a SR when some condition is satisfied
You may want to create a Work Order(WO) automatically when saving a SR record if a condition for a field is satisfied. Please reference below automation script example. The case: If WOREQUIRED is true when saving a SR record whose assetnum is 11230 , create a WO from that SR. Please follow the steps. 1. Go to the Database Configuration - Open TICKET object - Create the attribute "WOREQUIRED" with YORN type. The default value is set as 0. Apply DB Changes in Admin Mode. 2. Go to the... [More]
Tags:  #supmax maximo script wo sr automation |
Automating the Flight Log Book in Maximo ACM
This blog covers the work that the Maximo Asset Configuration Manager (ACM) team has been doing recently, in particular the last ACM release and the capability for electronic Flight Log Book (eFLB). This is not a user guide, but a brief insight into the approach and how we went about it, so even if you don’t use ACM it will (hopefully) be interesting. The Requirement for Automating the FLB for ACM: The requirement to have an eFLB as part of Maximo ACM was driven by client demand to support the automation of... [More]
|
Automated Scripting: Accessing a Custom [J|P]ython Module Within Your Script
In this quick blog we'll discuss how to access a custom module from an automation script. Often in the script application we create long and complicated scripts which are embedded inside a multiline textbox. Maintaining the bulk of your scripts on your file system will allow code modularity as well as allow for maintenance and deployment via an scm system such as RTC or git. On our system we will place a simple file called test.py under C:\myLibrary with the contents: # Answer to the Ultimate Question of Life, the Universe, and... [More]
Tags:  import maximo custom library jython python scripting autoscript automation |
Automate billing process with Maximo for Service Providers
Maximo® for Service Providers 7.5.3 introduced the feature to automate the billing of price schedules, which means no need of human interaction to create bill batches and copy transactions. With this function you can choose the frequency of billing generation and group these b ill batches by order number, customer cost center, customer PO, or reporting user, expanding the possible ways to organize customer billings. Take a look at these two new topics to learn how to use this function: Configuring Automated Billing... [More]
Tags:  industry_solution add-on providers maximo industry billing crontask service asset solution provider management ibmeam sp |
Auto-Locate hierarchy in Maximo Spatial 7.5
Did you know that Auto-Locate hierarchy has been enhanced in Maximo Spatial 7.5. The text below describes the order and hierarchy of processing data in Maximo records that can possible generate a map position. The objective is simple. There is not always a direct link between the Maximo and GIS feature record. So rather than not display something in the map, try to find some information in the record that has a direct link to an object in the map or that can be geocoded using an address or GPS coordinates. This ultimately results in a better... [More]
Tags:  auto-locate maximo spatial |
Audit Tracking in Maximo
Over the last few years I've talk to a lot of Maximo users and implementers and one of the most FAQ often asked is, "How can we keep track of attribute changes?" It's very clear that Maximo users value their data and want an ability to keep track of changes made to attributes they love the most. By default there are many type of changes which are already tracked historically, like the history of an Asset moving from one location to another or the status changes of a Work Order but if a customer adds new attributes or wants to track... [More]
Tags:  faq maximo attribute v7 changes ibmeam v75 audit |
Audit Locations Assets using RFID
When using RFID to audit assets at a location can be done using Maximo Mobile 7.5.1. How can this be done? Can I see who did the audit and when? The first thing you need to do is associate the RFID Tag to the assets. This is done using the attribute MOBRFIDTAG attribute on the asset object. 1) Go To Application Designer 2) Open the Asset application 3) Add a new Text box to the screen 4) In the Text Box Properties add MOBRFIDTAG to the Attribute field ... [More]
Tags:  mobileam mobile rfid #supmax |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146