10 ace 2010 aras federation workshop

19
2010 International Conference Federation Workshop Peter Schroer www.aras.com aras.com Andover, MA 01810 [978] 6918900 www.aras.com Copyright © 2010 Aras All Rights Reserved.

Upload: prodeos

Post on 18-Dec-2014

672 views

Category:

Documents


0 download

DESCRIPTION

Ace 2010 Aras Federation Workshop

TRANSCRIPT

Page 1: 10 Ace 2010 Aras Federation Workshop

2010 International Conference

Federation Workshop

300 Brickstone SquareSuite 904

Andover, MA 01810

Peter Schroer

www.aras.com

aras.com

Andover, MA 01810

[978] 691‐8900

www.aras.com

Copyright © 2010 Aras All Rights Reserved.

Page 2: 10 Ace 2010 Aras Federation Workshop

Welcome

Workshop Goals

Understanding of why use Federation 

E h K l d f th A F d tiEnough Knowledge of the Aras Federation Approach to Plan a Project

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 2

Page 3: 10 Ace 2010 Aras Federation Workshop

Agenda

1. Build a working definition for FederationUnderstand Federation vs. Integration

2. Discuss Federation Approach Alternatives

3. Aras Innovator Federation

4 F d ti M d4. Federation Modes

5. Discuss Pseudo‐Code Examples

6. Federation Data Access Techniques

7 Additional Resources

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 3

7. Additional Resources

Page 4: 10 Ace 2010 Aras Federation Workshop

Definition

PLM is never standalone:  ERP, corporate document management s stems man fact ring and q alitmanagement systems,  manufacturing and quality software, etc. 

Repli atin data bet een s stems is a ommonReplicating data between systems is a common approach, but synchronization of edits between systems is complicated and riskysystems is complicated and risky

F d tiFederationCreating a pointer within PLM to data objects stored in the other business systems

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 4

other business systems

Page 5: 10 Ace 2010 Aras Federation Workshop

Federation vs. Integration

We use Federation when we want to see (and manage) the objects in the other s stem thro gh the Aras serthe objects in the other system,  through the Aras user interface,  and use those objects in Aras workflow and configurationsconfigurations 

Integration (e.g. CAD integration) is a technique for moving data from one system to another usuallymoving data from one system to another, usually triggered by user action of lifecycle transitions

I i i f b h i dIntegration is often batch oriented

Federation is about real‐time accessing and aggregating 

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 5

of data from multiple sources

Page 6: 10 Ace 2010 Aras Federation Workshop

Definition (continued)

Federation creates a wrapper around data objects from remote s stems and then e tends their definition ithremote systems,  and then extends their definition with PLM functionality

We a re ate data from man so r es in this a inWe aggregate data from many sources in this way in order to:o Present the aggregated data in a single window for the usero Present the aggregated data in a single window for the user,  e.g. a Mash‐Up

o Execute business rules, BI dashboards, or Reports against the consolidated data set

o Add advanced PLM capabilities such as BPM workflow or Secure web interface to legacy systems

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 6

Secure web interface to legacy systems

Done well,  the end‐user is not aware of the sources of data

Page 7: 10 Ace 2010 Aras Federation Workshop

Scenarios

Corporate doc management systemDocuments checked in to the PLM system are transferred directly to a corporate document archiving solution

Searching and viewing documents is performed within theSearching and viewing documents is performed within the PLM interface,  directly accessing remotely stored data. 

C t d i t h d fi ld i ERP di l dCost and inventory on hand fields in ERP displayed on the PLM Part form 

Material cost may be maintained in the ERP system but isMaterial cost may be maintained in the ERP system,  but is useful information to engineers using PLM

The PLM part form contains data from both PLM and a real‐

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 7

ptime ERP query

Page 8: 10 Ace 2010 Aras Federation Workshop

Federation Approaches

Client Based Federation

The PLM client application initiates 2 queries,  one to each system:  the PLM server and the 3rd party server.    The data is merged on the client

Aras client is HTML / JS and developers can use AJAXAras client is HTML / JS and developers can use AJAX to easily make calls from a Form to 3rd party servers

h h l d f l b d d dTechnique has limited usefulness beyond merged data onto a form for an aggregated view

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 8

Page 9: 10 Ace 2010 Aras Federation Workshop

Federation Approaches

Server Based Federation

Data exchange with the other system is executed on the PLM server

The PLM client is sent a single data set, and is not aware that core business objects have been modified with remote properties or that the data objects are not nativeremote properties,  or that the data objects are not native

