The following sql will create the cdw view from CDA table Cda.PathwayRequirementCourseMapping.
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[Cdw].[PathwayRequirementCourseMapping_v]')) EXEC dbo.sp_executesql @statement = N' CREATE VIEW [Cdw].[PathwayRequirementCourseMapping_v] AS SELECT x.PathwayRequirementCourseMappingID, x.PathwayRequirementID, x.CourseCode, x.IsEvaluatedMarkEligible, x.LastModifiedDateTime, x.IsDeleted, CdwRowVersion = x.LastUpdateRowVersion FROM cda.PathwayRequirementCourseMapping x '