Баум Виталий Sr. SharePoint Developer Conteq

Size: px
Start display at page:

Download "Баум Виталий Sr. SharePoint Developer Conteq"

Transcription

1 Баум Виталий Sr. SharePoint Developer Conteq

2

3

4

5

6

7 Office Applications Design Tools SharePoint

8

9 Описывает схему внешних данных и правила взаимодействия с Office и SharePoint *так же известный как BDC Entity (Web Service, DB,.Net object, LOB system, Web 2.0 service, etc.) Решения на базе BCS и внешних типов содержимого позволяют интегрировать данные в SharePoint и Office

10

11 БЕЗ КОДА* С КОДОМ Power User Developer Advanced Developer

12 Просто БЕЗ КОДА* Требует навыков Создание повторно используемых компонент Сложно С КОДОМ Power User Developer Advanced Developer

13 Работа с данными во внешних списках Подключение внешних списков к Outlook, SPW Просто Кастомизация Формы InfoPath Риббон и панель задач Outlook Word (QuickParts) Workflow Страницы вебчастей Требует навыков Создание повторно используемых компонент Сложно БЕЗ КОДА* С КОДОМ SharePoint Designer SharePoint SDK Power User Developer Advanced Developer

14 Разработка на одной машине Создание используемых типов содержимого для различных источников данных, используя.net Расширение и создание элементов управления для Office и SharePoint Клиент-Серверная среда Создание приложений для подключения к существующим источникам данных (без кода) (WCF, Sql Server и.net типы) Настройка элементов управления и форм InfoPath Developer Power User Visual Studio SharePoint Designer SDK Создание WSP Import & Configure IT Admin Production Environment Export, Import & Configure Live Connection SharePoint Server (Shared, Dev/Prod)

15 Возможности SharePoint Designer 2010 Visual Studio 2010 SDK Создание Внешних Типов Содержимого и Профильных страниц Дизайнер ECT Интеграция вн. данных в WF Дизайнер Workflow Подключение к существующим WCF/Web Services, Sql Server или.net Подключение к любым данным через.net код Создание внешних списков и форм InfoPath Дизайнер списков и форм Расширения для Office Написание расширений для Office Расширение Outlook Расширение риббона и панели задач Outlook Дополнительные примеры и утилиты

16

17 SharePoint Server Data Aggregation RESTful Sql Database

18 SharePoint Server Office Client Connect to Outlook BCS External Data Cache Data Aggregation Contacts

19 Упаковка и дистрибуция Клиент Office Установка и обновление Включѐн в WSP SharePoint Server Компоненты для SharePoint WSP пакет Импорт

20 Итог Возможности SharePoint Designer 2010 Visual Studio 2010 Соединения К существующим WCF, Sql Server,.Net Assembly К любым источникам данных через.net Assemblies Моделирование Изучение и настройка Создание и публикация Типовые сценарии Ограничения Создание простых моделей и элементов управления (Внешние списки, Outlook, SharePoint Workspace, InfoPath, Поиск, Ассоциации) -Источники данных должны соответствовать требованиям -Дополнительные, пакетные операции -Разнородные сервисы -Связи по внешнему ключу - Создание сложных моделей с учѐтом аггрегации, трансформации и безопасности данных - Расширение базовых возможностей Office через VSTO - Создание элементов управления для Office и SharePoint (Веб-части для BDC) - Визуальный дизайнер только для можелей на основе.net - Различия в установке для Office и SharePoint

21

22

23

24

25

26

27

28

29

30 // get the catalog of entities to work with... BdcService service = SPFarm.Local.Services.GetValue<BdcService>(); IMetadataCatalog catalog = service.getdatabasebackedmetadatacatalog( SPServiceContext.Current);

31 // get the Employee external content type... IEntity entity = catalog.getentity(" "Employees"); // get the filters for the default Finder method IFilterCollection filters = entity.getdefaultfinderfilters(); // if FirstNameTextbox has a value set the filter value... if (FirstNameTextbox.Text!= string.empty) { WildcardFilter filter = (WildcardFilter)filters[0]; filter.value = FirstNameTextbox.Text; }

32 // return the filtered data using the default Finder method... IEntityInstanceEnumerator enumerator = entity.findfiltered(filters, entity.getlobsystem().getlobsysteminstances()[0].value); DataTable table = null; // loop through the data returned while (enumerator.movenext()) { // first time setup the datatable, everytime there after add a row... if (table == null) table = enumerator.current.entityasdatatable; else enumerator.current.entityasdatarow(table); }

33 //Create a new customer model Model customermodel = Model.Create("CustomerModel", true, catalog); //Make a new Customer LobSystem LobSystem awlobsystem = customermodel.ownedreferencedlobsystems.create("customer", true, SystemType.Database); //Make a new AdventureWorks LobSystemInstance LobSystemInstance awlobsysteminstance = awlobsystem.lobsysteminstances.create("adventureworks", true); //Set the connection properties awlobsysteminstance.properties.add("authenticationmode", "PassThrough"); awlobsysteminstance.properties.add("databaseaccessprovider", "SqlServer"); awlobsysteminstance.properties.add("rdbconnection Data Source", "DEV1"); awlobsysteminstance.properties.add("rdbconnection Initial Catalog", "Customers"); awlobsysteminstance.properties.add("rdbconnection Integrated Security", "SSPI"); awlobsysteminstance.properties.add("rdbconnection Pooling", "true");

34 <LobSystemInstances> <LobSystemInstance Name="AdventureWorksWS"> <Properties> <Property Name="WcfAuthenticationMode" Type="System.String">PassThrough</Property> <Property Name="WcfEndpointAddress" Type="System.String"> ty> <Property Name="ShowInSearchUI" Type="System.String"></Property> </Properties> </LobSystemInstance> </LobSystemInstances>

