Degree

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

Degree Values

 

SIS Database Value

Astra Schedule Value

AdDegree.AdDegreeID

DegreeSisKey

AdDegree.Code

DegreeName

AdDegree.Descrip

DegreeDescription

'true' AS

DegreeIsActive

XML

 

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

<!--

 *

 * CampusVueDegreeImport.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 Degree 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 (Degree) Data -->                        

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

                         

                         <Sql>

                                 <![CDATA[

SELECT

                 AdDegreeID AS DegreeSisKey,

                 Code AS DegreeName,

                 Descrip AS DegreeDescription,

                 'true' AS DegreeIsActive

FROM        AdDegree

                                 ]]>

                         </Sql>

                         <Schema entityName="Degree" groupName="Degrees"/>

                 </Source>

 

 

   </Sources>

 

   <Phases>

         <Phase name="ImportDegrees">

 

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

                 <Fetch ref="Degrees"/>

 

                 <Target endPoint="Astra">

                   <AstraEnvironment>

         <Hub className="DegreeHub">

           <Reader ref="Degrees"/>

         </Hub>

                   </AstraEnvironment>

                 </Target>

                 

           </Phase>

         

   </Phases>

 

 </Pipeline>

</ATE>

 

Page url: ?campusvue_degree.htm