Student Status

  Previous topic Next topic JavaScript is required for the print function Mail us feedback on this topic! Mail us feedback on this topic!  

Student Status Values

 

SIS Database Value

Astra Schedule Value

sySchoolStatus.sySchoolStatusId

SisKey

sySchoolStatus.rtrim(Code)

StudentStatus

sySchoolStatus.rtrim(Descrip)

Description

sySchoolStatus.Active

IsActive

XML

 

<?xml version="1.0" encoding="utf-8" ?>

<!--

 *

 * CampusVueStudentStatusImport.xml

 * Copyright (C) 2006-2009, Ad Astra Information Systems, LLC.

 * All Rights Reserved

 *

 * Note: This spoke file requires an entry in the SystemSetting table with KeyName=PrimarySisConnectionString

-->

<ATE xmlns="http://aais.com/schema/7.4.0/ATE/ATE"

    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"

    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"

    xmlns:soap12="http://www.w3.org/2003/05/soap-envelope"

    version="2.0" jobType="Import" validMode="Batch">

 

 <Summary>

   <![CDATA[Generic CampusVue MsSql Student Status Import.]]>

 </Summary>

 <JobParameters>

   <JobParameterGroup caption="CampusVue Database Settings">

     <JobParameter name="SISUser" caption="User Id"/>

     <JobParameter name="SISPass" caption="Password" password="true"/>

   </JobParameterGroup>

   <SystemParameter name="SisConnectString" settingKey="PrimarySisConnectionString"/>

 

 </JobParameters>

 

 <EndPoints>  

   <DbmsEndPoint name="PrimarySIS" adapterType="MsSql">

     <Parameters>

         <Parameter name="SisConnectString" ref="SisConnectString"/>

       <Parameter name="SISUID" ref="SISUser"/>

       <Parameter name="SISPwd" ref="SISPass"/>

     </Parameters>

     <ConnectionString>

       <![CDATA[${SisConnectString};User Id=${SISUID};Password=${SISPwd};]]>

     </ConnectionString>

   </DbmsEndPoint>

 </EndPoints>

 

 <Pipeline>

 <Sources>

 

                 <!-- Top Level (StudentStatus) Data -->                        

                 <Source name="StudentStatus" endPoint="PrimarySIS">

                         

                         <Sql>

                                 <![CDATA[

SELECT

                 sySchoolStatusId AS SisKey,

                 rtrim(Code) AS StudentStatus,

                 rtrim(Descrip) AS Description,

                 Active AS IsActive

FROM        sySchoolStatus

WHERE Active = 1

                                 ]]>

                         </Sql>

                         <Schema entityName="StudentStatusRecord" groupName="StudentStatuses"/>

                 </Source>

 

 

   </Sources>

 

   <Phases>

         <Phase name="ImportStudentStatus">

 

                 <!-- Top Level (StudentStatus) Source -->                        

                 <Fetch ref="StudentStatus"/>

 

                 <Target endPoint="Astra">

                   <AstraEnvironment>

         <Hub className="StudentStatusImportHub">

           <Reader ref="StudentStatus"/>

         </Hub>

                   </AstraEnvironment>

                 </Target>

                 

           </Phase>

         

   </Phases>

 

 </Pipeline>

</ATE>

 

Page url: ?student_status.htm