List of Contributions

Mohammad Moula

Contact Details

My Content

1 to 19 of 19 total
Posted By Mohammad Moula 08-23-2023 17:06
Found In Egroup: Maximo Open Forum
\ view thread
Hello all, I developed an application linked with an object "ZZAMSACTIONS" and I create an "Automation script with object lanch point - After save event). When the user click on save button of the application the record is saved but two things happening: 1- Save button still show up as it is ...
Posted By Mohammad Moula 07-18-2023 05:14
Found In Egroup: Maximo Open Forum
\ view thread
Hello all, I developed a script to either update an existing timesheet or add a new period of timesheet. In the script I convert all dates attributes into a string before to use them in the Set Where statement. BTY, the script is working but at some point generate the following error because of "Adding ...
Posted By Mohammad Moula 07-11-2023 04:40
Found In Egroup: Maximo Open Forum
\ view thread
Hello all, Following is a script that I developed to fetch the a certain records using SQL and then I want to read record by record to the end of result set "RS". I have a problem that I do not get any error but there is no impact of the process as the script does not do any modification. NOTE: When ...
Posted By Mohammad Moula 06-20-2023 15:23
Found In Egroup: Maximo Open Forum
\ view thread
Hello all, I created a single application but I've an issue is that all Text box attributes and the Pushbutton are displayed read only? Why ? #Administration #Customizations #EverythingMaximo #Integrations #MaximoUserGroups ------------------------------ Mohammad Moula eSolution ----------- ...
Posted By Mohammad Moula 06-14-2023 02:59
Found In Egroup: Maximo Open Forum
\ view thread
Thanks for help,Can you rewrite the statement to be more clear for me. Can make space between the sigle quote & double quote?
Posted By Mohammad Moula 06-14-2023 01:42
Found In Egroup: Maximo Open Forum
\ view thread
Well, Your statement dealing with an attributes and it works with me. But, what I want is to use a Literal variables in SetWhere ?? Thanks Steven for help ------------------------------ Mohammad Moula eSolution ------------------------------
Posted By Mohammad Moula 06-08-2023 07:04
Found In Egroup: Maximo Open Forum
\ view thread
The above picture is for a "Table Control" containing data from an object "ZZAMSTIMECARD" , so each column is an attribute from the main object. My question is how do I clear this table from the content after saving ? Note: I want the table show up empty after saving as it is started empty by choosing ...
Posted By Mohammad Moula 06-07-2023 06:14
Found In Egroup: Maximo Open Forum
\ view thread
So, Well, what about if I have two "Push buttons" and I'am calling an automation script with an action point. How do I distinguish from which push button the script is called ? Because each one of them will perform a different process. Thanks
Posted By Mohammad Moula 06-07-2023 06:05
Found In Egroup: Maximo Open Forum
\ view thread
Thanks for help , problem is resolved
Posted By Mohammad Moula 06-07-2023 05:36
Found In Egroup: Maximo Open Forum
\ view thread
Hello all, As the above picture there is a table control containing data Some records are selected through the check box which is represent the "ID" record. The question is how do I know in the automation script which data record is selected ? Thanks in advance #Customizations #EverythingMaximo #Integrations ...
Posted By Mohammad Moula 06-07-2023 03:30
Found In Egroup: Maximo Open Forum
\ view thread
Hello all, I am using "Image Control" only in the application designer and not "Image Record" just to clarify. The image that I am placing it is JPG and it is placed in: \applications\maximo\maximouiweb\webmodule\webclient\images Of course we redeploy the .EAR and restart the server but still ...
Posted By Mohammad Moula 06-05-2023 16:47
Found In Egroup: Maximo Open Forum
\ view thread
Hello all, I built an application without "LIST" tab. Only I've the Main tab, but when the user comes to the application he founds all attributes in screen are read only ??? Can anyone explain why ? And how I can resolve it. Any help much appreciated. Thanks 🙏 #Administration ...
Posted By Mohammad Moula 06-05-2023 05:40
Found In Egroup: Maximo Open Forum
\ view thread
As shown above , the "Department" textbox has a control ID, and I want to get the value of it through this control ID within the automation scrip ? Any help much appreciated. #Customizations #Integrations #MaximoApplicationSuite #MaximoUserGroups ------------------------------ Mohammad Moula eSolution ...
Posted By Mohammad Moula 05-31-2023 13:10
Found In Egroup: Maximo Open Forum
\ view thread
Yes, I want to display the timesheet into the table for specific employee and pre-determined period. So, The authorized person can edit the timesheet and to do the required changes then to save it back. Thank's
Posted By Mohammad Moula 05-31-2023 01:11
Found In Egroup: Maximo Open Forum
\ view thread
Hello all, As the above picture, I want the user to enter three required attributes (Employee no, Period From, Period To) and then to click on that push button to load the data into the custom table. - The main Object of the application and the custom table = ZZAMSTIMECARD - I already created an action ...
Posted By Mohammad Moula 05-25-2023 00:46
Found In Egroup: Maximo Open Forum
\ view thread
mTS=mbo.getMboSet("$CURTIMESHEET","VACTIMESHEET","ts_date=:VACATION_START and zzemployeeno=:VACTIMESHEET") How do I make VACATION_START or TS_DATE is formatted in this statement ? Can I use the SimpleDateFormat ? using ( from java.text import SimpleDateFormat ) ? so I want both formatted "dd/MM/yyyy" ...
Posted By Mohammad Moula 05-25-2023 00:42
Found In Egroup: Maximo Open Forum
\ view thread
Yes, when I changed the relationship name to be as the object name it works fine. Thanks a lot
Posted By Mohammad Moula 05-24-2023 06:21
Found In Egroup: Maximo Open Forum
\ view thread
Hello, mTS = mbo.getMboSet("VACTIMESHEET") mVacstart = mbo.getDate("VACATION_START") mEmpno = mbo.getString("ZZEMPLOYEENO") I need to have setWere statement to search for a record in mTS object using the following conditions: - TS_DATE = mVacstart - ZZEMPLOYEENO = mEmpno any help will be much appreciated ...
Posted By Mohammad Moula 05-23-2023 06:39
Found In Egroup: Maximo Open Forum
\ view thread
Hello, I have an automation script based on Object lanuch point "ZZAMSVACTRANS" object. While "ZZAMSVACTRANS" has a relationship with "ZZAMSTIMECARD" object through a named relation "VACSHEET". Now I want to get two attributes from current object "ZZAMSVACTRANS" which are a string attribute ( "ZZEMPLOYEENO") ...