© 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 - TPSENStudent

TPSENStudent.GetXmlSENNeedTypeCategories()

Gets all SENNeed Type Categories stored in SIMS MIS. Sample output from this interface is shown below

Output

<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<SENNeedTypeCategories>
  <SENNeedTypeCategory>
    <SENNeedTypeCategoryID>2</SENNeedTypeCategoryID>
    <Code>AUT</Code>
    <Description>Autistic Spectrum Disorder(2)</Description>
    <DisplayOrder>0</DisplayOrder>
    <Active>F</Active>
  </SENNeedTypeCategory>
<SENNeedTypeCategories>

TPSENStudent.GetXmlSENNeedTypes()

Gets all SENNeed Types stored in SIMS MIS. Sample output from this interface is shown below 

<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<SENNeedTypes>
  <SENNeedType>
    <SENNeedTypeID>4</SENNeedTypeID>
    <Code>BS</Code>
    <Description>Behavioural &amp; Social</Description>
    <DisplayOrder>0</DisplayOrder>
    <Active>F</Active>
    <SENNeedTypeCategoryID>5</SENNeedTypeCategoryID>
  </SENNeedType>
<SENNeedTypes>

TPSENStudent.GetXmlSENNeeds()

This method gets all the SEN Needs stored against all students in the system. Sample output from this interface is show

TPSENStudent.GetXmlSENNeeds(int personId)

This method will get the SENNeeds of the Student Id passed as parameter. Sample output from this interface is shown belown below

<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<SENNeedStudents>
  <SENNeedStudent>
    <SENNeedID>66</SENNeedID>
    <PersonID>5253</PersonID>
    <Ranking>1</Ranking>
    <SENNeedType>Specific Learning Difficulty</SENNeedType>
    <SENNeedTypeID>23</SENNeedTypeID>
    <description>Description for :Student has Learning Difficulty</description>
  </SENNeedStudent>
</SENNeedStudents>

TPSENStudent.GetXmlSENReviewStatuses ()

This method gets all the SENReview Statuses stored in SIMS System. Sample output from this interface shown below

?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<SENReviewStatuses>
  <SENReviewStatus>
    <SENReviewStatusID>5</SENReviewStatusID>
    <Code>NOTSPEC</Code>
    <Description>Not Specified</Description>
    <DisplayOrder>1</DisplayOrder>
    <Active>T</Active>
  </SENReviewStatus>
  <SENReviewStatus>
    <SENReviewStatusID>1</SENReviewStatusID>
    <Code>PLND</Code>
    <Description>Planned</Description>
    <DisplayOrder>2</DisplayOrder>
    <Active>T</Active>
  </SENReviewStatus>
<SENReviewStatuses>

TPSENStudent.GetXmlSENReviewTypes ()

This method returns all SENReview Types stored in SIMS system. Sample output from this interface is shown below

<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<SENReviewTypes>
  <SENReviewType>
    <SENReviewTypeID>1</SENReviewTypeID>
    <Code>ANN</Code>
    <Description>Annual</Description>
    <DisplayOrder>1</DisplayOrder>
    <Active>T</Active>
  </SENReviewType>
<SENReviewTypes>

TPSENStudent.GetXmlSENReviews ()

This method returns all SEN Reviews data for all students in SIMS System. Sample output from this interface is shown below

TPSENStudent.GetXmlSENReviews (int personId)

This method returns SEN Review data for student whose id has been passed as parameter. Sample output from this interface is shown below

Output

<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<SENReviewStudents>
  <SENReviewStudent>
    <SENReviewTypeID>1</SENReviewTypeID>
    <SENReviewStatusID>3</SENReviewStatusID>
    <SENStatusID>2091</SENStatusID>
    <Venue>Green Abbey School</Venue>
    <Comments>Testing Review SEN</Comments>
    <ReviewID>76</ReviewID>
    <PersonID>5253</PersonID>
    <StartDate>2008-05-27T12:07:00</StartDate>
    <EndDate>2008-05-27T13:07:00</EndDate>
  </SENReviewStudent>
</SENReviewStudents>

TPSENStudent.GetXmlGiftedTalentedTypes ()

This method returns all Gift Talented Types from SIMS System. Sample output from this interface is shown below

<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<GiftedTalentedTypes>
  <GiftedTalentedType>
    <GiftedTalentedTypeID>1</GiftedTalentedTypeID>
    <Code>ENG</Code>
    <Description>English</Description>
    <DisplayOrder>1</DisplayOrder>
    <Active>T</Active>
  </GiftedTalentedType>
<GiftedTalentedTypes>

TPSENStudent.GetXmlGiftedTalentedStudents ()

This method returns all students who have Gift Talented set in SIMS System. Sample output from this interface is shown below

TPSENStudent.GetXmlGiftedTalentedStudents (int studentId)

This method returns get information of Gifted/Talented for the studentId passed as parameter.  Sample code and output from this interface is shown below

Example

TPSENStudent senInfo = new TPSENStudent();
string data = senInfo.GetXmlGiftedTalentedStudents(6420);

Output

<?xml version="1.0" encoding="iso-8859-1" standalone="yes"?>
<GiftedTalentedStudents>
  <GiftedTalentedStudent>
    <GiftedTalentedID>19</GiftedTalentedID>
    <PersonID>6420</PersonID>
    <StartDate>2009-11-02T00:00:00</StartDate>
    <EndDate>2010-01-30T00:00:00</EndDate>
    <PersonD>6420</PersonD>
    <GiftedTalentedTypeID>2</GiftedTalentedTypeID>
    <Comments>Good in Algebra</Comments>
  </GiftedTalentedStudent>
</GiftedTalentedStudents>

 

 

 

SIMS 7 RESOURCES

Related resources for SIMS 7