SIMS 7 - HR & Payroll Export API

The following partner API is available and is intended to give a snapshot of the HR data in SIMS with a view to feeding the payroll system.

 

Please note that this API is not a direct import as far as we are aware for any particular HR system.

 

if (SIMSInterface.LoginHelper.SIMSlogin(".", "engga", "blacka", "abcd"))
{
                SIMS.Processes.TPPayroll tpp = new SIMS.Processes.TPPayroll();
                System.Xml.XmlDocument d = new System.Xml.XmlDocument();
                d.InnerXml = tpp.GetSalaryDetails(DateTime.Today);
                d.Save(@"c:\temp\staffexport.xml");
}

 

Example File: <Click Here>