© 2018 Capita Business Services Ltd. All rights reserved.

Capita Education Software Solutions is a trading name of Capita Business Services Ltd. Our Registered office is 30 Berners Street, London, W1T 3LR and our registered number is 02299747. Further information about Capita plc can be found in our legal statement.

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>