Informatica PIM. Export - Data types. Version: Date:

Size: px
Start display at page:

Download "Informatica PIM. Export - Data types. Version: Date:"

Transcription

1 Informatica PIM Export - Data types Version: Date: 12 July 29, 2014

2 Table of Contents Export data types 3 Where do I encounter export data types? 3 Which kind of export data types exist? 3 How can I use a data type programmatically? 4... as data type of a data provider parameter 4... as main data type of a data provider 4... as sub-data type of a data provider 5 Customizing possibilities 5 Repository 5 Provide a new data type representing a repository enumeration 5 Provide a new data type representing a repository sub-entity 6 Implement a new data type 7 Qualifying a data field: which variable matches? 7 Special export sub data types 12 File attachments of items, products, structure groups 12 Available fields 13 Data type filter 13 Load and prepare data 13 Determine the list of media assets to be exported 13 Get a listmodel for each of the sub entities 13 Merge the list models 13 Post-prepare the listmodel 13 Support of "language independent" document language 14 Examples 14 Example 1: Consistent data 14 Example 2: No documents 15 Example 3: No descriptions 15 Attributes and features of items and products 16 Attribute values and feature values of items and products 16

3 This article is still under construction What are export data types? Why do I need export data types? How can I add a new data type? This article applies to the Heiler Product Manager in versions 7.0 and above. Export data types Note: You can find a list of existing standard export data types. Where do I encounter export data types? (Main) Data type of data providers Sub-data types of data providers Data types for data provider parameters resp. export post step parameters Data types for variables qualify data fields configure data type filters specify export parameter values Which kind of export data types exist? Data types representing a repository root entity Data types representing a repository sub-entity Data types representing several repository sub-entities Data types representing a repository enumeration Special data types 3