35 //Create a new Customer Entity Entity customerentity = Entity.Create("Customer", "AdventureWorks", true, new Version(" "), 10000, CacheUsage.Default, awlobsystem, customermodel, catalog); //Set the identifier - CustomerID column customerentity.identifiers.create("customerid", true, "System.Int32");

36

37

38

39

40

41

42

43

44

45 [OperationContract] IEnumerable<Employee> GetEmployeesPaged( int startrownumber, int pagecount, string sortcolumn, string sortdir);

46 <View> <Method Name="GetEmployeesPaged"> <Filter Name="FilterRowNum" Value="{dvt_firstrow}"/> <Filter Name="FilterPageCount" Value="30"/> <Filter Name="FilterSortColumn" Value="{dvt_sortfield}"/> <Filter Name="FilterSortDir" Value="{dvt_sortdir}"/> </Method> <RowLimit Paged="TRUE">30</RowLimit> </View>

47

48

49

50

51

Professional SharePoint 2010 Development

Professional SharePoint 2010 Development Professional SharePoint 2010 Development Rizzo, T ISBN-13: 9781118131688 Table of Contents INTRODUCTION xxv CHAPTER 1: INTRODUCTION TO SHAREPOINT 2010 1 What s New in the SharePoint Platform and Tools

More information

Microsoft. Inside Microsoft. SharePoint Ted Pattison. Andrew Connell. Scot Hillier. David Mann

Microsoft. Inside Microsoft. SharePoint Ted Pattison. Andrew Connell. Scot Hillier. David Mann Microsoft Inside Microsoft SharePoint 2010 Ted Pattison Andrew Connell Scot Hillier David Mann ble of Contents Foreword Acknowledgments Introduction xv xvii xix 1 SharePoint 2010 Developer Roadmap 1 SharePoint

More information

MCSE Mobility Получен в MCSE Cloud Platform & Infrastructure Получен в 2018 MCSA Linux on Azure MCSE MCSE. MCSD App Builder

MCSE Mobility Получен в MCSE Cloud Platform & Infrastructure Получен в 2018 MCSA Linux on Azure MCSE MCSE. MCSD App Builder МОБИЛЬНОСТЬ 10 Mobility ОБЛАЧНАЯ ПЛАТФОРМА И ИНФРАСТРУКТУРА Server 2012 Server 2016 Cloud Platform & Infrastructure MCSA Linux on Azure MCSA Cloud Platform ПРОИЗВОДИТЕЛЬНОСТЬ Server 2012 or 2016 MCSA Office

More information

Tooling External Content Type Associations with SharePoint Designer 2010

Tooling External Content Type Associations with SharePoint Designer 2010 Tooling External Content Type Associations with SharePoint Designer 2010 Why read this? This document is intended for BCS Power Users who want to create associations between external content types declaratively

More information

MCSE Mobility Получен в MCSE Cloud Platform & Infrastructure Получен в 2017 MCSE MCSE. MCSD App Builder Получен в 2017

MCSE Mobility Получен в MCSE Cloud Platform & Infrastructure Получен в 2017 MCSE MCSE. MCSD App Builder Получен в 2017 МОБИЛЬНОСТЬ 10 Mobility ОБЛАЧНАЯ ПЛАТФОРМА И ИНФРАСТРУКТУРА Server 2012 Server 2016 MCSA Linux on Azure Cloud Platform & Infrastructure MCSA Cloud Platform ПРОИЗВОДИТЕЛЬНОСТЬ Server 2012 or 2016 MCSA Office

More information

Подключение ультразвукового датчика HC-SR04

Подключение ультразвукового датчика HC-SR04 Подключение ультразвукового датчика HC-SR04 Датчик HC-SR-04 состоит из передатчика, приемника и схемы управления. Для наиболее оптимального режима поиска препятствий датчик устанавливается на сервомотор

More information

Business Data Catalog (BDC), 11, 21 business intelligence, 11 buttons adding to Ribbon interface, 37 making context-sensitive, 126

Business Data Catalog (BDC), 11, 21 business intelligence, 11 buttons adding to Ribbon interface, 37 making context-sensitive, 126 Index A Access, RAD with. See Rapid Application Development Access Services, 22 publishing to, 295 96 RAD with. See Rapid Application Development ACTIONS file, 249 actions panes, custom, 56 58 Actual Cost

More information

81225 &SSWSSS Call Us SharePoint 2010 S:

81225 &SSWSSS Call Us SharePoint 2010 S: 81225 &SSWSSS Call Us SharePoint 2010 S: +91 93925 63949 Course Objectives At the end of the course, students will be able to:! Understand IIS Web Server and hosting websites in IIS.! Install and configure

More information

INTRODUCTION TO THE BUSINESS DATA CATALOG (BDC) IN MICROSOFT OFFICE SHAREPOINT SERVER 2007 (MOSS)

INTRODUCTION TO THE BUSINESS DATA CATALOG (BDC) IN MICROSOFT OFFICE SHAREPOINT SERVER 2007 (MOSS) INTRODUCTION TO THE BUSINESS DATA CATALOG (BDC) IN MICROSOFT OFFICE SHAREPOINT SERVER 2007 (MOSS) BY BRETT LONSDALE, MCSD.NET, MCT COMBINED KNOWLEDGE WWW.COMBINED-KNOWLEDGE.COM BRETT@COMBINED-KNOWLEDGE.COM

More information

Библиотека БГУИР. Web-based Software for Automating Development of Knowledge Bases on the Basis of Transformation of Conceptual Models

