Level

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

Level Values

 

SIS Database Value

Astra Schedule Value

AdCourseLevel.AdCourseLevelId

LevelSisKey

AdCourseLevel.Code

LevelName

AdCourseLevel.Descrip

LevelDescription

'true' AS

LevelIsActive

XML

 

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

<!--

 *

 * CampusVueLevelImport.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 Level 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 (Level) Data -->                        

                 <Source name="Levels" endPoint="PrimarySIS" xsd="file:\\SIS\LevelSpokeData.xsd">

                         

                         <Sql>

                                 <![CDATA[

SELECT

                 AdCourseLevelId AS LevelSisKey,

                 Code AS LevelName,

                 Descrip AS LevelDescription,

                 'true' AS LevelIsActive

FROM        AdCourseLevel

                                 ]]>

                         </Sql>

                         <Schema entityName="Level" groupName="Levels"/>

                 </Source>

 

 

   </Sources>

 

   <Phases>

         <Phase name="ImportLevels">

 

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

                 <Fetch ref="Levels"/>

 

                 <Target endPoint="Astra">

                   <AstraEnvironment>

         <Hub className="LevelHub">

           <Reader ref="Levels"/>

         </Hub>

                   </AstraEnvironment>

                 </Target>

                 

           </Phase>

         

   </Phases>

 

 </Pipeline>

</ATE>

 

Page url: ?campusvue_level.htm