SIMS 7 - TPSENStudent
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>
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 & Social</Description>
<DisplayOrder>0</DisplayOrder>
<Active>F</Active>
<SENNeedTypeCategoryID>5</SENNeedTypeCategoryID>
</SENNeedType>
<SENNeedTypes>
This method gets all the SEN Needs stored against all students in the system. Sample output from this interface is show
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>
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>
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>
This method returns all SEN Reviews data for all students in SIMS System. Sample output from this interface is shown below
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>
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>
This method returns all students who have Gift Talented set in SIMS System. Sample output from this interface is shown below
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>