Библиотека БГУИР. Web-based Software for Automating Development of Knowledge Bases on the Basis of Transformation of Conceptual Models Web-based Software for Automating Development of Knowledge Bases on the Basis of Transformation of Conceptual Models Dorodnykh N.O. Matrosov Institute for System Dynamics and Control Theory, Siberian Branch

More information

resources, 56 sample questions, 3 Business Intelligence Development Studio. See BIDS

resources, 56 sample questions, 3 Business Intelligence Development Studio. See BIDS Index A Access Services, 178 86 actual metrics, 314, 350, 355 Ad-Hoc Reporting, 155 aggregate transformation, 33 Allow External Data Using REST, 253 Analytic Chart reports, 318, 368, 371 74 Analytic Grid

More information

Как развернуть кампусную сеть Cisco за 10 минут? Новые технологии для автоматизации и аналитики в корпоративных сетях Cisco.

Как развернуть кампусную сеть Cisco за 10 минут? Новые технологии для автоматизации и аналитики в корпоративных сетях Cisco. The image part with relationship ID rid2 was not found in the file. The image part with relationship ID rid2 was not found in the file. Как развернуть кампусную сеть Cisco за 10 минут? Новые технологии

More information

SharePoint Online and Azure Integration

SharePoint Online and Azure Integration SharePoint Online and Azure Integration Justin Jackson Managing Partner Valorem Consulting Group You manage You manage You manage Types of Cloud Services (On- Premises) Infrastructure (as a Service) Platform

More information

жидкость и пневматика Rectus 86/87/88 Быстроразъемные соединения для термостатирования пресс-форм

жидкость и пневматика Rectus 86/87/88 Быстроразъемные соединения для термостатирования пресс-форм жидкость и пневматика Rectus 8//88 Быстроразъемные соединения для термостатирования пресс-форм 2ow Pressure Mould s INTERNTION 80% of actual size Chart Pressure rop (bar) Pressure rop (bar) Pressure rop

More information

Math-Net.Ru All Russian mathematical portal

Math-Net.Ru All Russian mathematical portal Math-Net.Ru All Russian mathematical portal A. V. Bogdanov, Thurein Kyaw Lwin, Storage database in cloud processing, Computer Research and Modeling, 2015, Volume 7, Issue 3, 493 498 Use of the all-russian

More information

ОБЛАЧНЫЙ ДЕМОЗАЛ. Легко находите KIP Sales, Marketing и технические ресурсы по продукту.

ОБЛАЧНЫЙ ДЕМОЗАЛ. Легко находите KIP Sales, Marketing и технические ресурсы по продукту. LIKE US KIPAMERICA FOLLOW @KIPWIDEFORMAT SUBSCRIBE KIPAMERICANOVI FOLLOW KIPWIDEFORMAT ОБЛАЧНЫЙ ДЕМОЗАЛ Легко находите KIP Sales, Marketing и технические ресурсы по продукту. Просто нажмите любую ссылку.

More information

SHAREPOINT 2007 DEVELOPER S GUIDE TO

SHAREPOINT 2007 DEVELOPER S GUIDE TO SHAREPOINT 2007 DEVELOPER S GUIDE TO Brett Lonsdale Nick Swan MANNING SharePoint 2007 Developer s Guide to Business Data Catalog by Brett Lonsdale and Nick Swan Chapter 1 Copyright 2010 Manning Publications

More information

SharePoint Server 2016 Feature Comparison* Accessibility Standards Support Yes Yes. Asset Library Enhancements/Video Support Yes Yes.

