UK
· SAP - ABAP, FICO, PP, QM, MM, APO, WM , XI (6 yrs – 10 yrs)
· Program/Project Managers ( SAP) (8 yrs – 14 yrs)
For UK opportunities, mail the suitable profiles mentioning the “Skills/yrs of experience”
in the subject line to Santosh_Basarkar@mahindrasatyam.com
US
· Sapiens Emerge on Mainframes, VSAM, Cobol (exp. - 5 yrs)
· Clarity, Clarity PPM, Primavera, PMP (exp. - 5 yrs)
· SQL, COBOL, IBM iSeries/AS400 (exp. – 3yrs to 7 yrs)
· CGI Perl Development, Shell Scripting, UNIX, DHTML, XM (exp. - 5 yrs)
· UNIX shell(s) scripting,Perl, XML (exp. - 5 yrs)
· C#, Agile(Scrum), WPF, WCS,LINQ (exp. - 5 yrs)
· Cognos Developer, Data Manager (exp. - 5 yrs)
· Fatwire, J2EE (exp. - 5 yrs)
· Documentum, Livelink (exp. - 5 yrs)
· MES, Industrial Automation, MES-ERP Integrations (exp. - 5 yrs)
· Lombardi (exp. - 5 yrs)
· Webmethods Developer (exp. - 5 yrs)
· Websphere Server (exp. - 5 yrs)
· Sharepoint Admin (exp. - 5 yrs)
· Documentum, Livelink (exp. - 5 yrs)
For US opportunities, please do mail the relevant suitable profiles mentioning the “Skills/Yrs of experience” in the subject line to Rajasekhar_Goud@mahindrasatyam.com.
Referal mail id : krishna_sumanth@satyam.com
All the messages below are just forwarded messages if some one feels hurt about it please add your comments we will remove the post.Host/author is not responsible for these posts
Showing posts with label required. Show all posts
Showing posts with label required. Show all posts
Friday, August 6, 2010
Tuesday, July 21, 2009
how to make a field mandatory or required in maximo
Field Level Class
For example you want to make a SerialNum field in Asset Screen mandatory based on some requirement we need to modify in your specific class
getMboValue("SERIALNUM").SetRequired(true);
Automation Script
Similarly below script can be used to make a field required using Automation script.
from psdi.util.logging import MXLogger
from psdi.util.logging import MXLoggerFactory
from psdi.mbo import MboConstants
logger = MXLoggerFactory.getLogger("maximo.script");
logger.debug("==================== MandatoryAUTOSCRIPT START =====================")
mbo.setFieldFlag("SERIALNUM",MboConstants.REQUIRED, True)
logger.debug("==================== MandatoryAUTOSCRIPT END=====================")
For example you want to make a SerialNum field in Asset Screen mandatory based on some requirement we need to modify in your specific class
getMboValue("SERIALNUM").SetRequired(true);
Automation Script
Similarly below script can be used to make a field required using Automation script.
from psdi.util.logging import MXLogger
from psdi.util.logging import MXLoggerFactory
from psdi.mbo import MboConstants
logger = MXLoggerFactory.getLogger("maximo.script");
logger.debug("==================== MandatoryAUTOSCRIPT START =====================")
mbo.setFieldFlag("SERIALNUM",MboConstants.REQUIRED, True)
logger.debug("==================== MandatoryAUTOSCRIPT END=====================")