Advantage because integration of remote data objects is encapsulated on the server eliminating client customizingencapsulated on the server, eliminating client customizing

Additional advantage that server‐side business rules such as Permissions, LifeCycle, and Workflow logic can act on

aras.comCopyright © 2010 Aras All Rights Reserved.

as Permissions, LifeCycle, and Workflow logic can act on the 3rd party data objects

Slide 9

Page 10: 10 Ace 2010 Aras Federation Workshop

Aras Innovator Federation

Aras Client expects AML to be returned on every transaction this is ke to the simplicit of Federationtransaction ‐ this is key to the simplicity of Federation

No customizations normally on the cliento As long as AML is returned,  the client is happy to work with any data it receives

o Exception is file check‐in handling  ( ** discussed later )

Use standard Server Events to add the Federation logicgo OnAfterGet to merge federated properties

o OnGet to return 100% federated items

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 10

Page 11: 10 Ace 2010 Aras Federation Workshop

Simple Exercise

Create an ItemType named Test with 1 Property

Add a Server Event OnGet for a Method that creates and returns an XML string

<Item type=‘Test’ id=‘1234’><name>Hello</name></Item>

Select this item on the TOC

Grid will populate with the ‘fake’ data

NOTES:o Had to create an ID for each row

aras.comCopyright © 2010 Aras All Rights Reserved.

o Had to create an ID for each row

Slide 11

Page 12: 10 Ace 2010 Aras Federation Workshop

Federation Modes

1. Federate either a complete ItemType or a subset of Properties on a standard managed ItemT peProperties on a standard managed ItemType

2 Federation Models2. Federation ModelsView only of data from the other system

Use remote objects in configurations and workflowsUse remote objects in configurations and workflows

Full access:  OnGet, OnAdd, OnDelete

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 12

Page 13: 10 Ace 2010 Aras Federation Workshop

Pseudo Code for View

Assume “MyFederation”   OnGet event  ‐ VB Method

Assume entire ItemType has been Federated

Properties for the remote object, TOC Access, Form Views are defined in Aras Innovator

2 Modes:2 Modes:

1. Simple Searching and Viewing

2 U F d d I i R l i hi I2. Use Federated Item in Relationships or as Item Properties

F l P D R l i hi i h

aras.comCopyright © 2010 Aras All Rights Reserved.

For example:   Part to Document Relationship with a set of Federated Documents

Slide 13

Page 14: 10 Ace 2010 Aras Federation Workshop

Pseudo Code for View #1

User query parameters from the Simple Search grid ro are Properties on the Me objectrow are Properties on the Me object 

Check if this is a Get for one record or a set.  How?

Build the query for the remote system, passing the query parameters from the client

Run the query code  ( ** discussed next )

Create an AML string from the query result

Add a dummy ID for each row

Return AML

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 14

Return AML

QUIZ:  Is there an ItemType table for this item?

Page 15: 10 Ace 2010 Aras Federation Workshop

Pseudo‐Code for View #2

Federated Items will be used as Item Properties, h h l d l hor either the Source or Related in a Relationship

ItemType is not flagged as Federated this time because we do want an Aras Innovator tablebecause we do want an Aras Innovator table

QUIZ ‐ What properties must this table store?

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 15

Page 16: 10 Ace 2010 Aras Federation Workshop

Pseudo‐Code for View #2

3 properties are required to maintain configurations

ID

Federated‐ID

Keyed‐Name

Solution:   in the OnGet method we add a function to register the data objects found via user queries,register the data objects found via user queries,  assigning a new Aras Innovator ID to each

I use a small stored procedure to execute this efficiently

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 16

p ff y

Page 17: 10 Ace 2010 Aras Federation Workshop

Integration Techniques

Web Serviceso Building an ASPX page as a wrapper

o Using Visual Studio to make a Proxy

o XMLHTTP object

ODBC

Commercial API from other system  

QUIZ

How to register a DLL (either API or VS Proxy) so that

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 17

How to register a DLL (either API or VS Proxy) so that you can use the DLL directly in methods ?

Page 18: 10 Ace 2010 Aras Federation Workshop

Other Design Considerations

File check‐in to a Federated sourceAfter check‐in move file from Aras vault to remote vault

Aras client does direct file upload

Actions for Add, Update and Delete are possibleMore important to consider permissions and access

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 18

Page 19: 10 Ace 2010 Aras Federation Workshop

More Resources

Federation test package

Innovator ‐ to – Innovator federation used for testing of the Server Events.    

Aras Wiki articles

aras.comCopyright © 2010 Aras All Rights Reserved. Slide 19