SharePoint Server 2016 Feature Comparison* Accessibility Standards Support Yes Yes. Asset Library Enhancements/Video Support Yes Yes. Content Features SharePoint Server 2016 Feature Comparison* Accessibility Standards Support Yes Yes Asset Library Enhancements/Video Support Yes Yes Auditing Yes Yes Auditing & Reporting (e.g. doc edits,

More information

QGIS User Guide. Выпуск QGIS Project

QGIS User Guide. Выпуск QGIS Project QGIS User Guide Выпуск 2.18 QGIS Project 29 December 2017 Оглавление 1 Преамбула 1 2 Элементы 3 2.1 Элементы интерфейса пользователя............................. 3 2.2 Текстовые элементы или клавиатурные

More information

DSL-2640U Wireless ADSL2/2+ 4-port

DSL-2640U Wireless ADSL2/2+ 4-port This product can be set up using any current web browser, i.e., Internet Explorer 6x or Netscape Navigator 7x and up. DSL-2640U Wireless ADSL2/2+ 4-port Ethernet Router Before You Begin Make sure you have

More information

of data is not limited, no matter how much data you upload or access from your servers the connection capacity remains high.

of data is not limited, no matter how much data you upload or access from your servers the connection capacity remains high. Windows vps 1&1 Cloud Infrastructure with VMWare Virtualization: If one hardware component fails, the system automatically switches to another. Is there a backup and recovery solution for my virtual server

More information

Veeam Backup & Replication

Veeam Backup & Replication Veeam Backup & Replication Год/Дата Выпуска: 31.10.2012 Версия: 6.5 Разработчик: Veeam Сайт разработчика: http://www.veeam.com Разрядность: 32bit+64bit Язык интерфейса: Английский Таблэтка: Присутствует

More information

QGIS User Guide. Выпуск QGIS Project

QGIS User Guide. Выпуск QGIS Project QGIS User Guide Выпуск 2.14 QGIS Project 08 August 2017 Оглавление 1 Преамбула 1 2 Элементы 3 2.1 Элементы интерфейса пользователя............................. 3 2.2 Текстовые элементы или клавиатурные

More information

Максим Грамин КРОК. В поисках идеального инструмента

Максим Грамин КРОК. В поисках идеального инструмента Максим Грамин КРОК В поисках идеального инструмента Disclaimer Личное мнение на личном опыте Немного о себе Немного о себе Немного о себе Немного о себе Немного о себе Одинаковые проблемы Версионность

More information

SAP Function Signatures for use with ECS BCS Connector

SAP Function Signatures for use with ECS BCS Connector SAP Function Signatures for use with ECS BCS Connector Theobald Software www.theobald-software.com www.theobald-software.com 1 Entity - BDC Requirements A master entity is needed, which can be selected

More information

Консультант в Miles. Работаю с F# и Демо презентации: https://github.com/object/ AkkaStreamsDemo

Консультант в Miles. Работаю с F# и Демо презентации: https://github.com/object/ AkkaStreamsDemo Консультант в Miles Работаю с F# и C# @ooobject vagif.abilov@mail.com Демо презентации: https://github.com/object/ AkkaStreamsDemo У вас уже может быть опыт работы с...для понимания этого доклада он необязателен!

More information

SHAREPOINT 2007 DEVELOPER S GUIDE TO

SHAREPOINT 2007 DEVELOPER S GUIDE TO SHAREPOINT 2007 DEVELOPER S GUIDE TO Brett Lonsdale Nick Swan MANNING SharePoint 2007 Developer s Guide to Business Data Catalog by Brett Lonsdale and Nick Swan Chapter 10 Copyright 2010 Manning Publications

More information

MOSS Integration with IBM Systems using Microsoft Host Integration Server 2009

MOSS Integration with IBM Systems using Microsoft Host Integration Server 2009 MOSS Integration with IBM Systems using Microsoft Host Integration Server 2009 White Paper Published: January 2010 Applies to: Host Integration Server 2009 Summary: Microsoft Office SharePoint Server 2007

More information

Карта «Кофейные регионы Эфиопии» Коллеги из Trabocca любезно предоставили нам карту кофейных регионов Эфиопии, за что

Карта «Кофейные регионы Эфиопии» Коллеги из Trabocca любезно предоставили нам карту кофейных регионов Эфиопии, за что 19 Февраля 2019 Карта «Кофейные регионы Эфиопии» Коллеги из Trabocca любезно предоставили нам карту кофейных регионов Эфиопии, за что большое им спасибо! Целью создания карты была ощутимая прослеживаемость

More information

Application Lifecycle Management for SharePoint in the Enterprise. February 23, 2012

Application Lifecycle Management for SharePoint in the Enterprise. February 23, 2012 Application Lifecycle Management for SharePoint in the Enterprise February 23, 2012 Agenda Introductions Purpose Visual Studio and Team Foundation Server Provisioning SharePoint Farms Agile with Team Foundation

More information

Advanced Solutions of Microsoft SharePoint Server 2013 Course Contact Hours

Advanced Solutions of Microsoft SharePoint Server 2013 Course Contact Hours Advanced Solutions of Microsoft SharePoint Server 2013 Course 20332 36 Contact Hours Course Overview This course examines how to plan, configure, and manage a Microsoft SharePoint Server 2013 environment.

More information

Advanced Solutions of Microsoft SharePoint 2013

Advanced Solutions of Microsoft SharePoint 2013 Course 20332A :Advanced Solutions of Microsoft SharePoint 2013 Page 1 of 9 Advanced Solutions of Microsoft SharePoint 2013 Course 20332A: 4 days; Instructor-Led About the Course This four-day course examines

More information

5061 : Implementing Microsoft Office SharePoint Server 2007

5061 : Implementing Microsoft Office SharePoint Server 2007 5061 : Implementing Microsoft Office SharePoint Server 2007 Introduction Elements of this syllabus are subject to change. This three-day instructor-led course provides students with the knowledge and skills

More information

Pro SharePoint Solution Development

Pro SharePoint Solution Development fr ;... I; >.-.'.: C ; v '..f] ml 'f:*i: id H.> ' '., fi.- ;.. 1".'>.'" '..t!*r '. «.:,. ' ll' i/:-. ; rj-.. - ' ii. < (;.^..f 'iii-: i,', ' r. j',*-vv ; i..,"ji _'{' -rl*. i: Pro SharePoint

More information

WHAT IS NEW FOR DEVS IN SP 2013

WHAT IS NEW FOR DEVS IN SP 2013 WHAT IS NEW FOR DEVS IN SP 2013 ADIS JUGO, PLANB. SHAREPOINT AND PROJECT CONFERENCE ADRIATICS ZAGREB, 11/28/2012 ponsors Agenda Apps Search Workflow WCM Mobile Other APPS In its most basic form, an app

More information

Sharepoint Introduction. Module-1: Working on Lists. Module-2: Predefined Lists and Libraries

Sharepoint Introduction. Module-1: Working on Lists. Module-2: Predefined Lists and Libraries Training & Consulting Sharepoint Introduction An overview of the SharePoint Admin Center 1 Comparing the different SharePoint Online versions Finding the SharePoint Admin Center in Office 365 A brief walkthrough

More information

Лекция 4 Трансформация данных в R

Лекция 4 Трансформация данных в R Анализ данных Лекция 4 Трансформация данных в R Гедранович Ольга Брониславовна, старший преподаватель кафедры ИТ, МИУ volha.b.k@gmail.com 2 Вопросы лекции Фильтрация (filter) Сортировка (arrange) Выборка

More information

Call: SharePoint 2010 Course Content:35-40hours Course Outline

Call: SharePoint 2010 Course Content:35-40hours Course Outline SharePoint 2010 Course Content:35-40hours Course Outline Introduction to SharePoint Introduction to SharePoint Introduction to Windows SharePoint Server Introduction to Microsoft Office SharePoint Server

More information

SharePoint 2007 Overview

SharePoint 2007 Overview SharePoint 2007 Overview Topics which will be covered What is SharePoint? Architecture Six Pillars of MOSS Explanations of Six Pillars Central Administration SharePoint API Working with SharePoint Object

More information

Module 1 Introduction to Information Storage

Module 1 Introduction to Information Storage Module 1 Introduction to Information Storage Copyright 2012 EMC Corporation. All rights reserved Module 1: Introduction to Information Storage 1 Курс содержит 15 Modules. Copyright 2012 EMC Corporation.

More information

SharePoint 2010 Central Administration/Configuration Training

SharePoint 2010 Central Administration/Configuration Training SharePoint 2010 Central Administration/Configuration Training Overview: - This course is designed for the IT professional who has been tasked with setting up, managing and maintaining Microsoft's SharePoint

More information

LoadDataToDataGrid();

LoadDataToDataGrid(); Архангельский Алексей /// Загрузка данных в таблицу на форме в зависимости от того, что выбрано в комбобоксе private void LoadDataToDataGrid() button_add.isenabled = false; datagrid_booksorreaders.itemssource

More information

ExtJS 3.0. ExtJS Cookbook

ExtJS 3.0. ExtJS Cookbook ExtJS 3.0 Издательство PACKT Publishing порадовало новой книгой по ExtJS 3.0. Книга на английском языке. 376 страниц, на которых можно найти копируемые скрипты, сопровождающиеся доступными и лаконичными

More information

Advanced Solutions of Microsoft SharePoint Server 2013

Advanced Solutions of Microsoft SharePoint Server 2013 Course Duration: 4 Days + 1 day Self Study Course Pre-requisites: Before attending this course, students must have: Completed Course 20331: Core Solutions of Microsoft SharePoint Server 2013, successful

More information

Коммутаторы AFS660/665

Коммутаторы AFS660/665 ИЮНЬ 2017 Коммутаторы AFS660/665 Конфигурация кода заказа Чувилкин А.М., менеджер продукта Коммутаторы AFS660/665 Обзор Характеристики: 3 серии: AFS66x-S / AFS66x-B / AFS660-C 2 вида прошивок: Стандартная

More information

Step by Step Guide of BI Case Study of MYSQL via Visual Studio Code

Step by Step Guide of BI Case Study of MYSQL via Visual Studio Code Step by Step Guide of BI Case Study of MYSQL via Visual Studio Code Contents Step by Step Guide of BI Case Study of MYSQL via Visual Studio Code... 1 Introduction of Case Study... 3 Step 1: Install MySQL

More information

Модели и комплекты PowerScan PM8300

Модели и комплекты PowerScan PM8300 Модели и комплекты PowerScan PM8300 PowerScan PM8300, 433 MHz, Kit, KBW (Kit incl. Laser Scanner, BC8030-433MHZ base station, Cable CAB- 436, Power Supply, Power cord with European line cord) PowerScan

More information

SHAREPOINT-2016 Syllabus

SHAREPOINT-2016 Syllabus Syllabus Overview: Gone are those days when we used to manage all information in a corporate manually. For every type of requirement we have different solutions but integrating them is a big nuisance.

More information

SHAREPOINT 2010 OVERVIEW FOR DEVELOPERS RAI UMAIR SHAREPOINT MENTOR MAVENTOR

SHAREPOINT 2010 OVERVIEW FOR DEVELOPERS RAI UMAIR SHAREPOINT MENTOR MAVENTOR SHAREPOINT 2010 OVERVIEW FOR DEVELOPERS RAI UMAIR SHAREPOINT MENTOR MAVENTOR About Rai Umair SharePoint Mentor with Maventor 8+ years of experience in SharePoint Development, Training and Consulting APAC

More information

Руководство по быстрой установк

Руководство по быстрой установк Руководство по быстрой установк TE100-S5 TE100-S8 1.21 Table of Contents Русский 1 1. Что нужно сделать в самом начале 1 2. Установка оборудования 2 3. LEDs 3 Technical Specifications 4 Troubleshooting

More information

INFOPATH TO K2 SMARTFORMS MIGRATION

INFOPATH TO K2 SMARTFORMS MIGRATION INFOPATH TO K2 SMARTFORMS MIGRATION 2013-11-15 Contents Introduction... 2 Step 1: Create SmartObject data-model... 3 Line Of Business for data-model... 3 Converting the Main data-source... 3 Converting

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!  We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : 070-542-VB Title : MS Office SharePoint Server 2007- Application Development

More information

Manual Trigger Sql Server 2008 Examples Update

Manual Trigger Sql Server 2008 Examples Update Manual Trigger Sql Server 2008 Examples Update SQL Server has a pool of memory that is used to store both execution plans and data buffers. For example, the first of these SELECT statements is not matched

More information

Connecting a Silverlight Application to Line-of-Business Information

Connecting a Silverlight Application to Line-of-Business Information Microsoft Collaboration Brief March, 2010 Connecting a Silverlight Application to Line-of-Business Information Using the Business Data Connectivity Services (BDC) in SharePoint Server Foundation 2010 Author

More information

Analysis System of Scientific Publications Based on the Ontology Approach

Analysis System of Scientific Publications Based on the Ontology Approach Analysis System of Scientific Publications Based on the Ontology Approach Viacheslav Lanin, Svetlana Strinuk National Research University Higher School of Economics, Perm, Russian Federation lanin@perm.ru,

More information

Create a Performance Equation Tag (45 min) Learn to use PI SMT (System Manager Tools) 2010 to easily create a performance equation tag.

Create a Performance Equation Tag (45 min) Learn to use PI SMT (System Manager Tools) 2010 to easily create a performance equation tag. There are 44 Learning Labs available. The learning labs are a series of self-paced hands-on exercises that teach how to accomplish specific topics of interest using the OSIsoft software. The times provided

More information

JS_3. Формы. Графики. GitHub. Трубочкина Н.К.

JS_3. Формы. Графики. GitHub. Трубочкина Н.К. JS_3. Формы. Графики. GitHub Трубочкина Н.К. 2018 Работа с формами Пример. З а д а ч а Кликните на ячейке для начала редактирования. Когда закончите -- нажмите OK или CANCEL. H T M

More information

KAK - Event ID 1004 Terminal Services Client Access License (TS CAL) Availability

KAK - Event ID 1004 Terminal Services Client Access License (TS CAL) Availability KAK - Event ID 1004 Terminal Services Client Access License (TS CAL) Availability Applies To: Windows Server 2008 A terminal server must be able to contact (discover) a Terminal Services license server

More information

Nina Popova, St.Petersburg Polytechnic University Liudmila Devel, St.Petersburg University of Culture.

Nina Popova, St.Petersburg Polytechnic University Liudmila Devel, St.Petersburg University of Culture. Nina Popova, St.Petersburg Polytechnic University ninavaspo@mail.ru Liudmila Devel, St.Petersburg University of Culture miladevel@gmail.com Content and Language integrated learning is a dual-focused educational

More information

Основы Java для разработки приложений для Android. Версия 7 AND-404

Основы Java для разработки приложений для Android. Версия 7 AND-404 Основы Java для разработки приложений для Android. Версия 7 AND-404 ДЕТАЛЬНАЯ ИНФОРМАЦИЯ О КУРСЕ Основы Java для разработки приложений для Android. Версия 7 Код курса: AND-404 Длительность 2 дня / 12 академических

More information

Microsoft SharePoint Server 2013 Plan, Configure & Manage

Microsoft SharePoint Server 2013 Plan, Configure & Manage Microsoft SharePoint Server 2013 Plan, Configure & Manage Course 20331-20332B 5 Days Instructor-led, Hands on Course Information This five day instructor-led course omits the overlap and redundancy that

More information

Platform Independent Implementation of High Speed Serial Communication Based on FPGA

Platform Independent Implementation of High Speed Serial Communication Based on FPGA Journal of Siberian Federal University. Engineering & Technologies, 2016, 9(2), 189-196 ~ ~ ~ УДК 621.391-026.51:004.4 2 Platform Independent Implementation of High Speed Serial Communication Based on

More information

Настройте ISE 2.1 с SQL MS с помощью ODBC

Настройте ISE 2.1 с SQL MS с помощью ODBC Настройте ISE 2.1 с SQL MS с помощью ODBC Содержание Введение Предварительные условия Требования Используемые компоненты Настройка Шаг 1. Базовая конфигурация SQL MS Шаг 2. Базовая конфигурация ISE Шаг

More information

Explore Microsoft SharePoint 2013

Explore Microsoft SharePoint 2013 Explore Microsoft SharePoint 2013 Microsoft Corporation Published: October 2014 Author: Microsoft Office System and Servers Team (itspdocs@microsoft.com) Abstract This book provides information about what's

More information

Interaction with SharePoint Team Services, front-end web servers and back-end databases.

Interaction with SharePoint Team Services, front-end web servers and back-end databases. Chapter 1: SharePoint Services Architecture Interaction with SharePoint Team Services, front-end web servers and back-end databases. IIS services used by SharePoint services. Use and export Web Parts and

More information

lab9 task1 nets: Пажитных Иван Павлович 3 курс, 1 группа, МСС github lab link ip/mask /26 ip mask

lab9 task1 nets: Пажитных Иван Павлович 3 курс, 1 группа, МСС github lab link ip/mask /26 ip mask lab9 Пажитных Иван Павлович 3 курс, 1 группа, МСС github lab link task1 nets: net1: name value ip/mask 176.141.64.0/26 ip 176.141.64.0 mask 255.255.255.192 net size 62 min addr 176.141.64.1 max addr 176.141.64.62

More information

КИБЕРНЕТИКА И МЕХАТРОНИКА

КИБЕРНЕТИКА И МЕХАТРОНИКА КИБЕРНЕТИКА И МЕХАТРОНИКА УДК 621.3.049.77:000.93 EMERGING ARCHITECTURES FOR PROCESSOR-IN-MEMORY CHIPS: TAXONOMY AND IMPLEMENTATION Valery A. Lapshinsky Peoples Friendship University of Russia Miklukho-Maklaya

More information

Microsoft SharePoint Server

Microsoft SharePoint Server Developing Microsoft SharePoint Server 2013 Advanced Solutions Course: 20489 Course Details Audience(s): Developers Technology: Duration: Microsoft SharePoint Server 40 Hours ABOUT THIS COURSE This course

More information

Technology Requirements for Microsoft Dynamics GP 2010 and Microsoft Dynamics GP 2010 R2 Features

Technology Requirements for Microsoft Dynamics GP 2010 and Microsoft Dynamics GP 2010 R2 Features Technology for Microsoft Dynamics GP 2010 and Microsoft Dynamics GP 2010 R2 Features Last Modified 11/1/2011 Posted 6/29/2010 This page contains the technology requirements for the new features in Microsoft

More information

20489: Developing Microsoft SharePoint Server 2013 Advanced Solutions

20489: Developing Microsoft SharePoint Server 2013 Advanced Solutions 20489: Developing Microsoft SharePoint Server 2013 Advanced Solutions Length: 5 days Audience: Developers Level: 300 OVERVIEW This course provides SharePoint developers the information needed to implement

More information

Playing Outside Your Sandbox INTERACTING WITH OTHER SYSTEMS USING SHAREPOINT BCS

Playing Outside Your Sandbox INTERACTING WITH OTHER SYSTEMS USING SHAREPOINT BCS Playing Outside Your Sandbox INTERACTING WITH OTHER SYSTEMS USING SHAREPOINT BCS David Drever o Digital Workplace Services Lead o Office Servers & Services MVP o Saskatchewan SharePoint/O365 User Group

More information

Tarantool. Выпуск 1.9.0

Tarantool. Выпуск 1.9.0 Tarantool Выпуск 1.9.0 мая 04, 2018 Оглавление 1 What s new in Tarantool 1.7.6? 2 1.1 Что нового в Tarantool 1.7?.................................... 2 2 What s new in Tarantool 1.6.9? 4 2.1 What s new

More information

CHAPTER 1: WHAT S NEW IN SHAREPOINT

CHAPTER 1: WHAT S NEW IN SHAREPOINT INTRODUCTION xxix CHAPTER 1: WHAT S NEW IN SHAREPOINT 2013 1 Installation Changes 2 System Requirements 2 The Installation Process 2 Upgrading from SharePoint 2010 3 Patching 3 Central Administration 4

More information

Комитет по стандартам ВОИС (КСВ)

Комитет по стандартам ВОИС (КСВ) R CWS/2/4 REV. ОРИГИНАЛ: АНГЛИЙСКИЙ ДАТА: 2 АПРЕЛЯ 2012 Г. Комитет по стандартам ВОИС (КСВ) Вторая сессия Женева, 30 апреля 4 мая 2012 г. ПРЕДЛОЖЕНИЕ О НОВОМ СТАНДАРТЕ ВОИС ST.96 подготовлено Секретариатом

More information

SharePoint Portal Server 2003 Advanced Migration Scenarios

SharePoint Portal Server 2003 Advanced Migration Scenarios SharePoint Portal Server 2003 Advanced Migration Scenarios White Paper Published: March 2004 Table of Contents Introduction 1 Related White Papers 1 Background 2 SharePoint Portal Server 2003 Document

More information

Microsoft SharePoint 2010 The business collaboration platform for the Enterprise and the Web. We have a new pie!

Microsoft SharePoint 2010 The business collaboration platform for the Enterprise and the Web. We have a new pie! Microsoft SharePoint 2010 The business collaboration platform for the Enterprise and the Web We have a new pie! 2 Introduction Key Session Objectives Agenda More Scalable More Flexible More Features Intranet

More information

QDABRA DBXL S XML RENDERING SERVICE CONFIGURATION

QDABRA DBXL S XML RENDERING SERVICE CONFIGURATION Page 1 of 12 QDABRA DBXL S XML RENDERING SERVICE CONFIGURATION FOR DBXL V3.1 LAST UPDATED: 12/21/2016 October 26, 2016 OVERVIEW This new feature will create XML files from the SQL data. To keep a loosely

More information

Новые возможности финансирования (следующие конкурсы FP7-ICT практические советы, инструменты поддержки Idealist2011

Новые возможности финансирования (следующие конкурсы FP7-ICT практические советы, инструменты поддержки Idealist2011 Новые возможности финансирования (следующие конкурсы FP7-ICT ICT, FP7-ERA ERA-WIDE), практические советы, инструменты поддержки Idealist2011 Т.О.Ляднова, БелИСА, ICT NCP FP ЕС СОДЕРЖАНИЕ Новые конкурсы

More information

AnyConnect по IKEv2 к ASA с AAA и проверкой подлинности сертификата

AnyConnect по IKEv2 к ASA с AAA и проверкой подлинности сертификата AnyConnect по IKEv2 к ASA с AAA и проверкой подлинности сертификата Содержание Введение Предварительные условия Требования Используемые компоненты Условные обозначения Чего вы будете требовать Сертификаты

More information

Microsoft Official Courseware Course Introduction to Web Development with Microsoft Visual Studio

Microsoft Official Courseware Course Introduction to Web Development with Microsoft Visual Studio Course Overview: This five-day instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual Studio 2010. Prerequisites Before attending this course, students

More information

SharePoint 2013 Search Inside Out

SharePoint 2013 Search Inside Out SharePoint 2013 Search Inside Out 55037; 5 Days, Instructor-led Course Description This 5-day course will instruct on how to create simple and advanced search topologies. How to configure the various search

More information

Creating SDK plugins

Creating SDK plugins Creating SDK plugins 1. Introduction... 3 2. Architecture... 4 3. SDK plugins... 5 4. Creating plugins from a template in Visual Studio... 6 5. Creating custom action... 9 6. Example of custom action...10

More information

Hyperion Interactive Reporting Reports & Dashboards Essentials

Hyperion Interactive Reporting Reports & Dashboards Essentials Oracle University Contact Us: +27 (0)11 319-4111 Hyperion Interactive Reporting 11.1.1 Reports & Dashboards Essentials Duration: 5 Days What you will learn The first part of this course focuses on two

More information

Planning and Administering SharePoint 2016

Planning and Administering SharePoint 2016 Planning and Administering SharePoint 2016 Course 20339A 5 Days Instructor-led, Hands on Course Information This five-day course will combine the Planning and Administering SharePoint 2016 class with the

More information

SharePoint 2010 Overview for Developers

SharePoint 2010 Overview for Developers SharePoint 2010 Overview for Developers Course 50351B; 3 days, Instructor-led Course Description This 3-day instructor-led course will teach you all the new development changes that were made to SharePoint

More information

SHAREPOINT 2013 DEVELOPMENT

SHAREPOINT 2013 DEVELOPMENT SHAREPOINT 2013 DEVELOPMENT Audience Profile: This course is for those people who have couple of years of development experience on ASP.NET with C#. Career Path: After completing this course you will be

More information

Advanced Technologies of SharePoint 2016

Advanced Technologies of SharePoint 2016 Advanced Technologies of SharePoint 2016 20339-2; 5 Days; Instructor-led Course Description This five-day course will teach you how to plan, configure, and manage the advanced features in a SharePoint

More information

Advanced Technologies of SharePoint 2016

Advanced Technologies of SharePoint 2016 Advanced Technologies of SharePoint 2016 Course 20339-2A 5 Days Instructor-led, Hands on Course Information This five-day course will teach you how to plan, configure, and manage the advanced features

More information

Programming Microsoft's Clouds

Programming Microsoft's Clouds Programming Microsoft's Clouds WINDOWS AZURE AND OFFICE 365 Thomas Rizzo Razi bin Rais Michiel van Otegem Darrin Bishop George Durzi Zoiner Tejada David Mann WILEY John Wiley & Sons, Inc. INTRODUCTION

More information

Marc Holmes, Andy James, Jeff Johnson. Microsoft Corporation

Marc Holmes, Andy James, Jeff Johnson. Microsoft Corporation Marc Holmes, Andy James, Jeff Johnson Microsoft Corporation Session Objectives Getting Business Value from SOA Rich UX and visualisation Microsoft Office Platform for consuming SOA/BPM BizTalk Server 2009

More information

Oleg Bartunov, Teodor Sigaev

Oleg Bartunov, Teodor Sigaev Oleg Bartunov, Teodor Sigaev Locale support Extendability (indexing) GiST (KNN), GIN, SP-GiST Full Text Search (FTS) Jsonb, VODKA Extensions: intarray pg_trgm ltree hstore plantuner https://www.facebook.com/oleg.bartunov

More information

Deployment guide for Duet Enterprise for Microsoft SharePoint and SAP Server 2.0

Deployment guide for Duet Enterprise for Microsoft SharePoint and SAP Server 2.0 Deployment guide for Duet Enterprise for Microsoft SharePoint and SAP Server 2.0 Microsoft Corporation Published: October 2012 Author: Microsoft Office System and Servers Team (itspdocs@microsoft.com)

More information

Oracle Object-Relational Features. Пыхалов А.В. ЮГИНФО

Oracle Object-Relational Features. Пыхалов А.В. ЮГИНФО Oracle Object-Relational Features Пыхалов А.В. ЮГИНФО Две грубейшие ошибки ORсистем Под классом объектов понимаем тип данных, имеющий поля и методы Две ошибки OR систем Класс объекта == Отношение Работа

More information

Мультисоединения и системы стыковки. Multi-Couplings & Docking Systems

Мультисоединения и системы стыковки. Multi-Couplings & Docking Systems Мультисоединения и системы стыковки Multi-Couplings & Docking Systems Мультисоединения и системы стыковки Multi-Couplings & Docking Systems Мультисоединения позволяют одновременно подключать несколько

More information

TP СTN. User Guide: subagent. Ticketing platform СTN User Guide: subagent

TP СTN. User Guide: subagent. Ticketing platform СTN User Guide: subagent Ticketing platform СTN User Guide: subagent 2016 1 1. CTN Ticketing Platform: Ticketing APP 1.1 Authorization in the system 1.2 The basic requirements for work 1.3 Main modules 1.3.1 Main 1.3.2 Reports

More information

COURSE OUTLINE: A Advanced Technologies of SharePoint 2016

COURSE OUTLINE: A Advanced Technologies of SharePoint 2016 Course Name 20339-2A Advanced Technologies of Course Duration 5 Days Course Structure Instructor-Led Course Overview This five-day course will teach you how to plan, configure, and manage the advanced

More information

MS Office SharePoint Server 2007-Appliaction

MS Office SharePoint Server 2007-Appliaction MS Office SharePoint Server 2007-Appliaction Q&A DEMO Version Copyright (c) 2009 Chinatag LLC. All rights reserved. Important Note Please Read Carefully For demonstration purpose only, this free version

More information

Course Outline: Course 10267A: Introduction to Web Development with Microsoft Visual Studio 2010 Learning Method: Instructor-led Classroom Learning

Course Outline: Course 10267A: Introduction to Web Development with Microsoft Visual Studio 2010 Learning Method: Instructor-led Classroom Learning Course Outline: Course 10267A: Introduction to Web Development with Microsoft Visual Studio 2010 Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40 hrs Overview: This five-day

More information

Cross-Platform Parallels: Understanding SharePoint (Online) Through Notes-colored glasses

Cross-Platform Parallels: Understanding SharePoint (Online) Through Notes-colored glasses Cross-Platform Parallels: Understanding SharePoint (Online) Through Notes-colored glasses Presented by Ben Menesi Speaker Head of Product at Ytria IBM Notes Domino Admin & Dev. for the past 10 years Actually

More information

Playing Further Outside Your Sandbox ADVANCED CONCEPTS IN SHAREPOINT BUSINESS CONNECTIVITY SERVICES

Playing Further Outside Your Sandbox ADVANCED CONCEPTS IN SHAREPOINT BUSINESS CONNECTIVITY SERVICES Playing Further Outside Your Sandbox ADVANCED CONCEPTS IN SHAREPOINT BUSINESS CONNECTIVITY SERVICES Who is Dave? Solvera Solutions SharePoint Services Lead Microsoft Office Servers and Services MVP SharePoint

More information