4 How can I use a data type programmatically?... as data type of a data provider parameter Example: boolean parameter of a data provider ValueDescriptor updateassortmentparameter = new ValueDescriptor() { public DataType getdatatype() { return DataTypeFactory.getInstance().getDataType( DataTypeBoolean.IDENTIFIER ); } //... };... as main data type of a data provider Example: main data type of a data provider public class StructureDataProvider extends ReportListModelQueryDataProviderBaseImpl { public DataType getdatatype() { return DataTypeFactory.getInstance().getDataType( DataTypeStructure.IDENTIFIER ); } //... } 4

5 ... as sub-data type of a data provider Example: add a sub-data type to a data provider public class StructureDataProvider extends ReportListModelQueryDataProviderBaseImpl { public List getsubdatatypes() { List subdatatypes = new ArrayList(); //... DataTypeUtils.addSubDatatype( subdatatypes, DataTypeStructureAttributes.IDENTIFIER ); //... return subdatatypes; } //... } Customizing possibilities Repository Provide a new data type representing a repository enumeration If there's a (new) repository enumeration you want to provide as export variable data type you just have to add a new enum param with the "useforexportdatatype" key and the "true" value: Now you can use the new data type: 5

6 Provide a new data type representing a repository sub-entity If there's a (new) repository sub-entity you want to export as it is, you only have to set the export purpose of this sub-entity to "1". Now there's a new sub-data type, the data of this entity are ready to be exported: 6

7 Implement a new data type tbd Qualifying a data field: which variable matches? If you want to qualify an export data field you can specify a dedicated value, or - if the corresponding logical key represents a date or an enumeration and if there's an export data type representing this enumeration - you can use a variable. Example: There're two variables defined "Language" with data type "Language" representing the repository enumeration "Language" "Language_incl_langIndependent" with data type "Languages (Including language independent)" representing the repository enumeration "Languages (Including language independent)" 7

8 8

9 Adding the "Items.Short description" field requires qualification with a language. You can choose a language value directly, or you can use a variable that provides valid values for the corresponding logical key. The "Language" variable matches because it represents exactly the list of languages the logical key's enumeration defines. 9

10 10

11 Adding the "Items.Attribute value" field requires qualification with a language, too. Here, you can use a specific value or a variable that provides valid values for the corresponding logical key. Both - "Language" and "Language_incl_langIndependent" - variables match, because "Language_incl_langIndependent" variable represents exactly the list of languages the logical key's enumeration defines "Language" variable represents a sub-list of the allowed languages 11

12 Special export sub data types File attachments of items, products, structure groups Many export data sources provide a sub data type for file attachments. All these sub data types provide the same list of data fields, and use the same algorithm to retrieve data to be exported. 12

13 Available fields The file attachments data types provide all fields... that are enabled for export (export purpose is not 0) that are fields of MediaAsset, MediaAssetLang, MediaAssetDocument, MediaAssetDocumentAttributes repository entities. These fields don't have to be qualified. Data type filter You can use all logical keys of the MediaAsset sub entities as data type filters: language, quality, type. These data types provide an additional filter "Mandatory fields", that can prevent output of inconsistent data rows. Load and prepare data The following algorithm is used to create the file attachments list model: Determine the list of media assets to be exported The data providers list of items, products, or structure groups is used to get the mapped media assets. The resulting report of media assets is used by the next steps. Get a listmodel for each of the sub entities The requested data fields are splitted by its entities, a listmodel is retrieved for each sub entity: MediaAssetDocumentAttributes - if any fields are requested for this entity MediaAssetDocument - always MediaAssetLang - if any fields are requested for this entity MediaAsset - always Merge the list models The listmodels are merged in this order and with this rules: MediaAssetDocument and MediaAssetDocumentAttributes: merge by MediaAssetDocumentId with MediaAssetDocument as master, result: MediaAssetDocument MediaAssetDocument and MediaAssetLang: full merge by MediaAssetId and LanguageId, result: MediaAssetDocument MediaAsset and MediaAssetDocument: left outer merge by MediaAssetId with MediaAsset as master Post-prepare the listmodel Last step is to validate and sort the listmodel. 13

14 Support of "language independent" document language Often media asset documents are not language dependent. That's why the file attachment sub data types support a substitute language for documents, see substitute language. The merge algorithm of MediaAssetDocument and MediaAssetLang listmodels determines matching entries by MediaAssetId and LanguageId. If no suitable MediaAssetDocument entry is found for a MediaAssetLang entry, an entry with same MediaAssetId and LanguageId = "substitute language" is used instead. That means the media asset document entry of the substitute language is assigned to a media asset description if there's no document with description's language. TODO screen Examples The following export template is used for all examples: Example 1: Consistent data There're descriptions and documents for german and english language. 14

15 Example 2: No documents There're descriptions, but no documents. Example 3: No descriptions There're documents but no media asset descriptions. 15

16 Attributes and features of items and products TODO Attribute values and feature values of items and products TODO 16

Informatica PIM. Export - Substitute language. Version: Date:

Informatica PIM. Export - Substitute language. Version: Date: Informatica PIM Export - Substitute language Version: Date: 7 March 18, 2014 Table of Contents What is substitute language? 3 How to configure substitute language 3 Global 3 Export template/ Export profile

More information

Informatica PIM. Export post-processing. Version: Date:

Informatica PIM. Export post-processing. Version: Date: Informatica PIM Export post-processing Version: Date: 5 March 18, 2014 Table of Contents Introduction 3 What is "Export post-processing"? 3 Export post-processing step examples 5 File attachment export

More information

Informatica PIM. Export - Send Data back to Supplier Exchange. Version: Date:

Informatica PIM. Export - Send Data back to Supplier Exchange. Version: Date: Informatica PIM Export - Send Data back to Supplier Exchange Version: Date: 6 March 18, 2014 Table of Contents Introduction 3 What is the Supplier Exchange Feature? 3 Preconditions 3 How can I see that

More information

Performance Tuning in Informatica Developer

Performance Tuning in Informatica Developer Performance Tuning in Informatica Developer 2010 Informatica Abstract The Data Integration Service uses optimization methods to improve the performance of a mapping. You can choose an optimizer level to

More information

Concept - first iteration DAM 2.0 & CMIS

Concept - first iteration DAM 2.0 & CMIS Concept - first iteration DAM 2.0 & CMIS CAUTION: this page simply describes the ideas and discussion of the first iteration of the DAM 2.0 & CMIS implementation effort. Some things are still up to date

More information

Informatica PIM. Auto-Assignment of Ports to Fields. Version: Date:

Informatica PIM. Auto-Assignment of Ports to Fields. Version: Date: Informatica PIM Auto-Assignment of Ports to Fields Version: Date: 8 July 29, 2014 Table of Contents 3 Introduction 3 Mapplet setup 3 Preconditions 4 Auto Assigning Root Entities 4 Auto-Assignment of Ports

More information

Informatica PIM. Spell Checking. Version: Date:

Informatica PIM. Spell Checking. Version: Date: Informatica PIM Spell Checking Version: Date: 11 March 17, 2014 Table of Contents Motivation 3 Basic functionality 3 Architecture 3 Handling of Multiple Languages 4 User Interface 4 Spell Checking in a

More information

Unit Assessment Guide

Unit Assessment Guide Unit Assessment Guide Unit Details Unit code Unit name Unit purpose/application ICTWEB425 Apply structured query language to extract and manipulate data This unit describes the skills and knowledge required

More information

Business Glossary Best Practices

Business Glossary Best Practices Business Glossary Best Practices 1993-2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise) without

More information

What's New In Informatica Data Quality 9.0.1

What's New In Informatica Data Quality 9.0.1 What's New In Informatica Data Quality 9.0.1 2010 Abstract When you upgrade Informatica Data Quality to version 9.0.1, you will find multiple new features and enhancements. The new features include a new

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

Asset Keeper Pro - Import Assets

Asset Keeper Pro - Import Assets Asset Keeper Pro - Import Assets Asset Keeper Pro - Import Assets Page 1 Import Assets Data can be imported into Asset Keeper Pro from either an Excel file or CSV file. The import option is located in

More information

This document contains information on fixed and known limitations for Test Data Management.

This document contains information on fixed and known limitations for Test Data Management. Informatica Corporation Test Data Management Version 9.6.0 Release Notes August 2014 Copyright (c) 2003-2014 Informatica Corporation. All rights reserved. Contents Informatica Version 9.6.0... 1 Installation

More information

Informatica PIM. Functional Overview. Version: Date:

Informatica PIM. Functional Overview. Version: Date: Informatica PIM Functional Overview Version: Date: 8 March 18, 2014 Table of Contents Process Overview 3 Supplier Invitation 3 User Roles 3 Data Upload 4 Management of Import Mappings 5 Validation Rules

More information

Informatica PIM. Media Asset Data Quality Check. Version: Date:

Informatica PIM. Media Asset Data Quality Check. Version: Date: Informatica PIM Media Asset Data Quality Check Version: Date: 7 July 29, 2014 Table of Contents Media Asset Data Quality Check 3 Installation and configuration of the example 3 Import of the example into

More information

Software Development Kit

Software Development Kit Software Development Kit Informatica MDM - Product 360 Version: 8.1.1 07/04/2018 English 1 Table of Contents 1 Table of Contents...2 2 SDK Package...3 3 Prerequisites...3 3.1 Database...3 3.2 Java Development

More information

Migrating Mappings and Mapplets from a PowerCenter Repository to a Model Repository

Migrating Mappings and Mapplets from a PowerCenter Repository to a Model Repository Migrating Mappings and Mapplets from a PowerCenter Repository to a Model Repository 2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

Performance Optimization for Informatica Data Services ( Hotfix 3)

Performance Optimization for Informatica Data Services ( Hotfix 3) Performance Optimization for Informatica Data Services (9.5.0-9.6.1 Hotfix 3) 1993-2015 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

AKENEOPIM User Guide Version 1.4. Catalog settings USER GUIDE CATALOG SETTINGS. Version 1.4. Copyright AKENEO SAS The Open Source PIM

AKENEOPIM User Guide Version 1.4. Catalog settings USER GUIDE CATALOG SETTINGS. Version 1.4. Copyright AKENEO SAS The Open Source PIM USER GUIDE CATALOG SETTINGS CONTENTS Manage Attributes 4 View Attributes 4 Page numbering 4 The filters 5 Screening product attributes 6 Shortcut actions on each attribute 6 Create an attribute 7 Edit

More information

Advisor Answers. Create Cross-tabs. July, Visual FoxPro 9/8/7

Advisor Answers. Create Cross-tabs. July, Visual FoxPro 9/8/7 July, 2006 Advisor Answers Create Cross-tabs Visual FoxPro 9/8/7 Q: I have a database that stores sales data. The details table contains one record for each sale of each item. Now I want to create a report

More information

Implementing Data Masking and Data Subset with IMS Unload File Sources

Implementing Data Masking and Data Subset with IMS Unload File Sources Implementing Data Masking and Data Subset with IMS Unload File Sources 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Oracle Financial Consolidation and Close Cloud. What s New in the December Update (16.12)

Oracle Financial Consolidation and Close Cloud. What s New in the December Update (16.12) Oracle Financial Consolidation and Close Cloud What s New in the December Update (16.12) December 2016 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE FINANCIAL CONSOLIDATION AND CLOSE CLOUD, DECEMBER UPDATE...

More information

InfoSphere Data Architect Pluglets

InfoSphere Data Architect Pluglets InfoSphere Data Architect Pluglets Macros for Eclipse This article provides information on how to develop custom pluglets and use sample pluglets provided by InfoSphere Data Architect. InfoSphere Data

More information

Product Release Notes Alderstone cmt 2.0

Product Release Notes Alderstone cmt 2.0 Alderstone cmt product release notes Product Release Notes Alderstone cmt 2.0 Alderstone Consulting is a technology company headquartered in the UK and established in 2008. A BMC Technology Alliance Premier

More information

UNIT V *********************************************************************************************

UNIT V ********************************************************************************************* Syllabus: 1 UNIT V 5. Package Diagram, Component Diagram, Deployment Diagram (08 Hrs, 16 Marks) Package Diagram: a. Terms and Concepts Names, Owned Elements, Visibility, Importing and Exporting b. Common

More information

Kharagpur Site Online Problems 2013

Kharagpur Site Online Problems 2013 Kharagpur Site Online Problems 013 Problem #1: List Editing At the ACME University, as part of the Graduate course work, each student is required to undergo project work. The authorities always make an

More information

CRMP 2016 Training Guide v3

CRMP 2016 Training Guide v3 132 133 Advanced Find Create your own Views and/or use other Views already created and shared with you, for any Entity that you select within CRMP. Please see the Personal Views section for the same functional

More information

Asset Keeper Pro - Import Assets. Import Assets

Asset Keeper Pro - Import Assets. Import Assets Import Assets Data can be imported into Asset Keeper Pro from either an Excel file or CSV file. The import option is located in the File menu in the Import / Export Assets submenu. Before importing you

More information

Java Programming with Eclipse

Java Programming with Eclipse One Introduction to Java 2 Usage of Java 3 Structure of Java 4 Flexibility of Java Programming 5 Using the Eclipse Software 6 Two Running Java in Eclipse 7 Introduction 8 Using Eclipse 9 Workspace Launcher

More information

The Corticon Rule Modeling Methodology. Applied to. FEMA Disaster Assistance Fraud Detection. A Case Study

The Corticon Rule Modeling Methodology. Applied to. FEMA Disaster Assistance Fraud Detection. A Case Study The Corticon Rule Modeling Methodology Applied to FEMA Disaster Assistance Fraud Detection A Case Study By Mike Parish Contents Table Of Figures... 4 The Business Problem... 6 Identify the Business Decision(s)

More information

K Hinds Page 1. Information Communication Technology Microsoft Access

K Hinds Page 1. Information Communication Technology Microsoft Access www.smsbarbados.wordpress.com Page 1 Information Communication Technology Microsoft Access www.smsbarbados.wordpress.com Page 2 What is a database? A database is a collection of information that is organized

More information

QPS Known and Resolved Issues. Last updated: 2/2/2012

QPS Known and Resolved Issues. Last updated: 2/2/2012 Last updated: 2/2/2012 TABLE OF CONTENTS Resolved Issues: QPS 9.2.0.1... 3 QPS Server... 3 QPS Client... 3 Resolved Issues: QPS 9.2... 3 QPS XTensions Software... 3 QPS Connect Client... 4 QPS Web Hub...

More information

Setting up a multiuser Enterprise Architect (EA) project. Repository. Model. Working draft

Setting up a multiuser Enterprise Architect (EA) project. Repository. Model. Working draft Setting up a multiuser Enterprise Architect (EA) project This document provides some general notes on items that should be reviewed when setting up a multi-user project in EA. It is provided as a set of

More information

Oracle Financial Consolidation and Close Cloud. What s New in the November Update (16.11)

Oracle Financial Consolidation and Close Cloud. What s New in the November Update (16.11) Oracle Financial Consolidation and Close Cloud What s New in the November Update (16.11) November 2016 TABLE OF CONTENTS REVISION HISTORY... 3 ORACLE FINANCIAL CONSOLIDATION AND CLOSE CLOUD, NOVEMBER UPDATE...

More information

Chapter 6. Importing Data EAD Constraints on EAD

Chapter 6. Importing Data EAD Constraints on EAD Chapter 6 Importing Data EAD 2002 The Archivists Toolkit TM allows for the importing of valid EAD version 2002 finding aids into description resource and component records. Note: The AT does not guarantee

More information

switch case Logic Syntax Basics Functionality Rules Nested switch switch case Comp Sci 1570 Introduction to C++

switch case Logic Syntax Basics Functionality Rules Nested switch switch case Comp Sci 1570 Introduction to C++ Comp Sci 1570 Introduction to C++ Outline 1 Outline 1 Outline 1 switch ( e x p r e s s i o n ) { case c o n s t a n t 1 : group of statements 1; break ; case c o n s t a n t 2 : group of statements 2;

More information

SQL JOIN SQL WHERE SQL ORDER BY Keyword SQL Final Statement Adding Line Items... 41

SQL JOIN SQL WHERE SQL ORDER BY Keyword SQL Final Statement Adding Line Items... 41 Cloud Services Reporting Administration Guide Version 17 July 2017 Contents About This Guide... 5 Reporting in P6 EPPM... 5 P6 Publication Services... 6 Assigning Permissions for P6 EPPM Reporting...

More information

BusinessObjects Frequently Asked Questions

BusinessObjects Frequently Asked Questions BusinessObjects Frequently Asked Questions Contents Is there a quick way of printing together several reports from the same document?... 2 Is there a way of controlling the text wrap of a cell?... 2 How

More information

SurveyToGo Scripting Best Practices

SurveyToGo Scripting Best Practices www.dooblo.com SurveyToGo Scripting Best Practices Authored by: Ofer Heijmans - Dooblo Revision 1.0, March 2016 Table of Content 1 OVERVIEW... 3 2 VARIABLE NAMES... 3 3 SHORT IDS DISPLAY... 4 4 ANSWER

More information

MiPCT Dashboard Report Writer

MiPCT Dashboard Report Writer User Guide Document File Name Report_Writer_User_Guide.docx Document Author Kendra Mallon Created July 18, 2016 Copyright 2016 University of Michigan Health System (UMHS). All rights reserved. This documentation

More information

Data Quality : Profile Analysis On Join Condition

Data Quality : Profile Analysis On Join Condition Name of Solution: Data Quality : Profile Analysis On Join Condition Business Requirement: The purpose of this solution is to explain what is Join profile analysis and how it can be used. Solution URL:

More information

ATLAS.ti Feature List Comparing ATLAS.ti 7 and 8. Windows

ATLAS.ti Feature List Comparing ATLAS.ti 7 and 8. Windows ATLAS.ti Feature List Comparing ATLAS.ti 7 and 8 Interface Windows Last updated February 6 th 2018 User interface control Menus Ribbons Document area with margin Managers Navigator No Inspector No Will

More information

Informatica Power Center 9.0.1

Informatica Power Center 9.0.1 Informatica Power Center 9.0.1 Informatica Audit Tables Description: BISP is committed to provide BEST learning material to the beginners and advance learners. In the same series, we have prepared a complete

More information

Using Standard Generation Rules to Generate Test Data

Using Standard Generation Rules to Generate Test Data Using Standard Generation Rules to Generate Test Data 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

In the Configuration Tree, right-click Multi-Range and select Create Repository.

In the Configuration Tree, right-click Multi-Range and select Create Repository. Control Center repositories contain configurations that can be applied to multiple managed firewalls. Configuration data that is used on more than one firewall should be stored in a repository to save

More information

Same Data Different Attributes: Cloning Issues with Data Sets Brian Varney, Experis Business Analytics, Portage, MI

Same Data Different Attributes: Cloning Issues with Data Sets Brian Varney, Experis Business Analytics, Portage, MI Paper BB-02-2013 Same Data Different Attributes: Cloning Issues with Data Sets Brian Varney, Experis Business Analytics, Portage, MI ABSTRACT When dealing with data from multiple or unstructured data sources,

More information

Implementing Data Masking and Data Subset with IMS Unload File Sources

Implementing Data Masking and Data Subset with IMS Unload File Sources Implementing Data Masking and Data Subset with IMS Unload File Sources 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Cannot Create Index On View 'test' Because

Cannot Create Index On View 'test' Because Cannot Create Index On View 'test' Because The View Is Not Schema Bound Cannot create index on view AdventureWorks2012.dbo.viewTestIndexedView because it uses a LEFT, RIGHT, or FULL OUTER join, and no

More information

CimConteXtor User Guide

CimConteXtor User Guide CimConteXtor User Guide V3 1/86 CimConteXtor User Guide User Guide V3 CimConteXtor is an Enterprise Architect Add-In. The main purpose of CimConteXtor is to create a UML profile in EA, profile that is

More information

Insert Page Break Excel 2007 Not Working >>>CLICK HERE<<<

Insert Page Break Excel 2007 Not Working >>>CLICK HERE<<< Insert Page Break Excel 2007 Not Working Page breaks not appearing where you expect them in your subtotaled data? If you are using a later version (Excel 2007 or later), this tip may not work for you.

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

Release Notes for Business Integration Solutions for Microsoft Dynamics 365 for Operations

Release Notes for Business Integration Solutions for Microsoft Dynamics 365 for Operations Release Notes for Business Integration Solutions 7.1.1701 for Microsoft Dynamics 365 for Operations Release Notes 17 February 2017, To-increase 1 Table of Contents 1. General... 4 1.1 Purpose... 4 1.2

More information

Proje D2K. CMM (Capability Maturity Model) level Project Standard:- Corporate Trainer s Profile

Proje D2K. CMM (Capability Maturity Model) level Project Standard:- Corporate Trainer s Profile D2K Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

SINAMICS G/S: Tool for transforming Warning and Error Messages in CSV format

SINAMICS G/S: Tool for transforming Warning and Error Messages in CSV format Application example 03/2017 SINAMICS G/S: Tool for transforming Warning and Error Messages in CSV format https://support.industry.siemens.com/cs/ww/en/view/77467239 Copyright Siemens AG 2017 All rights

More information

Android UI DateBasics

Android UI DateBasics Android UI DateBasics Why split the UI and programing tasks for a Android AP The most convenient and maintainable way to design application user interfaces is by creating XML layout resources. This method

More information

5 Using the App 6 Using the App - Lead Details 7 Using the App - Qualifers 8 Using the App - Notes, photos and voice

5 Using the App 6 Using the App - Lead Details 7 Using the App - Qualifers 8 Using the App - Notes, photos and voice User Guide Exhibitor Guide to the JET Engage Scanner App Contents 1 Getting Setup 2 Qualifiers - get the data you want 3 Qualifiers - the different types 4 Downloading the App 5 Using the App 6 Using the

More information

Importing Metadata From an XML Source in Test Data Management

Importing Metadata From an XML Source in Test Data Management Importing Metadata From an XML Source in Test Data Management Copyright Informatica LLC 2017. Informatica, the Informatica logo, and PowerCenter are trademarks or registered trademarks of Informatica LLC

More information

Importing Flat File Sources in Test Data Management

Importing Flat File Sources in Test Data Management Importing Flat File Sources in Test Data Management Copyright Informatica LLC 2017. Informatica and the Informatica logo are trademarks or registered trademarks of Informatica LLC in the United States

More information

Symbio Manual. Administrator Role

Symbio Manual. Administrator Role Symbio Manual Administrator Role Version date: November 18 2018 Ploetz + Zeller GmbH Symbio Manual - Administrator Role 2 Content 1 Introduction 9 1.1 About this document 9 1.2 Before you start 9 1.3 Support

More information

Effective Web Dynpro - Adaptive RFC Models

Effective Web Dynpro - Adaptive RFC Models Effective Web Dynpro - Adaptive RFC Models Bertram Ganz, NWF Web Dynpro Foundation for Java Overview In many Web Dynpro applications, backend access is based on RFC modules in SAP systems. The Web Dynpro

More information

Dreamweaver Tutorials Working with Tables

Dreamweaver Tutorials Working with Tables Dreamweaver Tutorials This tutorial will explain how to use tables to organize your Web page content. By default, text and other content in a Web page flow continuously from top to bottom in one large

More information

ATL Transformation Examples. The KM3 to Metric ATL transformation

ATL Transformation Examples. The KM3 to Metric ATL transformation s The KM3 to Metric ATL transformation - version 0.1 - September 2005 by ATLAS group LINA & INRIA Nantes Content 1 Introduction... 1 2 The KM3 to Metrics ATL transformation... 1 2.1 Transformation overview...

More information

What s new in IBM Operational Decision Manager 8.9 Standard Edition

What s new in IBM Operational Decision Manager 8.9 Standard Edition What s new in IBM Operational Decision Manager 8.9 Standard Edition Release themes User empowerment in the Business Console Improved development and operations (DevOps) features Easier integration with

More information

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide

Coveo Platform 7.0. Microsoft Dynamics CRM Connector Guide Coveo Platform 7.0 Microsoft Dynamics CRM Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

QUESTIONS FOR AVERAGE BLOOMERS

QUESTIONS FOR AVERAGE BLOOMERS MANTHLY TEST JULY 2017 QUESTIONS FOR AVERAGE BLOOMERS 1. How many types of polymorphism? Ans- 1.Static Polymorphism (compile time polymorphism/ Method overloading) 2.Dynamic Polymorphism (run time polymorphism/

More information

Consult our web site at to see how to install our software.

Consult our web site at   to see how to install our software. The Production tool is a vertical order planning tool and reviewer. The production tool is where you create your issue MIB that is the file you will upload to Mag+ Publish in order to integrate the content

More information

Access Objects. Course Guide 2

Access Objects. Course Guide 2 MS Access Chapter 3 Access Objects Course Guide 2 Access Objects Tables - All data is stored in tables. When you create a new table, Access asks you define fields (column headings), giving each a unique

More information

Team Helpdesk for Outlook & SharePoint Managerial Installation and Configuration (for version 6 and above)

Team Helpdesk for Outlook & SharePoint Managerial Installation and Configuration (for version 6 and above) Team Helpdesk for Outlook & SharePoint Managerial Installation and Configuration (for version 6 and above) Page 1 Team Helpdesk System consists of two separate installs Manager and Agent. The managerial

More information

General Ledger Export to CLIME GL-1047

General Ledger Export to CLIME GL-1047 General Ledger Export to CLIME GL-1047 Overview This Extended Solution to the standard MAS 90 MAS 200 General Ledger module exports General Ledger account actual and budget data to another software, CLIME.

More information

ADD/EDIT A JOURNAL ENTRY

ADD/EDIT A JOURNAL ENTRY ADD/EDIT A JOURNAL ENTRY 1. In Intacct, journal entries are posted into specific journals, which function to categorically separate different types of journal entries. Journal entries can post to any of

More information

DATA MANAGEMENT. About This Guide. for the MAP Growth and MAP Skills assessment. Main sections:

DATA MANAGEMENT. About This Guide. for the MAP Growth and MAP Skills assessment. Main sections: DATA MANAGEMENT for the MAP Growth and MAP Skills assessment About This Guide This Data Management Guide is written for leaders at schools or the district who: Prepare and upload student roster data Fix

More information

Access 2016: Core Database Management, Manipulation, and Query Skills; Exam

Access 2016: Core Database Management, Manipulation, and Query Skills; Exam Microsoft Office Specialist Access 2016: Core Database Management, Manipulation, and Query Skills; Exam 77-730 Successful candidates for the Access 2016 exam have a fundamental understanding of the application

More information

Software skills for librarians: Library carpentry. Module 2: Open Refine

Software skills for librarians: Library carpentry. Module 2: Open Refine Software skills for librarians: Library carpentry Module 2: Open Refine A tool for working with tabular data Examine your data Resolve inconsistencies and perform global edits Split data into smaller chunks

More information

Online Business Account How to view and download reports

Online Business Account How to view and download reports Online Business Account How to view and download reports Online Business Account How to view and download reports There are a range of reports in the reporting suite that can provide you with information

More information

Asset Keeper Pro. Features Listing

Asset Keeper Pro. Features Listing Overview Asset Keeper Pro is a cross-platform (Windows and Mac) full-featured desktop fixed asset, depreciation, software application. Asset Keeper Pro is 100% tax compliant with all current Federal regulations.

More information

IBM Proventia Management SiteProtector Policies and Responses Configuration Guide

IBM Proventia Management SiteProtector Policies and Responses Configuration Guide IBM Internet Security Systems IBM Proventia Management SiteProtector Policies and Responses Configuration Guide Version2.0,ServicePack8.1 Note Before using this information and the product it supports,

More information

Informatica PIM. Data Lookup via Java Transformations. Version: Date:

Informatica PIM. Data Lookup via Java Transformations. Version: Date: Informatica PIM Data Lookup via Java Transformations Version: Date: 23 July 29, 2014 Table of Contents Introduction 3 Step-by-step example 3 Create a new Java Transformation 3 Include code to retrieve

More information

Create CSV for Asset Import

Create CSV for Asset Import Create CSV for Asset Import Assets are tangible items, equipment, or systems that have a physical presence, such as compressors, boilers, refrigeration units, transformers, trucks, cranes, etc. that are

More information

Interface Documentation in Solution Documentation

Interface Documentation in Solution Documentation Interface Documentation in Solution Documentation SAP Solution Manager 7.2, SP05 SAP DBS July 2017 Agenda Introduction Interfaces in Solution Documentation Interface Documentation Application Migration

More information

B - Broken Track Page 1 of 8

B - Broken Track Page 1 of 8 B - Broken Track There's a gap in the track! We need to make our robot even more intelligent so it won't get stuck, and can find the track again on its own. 2017 https://www.hamiltonbuhl.com/teacher-resources

More information

Copyright...4. Overview Managing Snapshots... 6

Copyright...4. Overview Managing Snapshots... 6 Contents 2 Contents Copyright...4 Overview... 5 Managing Snapshots... 6 Company Snapshots...6 Examples of Sensitive Data Preservation in Snapshots... 9 To Take a Snapshot...10 To Toggle the Visibility

More information

Introduction to Mathcad

Introduction to Mathcad University of Wyoming ESIG Computer Lab April 2, 2005 Preface The Mathcad environment offers a blend of computation, visualization, symbolic manipulation and documentation to provide a "self-documenting"

More information

Exam Information Guide

Exam Information Guide Exam Information Guide Exam Numbers: Certification Track: RDCR201 & RDCR301 Availability Date: April 4, 2005 Languages Published: Exam Specifics: Target Audience: CRCP - Crystal Reports Certified Professional

More information

CREATE LISTS WITH MILLENNIUM II

CREATE LISTS WITH MILLENNIUM II CREATE LISTS WITH MILLENNIUM II IUGSA, Pretoria. 9-10 November 2006 Anette Lessing Library Systems Administrator Academic Information Service. University of Pretoria Anette.lessing@up.ac.za 1 Content Working

More information

Con guration Management

Con guration Management Con guration Management Theory and practice Andrea Pescetti andrea@nuvole.org Fabian Bircher fabian@nuvole.org Antonio De Marco antonio@nuvole.org web: nuvole.org twitter: @nuvoleweb Our Distributed Team

More information

Microsoft Windows X64 versions Microsoft Windows NT 4.0 Professional Microsoft Windows 98SE Microsoft Windows ME, Microsoft Windows XP Home Not qualif

Microsoft Windows X64 versions Microsoft Windows NT 4.0 Professional Microsoft Windows 98SE Microsoft Windows ME, Microsoft Windows XP Home Not qualif Sage SalesLogix Compatibility Checklist Hardware and software requirements for v6.2, v7.0, and v7.2. The hardware requirements for Sage SalesLogix are to be used as a guideline. Hardware requirements depend

More information

Guide to using Membership lists

Guide to using Membership lists Your Membership list Guide to using Membership lists A maximum of five Committee Members per Local Group can be given website editing rights and there are two types of access available: senior rights allow

More information

The Extensible Markup Language (XML) and Java technology are natural partners in helping developers exchange data and programs across the Internet.

The Extensible Markup Language (XML) and Java technology are natural partners in helping developers exchange data and programs across the Internet. 1 2 3 The Extensible Markup Language (XML) and Java technology are natural partners in helping developers exchange data and programs across the Internet. That's because XML has emerged as the standard

More information

Goal. Generic Programming and Inner classes. Minor rewrite of linear search. Obvious linear search code. Intuitive idea of generic linear search

Goal. Generic Programming and Inner classes. Minor rewrite of linear search. Obvious linear search code. Intuitive idea of generic linear search Goal Generic Programming and Inner classes First version of linear search Input was array of int More generic version of linear search Input was array of Comparable Can we write a still more generic version

More information

Using the Scripting Interface

Using the Scripting Interface CHAPTER 5 This chapter describes the scripting interface that ACS 5.3 provides to perform bulk operations on ACS objects using the Import and Export features. ACS provides the import and export functionalities

More information

Java 1.8 Programming

Java 1.8 Programming One Introduction to Java 2 Usage of Java 3 Structure of Java 4 Flexibility of Java Programming 5 Two Running Java in Dos 6 Using the DOS Window 7 DOS Operating System Commands 8 Compiling and Executing

More information

Working with Tables in Word 2010

Working with Tables in Word 2010 Working with Tables in Word 2010 Table of Contents INSERT OR CREATE A TABLE... 2 USE TABLE TEMPLATES (QUICK TABLES)... 2 USE THE TABLE MENU... 2 USE THE INSERT TABLE COMMAND... 2 KNOW YOUR AUTOFIT OPTIONS...

More information

Phone: Fax: Directions for setting up MARCO Insert Item #A-6LI 3 H x 4 W

Phone: Fax: Directions for setting up MARCO Insert Item #A-6LI 3 H x 4 W Phone: 1.866.289.9909 Fax: 1.866.545.5672 www.marcopromotionalproducts.com Directions for setting up MARCO Insert Item #A-6LI 3 H x 4 W Word Perfect Directions Step 1. Open Word Perfect Step 2. Click Format

More information

To open an existing XperiDo template, go to the Connection panel by clicking the large blue XD icon in the upper left corner of the XperiDo ribbon.

To open an existing XperiDo template, go to the Connection panel by clicking the large blue XD icon in the upper left corner of the XperiDo ribbon. Templates Opening an existing template Via the templates folder Via the datasets folder Speeding up things Import and export templates Export Import Documents without a data source Opening an existing

More information

Microsoft Dynamics 365 Customization and Configuration

Microsoft Dynamics 365 Customization and Configuration Microsoft Dynamics 365 Customization and Configuration Microsoft MB2-716 Dumps Available Here at: /microsoft-exam/mb2-716-dumps.html Enrolling now you will get access to 99 questions in a unique set of

More information

SelfTestEngine.PR000041_70questions

SelfTestEngine.PR000041_70questions SelfTestEngine.PR000041_70questions Number: PR000041 Passing Score: 800 Time Limit: 120 min File Version: 20.02 http://www.gratisexam.com/ This is the best VCE I ever made. Try guys and if any suggestion

More information

Generating/Updating code from whole project

Generating/Updating code from whole project Round-trip engineering is the ability to generate model from source code and generate source code from UML model, and keep them synchronized. You can make use of round-trip engineering to keep your implementation

More information

Maven 2.1 Artifact Resolution Specification

Maven 2.1 Artifact Resolution Specification Maven 2.1 Artifact Resolution Specification Notes to work out in later sections: Graph-based artifact resolution Decouple from Maven's core Binary graph that is pre-resolved for a POM Artifacts should

More information

How-to No 1 Quality Assurance for Output Management

How-to No 1 Quality Assurance for Output Management How-to No 1 Quality Assurance for Output Management This guide describes how to compare the content of a PDF document with the underlying database content (e.g. Oracle, IBM etc.). Step-by-step guide Database

More information

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10 CONTENTS Chapter 1 Introduction to Dreamweaver CS3 1 About Dreamweaver CS3 Interface...4 Title Bar... 4 Menu Bar... 4 Insert Bar... 5 Document Toolbar... 5 Coding Toolbar... 6 Document Window... 7 Properties

More information