0Harlequin RIP. Named Color Databases. Technical Note Hqn039 June 2001

Size: px
Start display at page:

Download "0Harlequin RIP. Named Color Databases. Technical Note Hqn039 June 2001"

Transcription

1 0Harlequin RIP Named Color Databases Technical Note Hqn039 June 2001

2 1 Introduction The Harlequin RIP uses named color databases for various purposes including recombination, or interception and color management, of named colors. This document describes the use of these databases with recombination. Note: A description of the use of named color databases for interception and color management may be added in a revised version of this document. The Harlequin RIP supports recombination of preseparated jobs where it can identify the separations as being for different colors and obtain a process equivalent in the color space of the output device. 2 When is a database necessary? When the RIP encounters a separation name, it looks first for an equivalent defined in the job. This is for reasons of both accuracy and convenience. Colors defined in the job should be self-consistent and they are always available. The RIP is able to recover such information from the incoming job where: the job is well-structured the job comes from some well-known applications If the job contains both a spot name and a process-color equivalent, then the RIP can start recombination immediately and does not refer to the named color databases. The RIP processes jobs that supply only a name, provided that there is some accessible reference linking spot colors and their process equivalent. As with the device-independent PANTONE values already shipped with the Harlequin RIP for other uses, this reference can be a file local to the RIP, or a sequence of files. An OEM or an end-user can provide a custom reference file, perhaps building it by measuring actual values of spot inks. The process equivalent can be defined in any convenient color space: XYZ, L*a*b*, and calibrated RGB. (These are implemented as specific CIEBasedABC colorspaces.) CMYK RGB 1 Commercial in Confidence Technical Note Hqn039: v101 June 2001

3 3 Order of database search The RIP reads these reference files as required by the incoming job, so there is an opportunity for a suitable OEM-written workflow system to create a dynamic resource, such as a local file refreshed from a centrally maintained database. If all these files fail to provide a match, the RIP fails to image the job and displays an appropriate message. 3 Order of database search The order of search for recombine is defined in the file: SW/NamedColorOrder/Recombine Note: The similar Intercept file is used to define the order of search for interception and color management. Normally, custom OEM or user files produced to match a specific job or type of job should be first, or at least early, in the search order. If the custom files do not exist, or fail to find a match, the RIP can proceed to another stage where it uses some standard local files. The inclusion of these files and the search order among the files are both easily definable. See Appendix A, Example of ordering file. There is also scope here for an OEM to create or purchase other large databases of color equivalents and add the databases to these standard files. 4 Definition of equivalents The Harlequin RIP is shipped with example files that show how to define colors with XYZ, CMYK, and RGB equivalents. These come from sources including the PANTONE equivalents already mentioned, and applications such as Adobe Illustrator. As an example of file format only, there is a file based on RGB colors from the X Windows system on the UNIX operating system. Definitions intended for use with color management must be made in a CIEBasedABC colorspace: XYZ, L*a*b*, or calibrated RGB. Note: Harlequin suggests that each database file should define equivalents in only one colorspace. While it is currently possible to combine definitions from Technical Note Hqn039: v101 June 2001 Commercial in Confidence 2

4 different colorspaces in one file, using this ability may complicate use of such a file in future. The handling of different languages is important. Unlike a user interface, which can be switched into the preferred language for a site, the database may need to recognize the names of the same process colors given in several languages. A simple solution is repeat the definitions for names in each language of interest, for example, giving the same equivalent for Red, Rot, Rosso, Rojo, Rouge, and so on. Another consideration is case sensitivity and the use of mixed case in color names. The supplied KnownColors file maps all color names to uppercase, to provide a case-insensitive search. See Appendix B, Example of database file. Appendix A Example of ordering file Each ordering file defines a resource named the same as the file. The resource must be of type /NamedColorOrder. This listing shows how the Recombine file shipped with the RIP defines a search order of the referenced files: KnownColors, IllustratorColors, PantoneU, PantoneV. These referenced files should be in the SW/NamedColor folder. KnownColors defines the common alternate process colors: Red, Green, and Blue. IllustratorColors defines different values for these same colors and defines some additional shades such as Gold and Grass Green. The search order shown in the example Recombine ordering file means that the definition of Red will always be taken from KnownColors. Any files added by an OEM can be added to the search order before or after these files. Both supplied files are small and the decision should be made on the desired search order rather than search time. 3 Commercial in Confidence Technical Note Hqn039: v101 June 2001

5 Appendix B Example of database file This file is called SW/NamedColorOrder/Recombine. %!PS-Adobe-3.0 %%Title: Recombine %%Creator: Harlequin %%CreationDate: February 1999 %%For: Harlequin % Copyright (c) Harlequin Limited, 1999 All Rights Reserved. %%EndComments % This resource defines the order in which NamedColor resource % databases should be searched during recombine when % looking for CMYK equivalents. /Recombine [ /KnownColors /IllustratorColors % /Sample %uncomment this line to include Sample /PantoneU /PantoneV ] /NamedColorOrder defineresource %%EOF Appendix B Example of database file Each database file defines a resource named the same as the file. The resource must be of type /NamedColor. A database file can be made suitable for use with both recombination and color management by defining colors in a CIEBasedABC colorspace and defining the Lookup procedure suitably. A database file intended for use with recombination only can define the RCLookup procedure and a very simple Lookup procedure, as shown in the following listing. (If there is no RCLookup procedure, recombination uses the Lookup procedure.) This listing shows what a simple file able to hold equivalents defined in CMYK, and thus suitable for recombination only, looks like. This file is supplied as: SW/NamedColor/KnownColors Technical Note Hqn039: v101 June 2001 Commercial in Confidence 4

6 The contents of this file are: %!PS-Adobe-3.0 %%Title: KnownColors %%Creator: Harlequin %%CreationDate: February 1999 %%For: Harlequin % Copyright (c) Harlequin Limited, 1999 All Rights Reserved. %%EndComments % This header will create a dictionary containing all the named % colors in this file, along with their CMYK values. % Done this way to minimise VM use. currentglobal false setglobal 12 dict begin % scratch, will close off after using with // % array with lower -> upper case /a (a) 0 get def /z (z) 0 get def /A (A) 0 get def /NCcasemap 256 string def { NCcasemap exch dup put } for //a 1 //z { NCcasemap exch dup //a sub //A add put } for /NCstr 256 string def % converts a string to upper case; % converts name to string too, if necessary /NCupcase { //NCstr cvs dup length 1 sub roll { 2 copy get //NCcasemap exch get 2 index 3 1 roll put } for } bind def /linebuff 100 string def { << % Do nothing if asked for named color intercepts /Lookup { pop pop false } bind 5 Commercial in Confidence Technical Note Hqn039: v101 June 2001

7 Appendix B Example of database file /RCLookup { % database name //NCupcase exec % convert name to uppercase exch % name database /Colors get % name colors exch 2 copy % colors name colors name known { % colors name get % color true % color true } { % colors name pop pop false % false } ifelse % color true ; or : false } bind /ColorSpace /DeviceCMYK % Note this tinttransform _always_ returns the values % for a solid tint. /TintTransform { exch pop aload pop } bind /Colors << { % Read in the colorname currentfile //linebuff readline not { pop exit } if cvn [ % And read in the 4 CMYK values currentfile token pop currentfile token pop currentfile token pop currentfile token pop ] >> >> end } loop /KnownColors exch /NamedColor defineresource pop setglobal } exec RED GREEN BLUE Technical Note Hqn039: v101 June 2001 Commercial in Confidence 6

8 Note: The file must end as shown, with the last portion being the color definitions. Because of the way that the code reads the definitions, there cannot be trailing comments. Change history v First issue, for ScriptWorks 5.1 v Updated cover page and copyright page. Removed references to ScriptWorks 5.1 and replaced with Harlequin RIP. No other changes made to text. 7 Commercial in Confidence Technical Note Hqn039: v101 June 2001

9 Appendix B Example of database file Technical Note Hqn039: v101 June 2001 Commercial in Confidence 8

10 Copyright Global Graphics Software Limited. All Rights Reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior written permission of Global Graphics Software Limited. The information in this publication is provided for information only and is subject to change without notice. Global Graphics Software Limited and its affiliates assume no responsibility or liability for any loss or damage that may arise from the use of any information in this publication. The software described in this book is furnished under license and may only be used or copied in accordance with the terms of that license. ScriptWorks is a registered trademark and Harlequin, the Global Graphics Software logo, EasyTrap, FireWorks, FlatOut, Harlequin Color Management System, HCMS, Harlequin RIP, Harlequin Color Production Solutions, HCPS, Harlequin Color Proofing, HCP, Harlequin Full Color System, HFCS, Harlequin ICC Profile Processor, HIPP, Harlequin Standard Color System, HSCS, Harlequin Chain Screening, HCS, Harlequin Dispersed Screening, HDS, Harlequin Micro Screening, HMS, Harlequin Precision Screening, HPS, Harlequin Screening Library, HSL, Harpoon, RipFlow, ScriptWorks MicroRIP, ScriptProof, ProofReady, SetGold, Scalable Open Architecture RIP, SOAR, TrapMaster, TrapWorks, PDF Creator and RIPFlow are all trademarks of Global Graphics Software Limited. Portions licensed under U.S. Patents: Nos. 4,500,919, 4,941,038 and 5,212,546. EasyTrap is licensed under one or more of the following U.S. Patents: Nos. 5,113,249, 5,323,248, 5,420,702, 5,481,379. Adobe, Adobe Photoshop, Adobe Type Manager, Acrobat, Display PostScript, Adobe Illustrator, PostScript, Distiller and PostScript 3 are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries which may be registered in certain jurisdictions. Global Graphics Software Limited is a licensee of Pantone, Inc. PANTONE Colors generated by ScriptWorks are four-color process simulations and may not match PANTONE-identified solid color standards. Consult current PANTONE Color Publications for accurate color. PANTONE, Hexachrome, and PANTONE CALIBRATED are trademarks of Pantone, Inc. Pantone, Inc., Other brand or product names are the registered trademarks or trademarks of their respective holders. US Government Use The ScriptWorks software is a computer software program developed at private expense and is subject to the following Restricted Rights Legend: Use, duplication, or disclosure by the United States Government is subject to restrictions as set forth in (i) FAR Alt III or (ii) FAR , as applicable. Use by agencies of the Department of Defense (DOD) is subject to Global Graphics Software s customary commercial license as contained in the accompanying license agreement, in accordance with DFAR (a). For purposes of the FAR, the Software shall be deemed to be `unpublished and licensed with disclosure prohibitions, rights reserved under the copyright laws of the United States. Global Graphics Software Incorporated, 95 Sawyer Road, Waltham, Massachusetts Commercial in Confidence Technical Note Hqn039: v101 June 2001

0Harlequin RIP. The GenLin utility program. Technical Note Hqn026 June 2001

0Harlequin RIP. The GenLin utility program. Technical Note Hqn026 June 2001 0Harlequin RIP The GenLin utility program Technical Note Hqn026 June 2001 The GenLin utility provides an easy way to use automatic and semi-automatic densitometers with Harlequin RIP version 4.1 or later.

More information

0EV-jetsetter RIP. OPI User Manual. Version 5.5 October AG45128P3 Rev. 1

0EV-jetsetter RIP. OPI User Manual. Version 5.5 October AG45128P3 Rev. 1 0EV-jetsetter RIP OPI User Manual Version 5.5 October 2001 AG45128P3 Rev. 1 Copyright and Trademarks OPI User manual Version 5.5 October 2001 Part number: HQ-OPI-5.5.1 Copyright 1992 2001 Global Graphics

More information

PROFILES AND CALIBRATION. For the Harlequin Host Renderer SDK and Harlequin MultiRIP

PROFILES AND CALIBRATION. For the Harlequin Host Renderer SDK and Harlequin MultiRIP PROFILES AND CALIBRATION For the Harlequin Host Renderer SDK and Harlequin MultiRIP May 2013 CONTENTS 2 Contents Profiles and calibration................................................. 3 Locations and

More information

Migration Utility for Windows. Version 7.0r0. May 2013

Migration Utility for Windows. Version 7.0r0. May 2013 TM Migration Utility for Windows Version 7.0r0 May 2013 CONTENTS 2 Contents 1 Overview...................................................................... 1 2 Versions of the RIP..............................................................

More information

Release Notes. Version 10.0r1. November 2013

Release Notes. Version 10.0r1. November 2013 TM Release Notes Version 10.0r1 November 2013 CONTENTS 2 Contents 1 New features and improvements.................................................. 3 2 Notes about this release..........................................................

More information

USER MANUAL. Version 3.7

USER MANUAL. Version 3.7 USER MANUAL Version 3.7 Copyright and Trademarks MaxWorkFlow 3.7 User Manual Version 3.7 February 2003 Part number: MWF-3.7 Copyright 1992-2003 Global Graphics Software Limited All Rights Reserved. No

More information

SetGoldPro 4.0 User Manual. August 2011

SetGoldPro 4.0 User Manual. August 2011 SetGoldPro 4.0 User Manual August 2011 Copyright and Trademarks SetGoldPro 4.0 User Manual Version 4.0: August 2011 Part number: GG.SETGOLDPRO.4.0 Document issue: 106 Copyright 2011 Global Graphics Software

More information

CIP3 output plugin. Version 1.5r0. April 2013

CIP3 output plugin. Version 1.5r0. April 2013 TM CIP3 output plugin Version 1.5r0 April 2013 CONTENTS 2 Contents 1 Introduction.................................................................... 3 1.1 Requirements.................................................................

More information

JDF Enabler User s and System Guide. Version 3.2

JDF Enabler User s and System Guide. Version 3.2 JDF Enabler User s and System Guide Version 3.2 September 2008 Copyright and Trademarks JDF Enabler for the Harlequin RIP Version 3.2: September 2008 Part number: HQ-JDF Enabler-v.3.2-OEM Document issue:

More information

ProofMate (ProofReady) Plugin for Epson Variable Size Droplet (VSD) Printers

ProofMate (ProofReady) Plugin for Epson Variable Size Droplet (VSD) Printers ProofMate (ProofReady) Plugin for Epson Variable Size Droplet (VSD) Printers Version 1.2r3 November 2007 AG45121 Rev. 8 Copyright and Trademarks ProofReady Plugin for Epson VSD printers Version 1.2r3 Part

More information

0RIPMate for Windows operating systems

0RIPMate for Windows operating systems 0RIPMate for Windows operating systems Harlequin PLUS Server RIP v9.0 June 2011 AG12325 Rev. 13 Copyright and Trademarks Harlequin PLUS Server RIP June 2011 Part number: HK 9.0 ÄìOEM ÄìWIN Document issue:

More information

How Do I: Find the Highest Elevation within an Area

How Do I: Find the Highest Elevation within an Area GeoMedia Grid: How Do I: Find the Highest Elevation within an Area Topics: Key Words: Tower Location, Site Location, Raster to Vector, and Vector to Raster Digital Elevation Models, Buffer Zone, and Zonal

More information

GIrtlProof Reference Manual Windows NT 4.0 / Win 2k / Win XP

GIrtlProof Reference Manual Windows NT 4.0 / Win 2k / Win XP GIrtlProof Reference Manual Windows NT 4.0 / Win 2k / Win XP Version 3.27 RIP Version 6.0 Copyright by Xitron, Inc. All rights reserved. No part of this publication may be reproduced, stored in a retrieval

More information

Adobe Acrobat Weblink Plug-in

Adobe Acrobat Weblink Plug-in Adobe Acrobat Weblink Plug-in This online guide contains all the information you need to use the Adobe Acrobat Weblink plug-in with Acrobat Reader and Acrobat Exchange. Click one of the following topics

More information

KIMOTO K I M O S E T T E R R I P. Kimosetter RIP User Guide 1. Revised: February 2015 U SER GUID E (FOR W INDOWS 7 )

KIMOTO K I M O S E T T E R R I P. Kimosetter RIP User Guide 1. Revised: February 2015 U SER GUID E (FOR W INDOWS 7 ) KIMOTO K I M O S E T T E R R I P U SER GUID E (FOR W INDOWS 7 ) Revised: February 2015 Kimosetter RIP User Guide 1 COPYRIGHT AND TRADEMARKS Kimosetter RIP User Guide Copyright Notices for the Software

More information

ProofMate (ProofReady) Plugin for Epson Stylus Pro 7800/9800 Printers

ProofMate (ProofReady) Plugin for Epson Stylus Pro 7800/9800 Printers ProofMate (ProofReady) Plugin for Epson Stylus Pro 7800/9800 Printers Version 1.1r0 August 2010 AG50567 Rev. 5 Copyright and Trademarks Epson7800/9800 ProofReady Plugin for Epson StylusPro 7800/9800 printers

More information

Recording Output Intentions for Color Critical Workflows ADOBE SYSTEMS INCORPORATED

Recording Output Intentions for Color Critical Workflows ADOBE SYSTEMS INCORPORATED bbc Recording Output Intentions for Color Critical Workflows Technical Note #5413 Version : 1.0 ADOBE SYSTEMS INCORPORATED Corporate Headquarters 345 Park Avenue San Jose, CA 95110-2704 (408) 536-6000

More information

HP Professional PANTONE Emulation

HP Professional PANTONE Emulation HP Professional PANTONE Emulation Situation PANTONE formula guides are an essential part of any graphic designer s toolkit and are fundamental for choosing and specifying the spot colors of graphical elements

More information

Nimsoft Monitor. proxy Guide. v3.1 series

Nimsoft Monitor. proxy Guide. v3.1 series Nimsoft Monitor proxy Guide v3.1 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

ProofMate (ProofReady) Plugin HP DesignJet 90/130

ProofMate (ProofReady) Plugin HP DesignJet 90/130 ProofMate (ProofReady) Plugin HP DesignJet 90/130 Version 1.1r0 June 2009 AG50537 Rev. 5 Copyright and Trademarks HP DesignJet 90/130 ProofReady Plugin Version 1.1r0 Document issue 124 Part number:hq-1.0r4-hpdesignjet90/130

More information

SOLIDWORKS PDM. Using SOLIDWORKS PDM. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, Massachusetts USA

SOLIDWORKS PDM. Using SOLIDWORKS PDM. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, Massachusetts USA SOLIDWORKS PDM Using SOLIDWORKS PDM Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, Massachusetts 02451 USA 1995-2017, Dassault Systemes SolidWorks Corporation, a Dassault Systèmes SE

More information

HP LF Printing Knowledge Center

HP LF Printing Knowledge Center HP LF Printing Knowledge Center Proof a press with CMYK Application: QuarkXPress 6.5 Printer: HP Designjet 30/130 series Software: HP Software RIP Operating System: Windows 1. First recommendations: See

More information

Nimsoft Service Desk. Single Sign-On Configuration Guide. [assign the version number for your book]

Nimsoft Service Desk. Single Sign-On Configuration Guide. [assign the version number for your book] Nimsoft Service Desk Single Sign-On Configuration Guide [assign the version number for your book] Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document

More information

0WebMaker 3.0 Release Notes

0WebMaker 3.0 Release Notes 0WebMaker 3.0 Release Notes Version 3.0 WebMaker 3.0 provides a number of new features and improvements, including a simplified user interface, HTML 3.2 compatibility, and support for Casccading Style

More information

How to Use These Tutorials Adobe Acrobat Tour Creating a Presentation Capturing and Cataloging About the Acrobat Tutorials

How to Use These Tutorials Adobe Acrobat Tour Creating a Presentation Capturing and Cataloging About the Acrobat Tutorials How to Use These Tutorials Adobe Acrobat Tour Creating a Presentation Capturing and Cataloging About the Acrobat Tutorials How to Use These Tutorials The Adobe Acrobat 3.0 interactive tutorials are brief

More information

version 2.0 Release Notes English Spire CXP3535/CXP3535e Color Server for Xerox DocuColor 3535 Printer-Copier Service Pack Version 2.

version 2.0 Release Notes English Spire CXP3535/CXP3535e Color Server for Xerox DocuColor 3535 Printer-Copier Service Pack Version 2. Release Notes English Spire CXP3535/CXP3535e Color Server for Xerox DocuColor 3535 Printer-Copier Service Pack Version 2.0 SP1 version 2.0 739-00139A-EN www.creo.com Copyright Copyright 2005 Creo Inc.

More information

Nimsoft Monitor Server

Nimsoft Monitor Server Nimsoft Monitor Server Configuration Guide v6.00 Document Revision History Version Date Changes 1.0 10/20/2011 Initial version of Nimsoft Server Configuration Guide, containing configuration and usage

More information

unisys Product Documentation Library CDLib Manager User s Guide Release Level April

unisys Product Documentation Library CDLib Manager User s Guide Release Level April unisys Product Documentation Library CDLib Manager User s Guide Release Level 10.701 April 2012 8207 3867 001 NO WARRANTIES OF ANY NATURE ARE EXTENDED BY THIS DOCUMENT. Any product or related information

More information

Nimsoft Monitor. sysstat Guide. v1.1 series

Nimsoft Monitor. sysstat Guide. v1.1 series Nimsoft Monitor sysstat Guide v1.1 series Legal Notices Copyright 2012, CA. All rights reserved. Warranty The material contained in this document is provided "as is," and is subject to being changed, without

More information

SOLIDWORKS PDM Professional

SOLIDWORKS PDM Professional SOLIDWORKS PDM Professional Administering SOLIDWORKS PDM Professional Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, Massachusetts 02451 USA 1995-2018, Dassault Systemes SolidWorks

More information

Organize and Deliver Digital Assets Using Adobe Experience Manager v6.x Student Workbook

Organize and Deliver Digital Assets Using Adobe Experience Manager v6.x Student Workbook Organize and Deliver Digital Assets Using Adobe Experience Manager v6.x Student Workbook ADOBE DIGITAL LEARNING SERVICES 2016 Adobe Systems Incorporated. All rights reserved. Organize and Deliver Digital

More information

Using save Outside the Server Loop

Using save Outside the Server Loop Using save Outside the Server Loop Adobe Developer Support Technical Note #5129 14 February 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA 95110 http://partners.adobe.com/

More information

Kimosetter RIP. User Guide (for Windows) Kimosetter RIP User Guide. Revised: July, 2007

Kimosetter RIP. User Guide (for Windows) Kimosetter RIP User Guide. Revised: July, 2007 Kimosetter RIP User Guide (for Windows) Revised: July, 2007 1 Copyright and Trademarks (Win version) July, 2007 The Copyright Notices for the Software and Documentation: Copyright Lucid Dream Software,

More information

Settings to Create Printer Ready Ads for Publication

Settings to Create Printer Ready Ads for Publication Settings to Create Printer Ready Ads for Publication How to Preflight with Acrobat Pro With Adobe Acrobat Pro (not Acrobat Reader) you can check and verify the files you make are PDF/X-1a s. Open the Acrobat

More information

RipControl. User and Installation Manual. Load balancing software for Harlequin RIPs.

RipControl. User and Installation Manual. Load balancing software for Harlequin RIPs. RipControl Load balancing software for Harlequin RIPs User and Installation Manual www.infralogic.dk Copyright and Trademarks ControlCenter RipControl User Guide Version 1.0 Oct 2005 Part number: CCRIPCTL

More information

ES3640e MFP Software Installation Guide

ES3640e MFP Software Installation Guide ES3640e MFP Software Installation Guide About this Guide This guide describes the initial printer driver installation. For more detailed information, refer to the EFI User Software Installation Guide and

More information

equestionnaire User Guide

equestionnaire User Guide Prodika Product Lifecycle Management equestionnaire User Guide Release 5.1 Part Number: TPPR-0045-5.1A Make sure you check for updates to this manual at the Oracle Documentation Web site Copyrights and

More information

SmartPlant Materials Materials Price Lists

SmartPlant Materials Materials Price Lists SmartPlant Materials Materials Price Lists Version 2008.2 (6.3.3) January 2009 DMAR1-PE-200132A Copyright Copyright 2009 Intergraph Corporation. All Rights Reserved. Including software, file formats, and

More information

SAS Workflow Manager 2.2: Administrator s Guide

SAS Workflow Manager 2.2: Administrator s Guide SAS Workflow Manager 2.2: Administrator s Guide SAS Documentation July 19, 2018 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2018. SAS Workflow Manager 2.2: Administrator

More information

SOLIDWORKS. SOLIDWORKS Electrical: Schematic. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A.

SOLIDWORKS. SOLIDWORKS Electrical: Schematic. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A. SOLIDWORKS SOLIDWORKS Electrical: Schematic Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA 02451 U.S.A. 1995-2017, Dassault Systemes SolidWorks Corporation, a Dassault Systèmes SE

More information

Oracle Communications Performance Intelligence Center

Oracle Communications Performance Intelligence Center Oracle Communications Performance Intelligence Center Browser Export Scheduler Guide Release 10.2 E66874 Revision 1 February 2016 i Oracle Communications Performance Intelligence Center Browser Export

More information

SOLIDWORKS. SOLIDWORKS CAM Standard Essentials. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A.

SOLIDWORKS. SOLIDWORKS CAM Standard Essentials. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A. SOLIDWORKS SOLIDWORKS CAM Standard Essentials Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA 02451 U.S.A. 1995-2017, Dassault Systemes SolidWorks Corporation, a Dassault Systèmes

More information

SAS Clinical Data Integration 2.6

SAS Clinical Data Integration 2.6 SAS Clinical Data Integration 2.6 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2015. SAS Clinical Data Integration 2.6: User's Guide.

More information

Proofing Plug-in Manual. Canon 12-Color. February 28, Xitron Part Number Doc

Proofing Plug-in Manual. Canon 12-Color. February 28, Xitron Part Number Doc Proofing Plug-in Manual Canon 12-Color February 28, 2008 Xitron Part Number Doc-1116-0108 Overview Xitron s Navigator PostScript RIP relies on software modules called plug-ins to communicate with output

More information

Pearson Inform 5.1. User Guide. Adding, Editing and Deleting Folders. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s).

Pearson Inform 5.1. User Guide. Adding, Editing and Deleting Folders. Date: 1/26/2010. Copyright 2009 Pearson Education, Inc. or its affiliate(s). Pearson Inform 5.1 User Guide Adding, Editing and Deleting Folders Date: 1/26/2010 Copyright 2009 Pearson Education, Inc. or its affiliate(s). All rights reserved. No part of this publication may be reproduced

More information

Fiery EXP8000 Color Server SERVER & CONTROLLER SOLUTIONS. Fiery Graphic Arts Package

Fiery EXP8000 Color Server SERVER & CONTROLLER SOLUTIONS. Fiery Graphic Arts Package Fiery EXP8000 Color Server SERVER & CONTROLLER SOLUTIONS Fiery Graphic Arts Package 2004 Electronics for Imaging, Inc. The information in this publication is covered under Legal Notices for this product.

More information

Emulation of the execform Operator

Emulation of the execform Operator Emulation of the execform Operator Adobe Developer Support Technical Note #5113 31 March 1992 Adobe Systems Incorporated Adobe Developer Technologies 345 Park Avenue San Jose, CA 95110 http://partners.adobe.com/

More information

SOLIDWORKS. SOLIDWORKS CAM Standard. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A.

SOLIDWORKS. SOLIDWORKS CAM Standard. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A. SOLIDWORKS SOLIDWORKS CAM Standard Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA 02451 U.S.A. 1995-2018, Dassault Systemes SolidWorks Corporation, a Dassault Systèmes SE company,

More information

Using application properties in IBM Cúram Social Program Management JUnit tests

Using application properties in IBM Cúram Social Program Management JUnit tests Using application properties in IBM Cúram Social Program Management JUnit tests Erika Grine (Erika.Grine@ie.ibm.com) 8 June 2015 Senior Software Engineer, IBM Cúram Social Program Management group IBM

More information

ICC color management for print production

ICC color management for print production ICC color management for print production TAGA Annual Technical Conference 2002 W Craig Revie Principal Consultant Fuji Film Electronic Imaging Limited ICC Chair of the Graphic Arts Special Interest Group

More information

WHAT'S NEW SOLIDWORKS ENTERPRISE PDM 2014

WHAT'S NEW SOLIDWORKS ENTERPRISE PDM 2014 WHAT'S NEW SOLIDWORKS ENTERPRISE PDM 2014 Contents Legal Notices...3 Introduction...6 1 SolidWorks Enterprise PDM...7 Automated Cache Management...7 Consolidated Delayed in State Notifications...8 Dynamic

More information

HP Indigo EPM Preflight Solution (v2)

HP Indigo EPM Preflight Solution (v2) HP Indigo EPM Preflight Solution (v2) Contents 1. Copyrights... 3 2. Introduction... 4 3. Differences with v1... 5 4. Solution deliverables... 6 5. Installation... 7 5.1. and PitStop Server... 7 5.2. The

More information

Oracle Alert Documentation Updates

Oracle Alert Documentation Updates Oracle Alert Documentation Updates RELEASE 11.0.1 June 1998 Copyright 1998, Oracle Corporation. All rights reserved. The Programs (which include both the software and documentation) contain proprietary

More information

Optimize. Profile. Quick Start Guide4

Optimize. Profile. Quick Start Guide4 Optimize. Profile. Quick Start Guide4 QuickStart Guide for CoPrA 4 Copyright 2016 ColorLogic GmbH. All rights reserved. Reprinting of this information in whole or in part is only permitted with our express,

More information

NVM EXPRESS, INC. TRADEMARK AND LOGO USAGE GUIDELINES EFFECTIVE AS OF April 26, 2018

NVM EXPRESS, INC. TRADEMARK AND LOGO USAGE GUIDELINES EFFECTIVE AS OF April 26, 2018 NVM EXPRESS, INC. TRADEMARK AND LOGO USAGE GUIDELINES EFFECTIVE AS OF April 26, 2018 THE NVM EXPRESS MARKS (AS DEFINED BELOW) MAY BE USED BY NVM EXPRESS, INC. MEMBERS ONLY PURSUANT TO THESE TRADEMARK AND

More information

SAS Infrastructure for Risk Management 3.4: User s Guide

SAS Infrastructure for Risk Management 3.4: User s Guide SAS Infrastructure for Risk Management 3.4: User s Guide SAS Documentation March 2, 2018 The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2017. SAS Infrastructure for

More information

Valor NPI for System Administrators. Table of Contents

Valor NPI for System Administrators. Table of Contents Valor NPI for System Administrators 2015 Mentor Graphics Corporation All rights reserved. This document contains information that is trade secret and proprietary to Mentor Graphics Corporation or its licensors

More information

Indicates a caution you must observe when operating the product. Shows the number of the page that has related contents.

Indicates a caution you must observe when operating the product. Shows the number of the page that has related contents. Installation Guide This manual contains detailed instructions and notes on the operation and use of this product. For your safety and benefit, read this manual carefully before using the product. Notice

More information

Xerox FreeFlow Print Server Clear Dry Ink User Guide Bring out the shine!

Xerox FreeFlow Print Server Clear Dry Ink User Guide Bring out the shine! Helpful Tips when Designing with Clear Dry Ink Xerox Color 800/1000 Presses FreeFlow Print Server Clear Dry Ink User Guide Dry Ink in itself adds a certain amount of sheen to the page. To maximize the

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix

SUPPORT MATRIX. HYCU OMi Management Pack for Citrix HYCU OMi Management Pack for Citrix : 2.0 Product release date: October 2017 Document release data: April 2018 Legal notices Copyright notice 2014-2018 HYCU. All rights reserved. This document contains

More information

SOLIDWORKS SOLIDWORKS MBD. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A.

SOLIDWORKS SOLIDWORKS MBD. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A. SOLIDWORKS SOLIDWORKS MBD Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA 02451 U.S.A. 1995-2016, Dassault Systemes SolidWorks Corporation, a Dassault Systèmes SE company, 175 Wyman

More information

Oracle Hospitality Query and Analysis Languages and Translation Configuration Guide. March 2016

Oracle Hospitality Query and Analysis Languages and Translation Configuration Guide. March 2016 Oracle Hospitality Query and Analysis Languages and Translation Configuration Guide March 2016 Original Issued Date: March 2006 Vision / Serduct version: 03.x Author Product: MICROS Opera 3.x Copyright

More information

File Preparation Guide

File Preparation Guide File Preparation Guide COLOUR Follow the steps inside to ensure an easy transition from artwork to print. You can also download our distiller and preflight settings to assist with your file preparation.

More information

Capital. Capital Logic Generative. v Student Workbook

Capital. Capital Logic Generative. v Student Workbook Capital Capital Logic Generative v2016.1 Student Workbook 2017 Mentor Graphics Corporation All rights reserved. This document contains information that is trade secret and proprietary to Mentor Graphics

More information

PRESS FOR SUCCESS. Meeting the Color Challenge

PRESS FOR SUCCESS. Meeting the Color Challenge PRESS FOR SUCCESS Meeting the Color Challenge MEETING THE COLOR CHALLENGE The world is filled with color and it impacts and enhances our daily lives. But the colors we perceive can vary, depending on where

More information

SOLIDWORKS. SOLIDWORKS Electrical: Advanced. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A.

SOLIDWORKS. SOLIDWORKS Electrical: Advanced. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A. SOLIDWORKS SOLIDWORKS Electrical: Advanced Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA 02451 U.S.A. 1995-2017, Dassault Systemes SolidWorks Corporation, a Dassault Systèmes SE

More information

Solstice Backup 4.2 User s Guide

Solstice Backup 4.2 User s Guide Solstice Backup 4.2 User s Guide 2550 Garcia Avenue Mountain View, CA 94043 U.S.A. Part No: 802-6105-10 Revision A, April 1996 A Sun Microsystems, Inc. Business 1996 Sun Microsystems, Inc. 2550 Garcia

More information

Reporting User Guide. Prodika Product Lifecycle Management. Release 5.1

Reporting User Guide. Prodika Product Lifecycle Management. Release 5.1 Prodika Product Lifecycle Management Reporting User Guide Release 5.1 Part No. TPPR-0029-5.1A Make sure you check for updates to this manual at the Oracle Documentation Web site Oracle s Prodika PLM 5.1

More information

SOLIDWORKS SOLIDWORKS Simulation Premium: Dynamics. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, Massachusetts USA

SOLIDWORKS SOLIDWORKS Simulation Premium: Dynamics. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, Massachusetts USA SOLIDWORKS 2016 SOLIDWORKS Simulation Premium: Dynamics Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, Massachusetts 02451 USA 1995-2015, Dassault Systemes SolidWorks Corporation, a

More information

User Manual Release Note. PhaserMatch

User Manual Release Note. PhaserMatch User Manual Release Note PhaserMatch Copyright Tektronix, Inc. Printed in the U.S.A. Unpublished rights reserved under the copyright laws of the United States. Contents of this publication may not be reproduced

More information

Oracle Hospitality ecommerce Integration Cloud Service Security Guide Release 4.2 E

Oracle Hospitality ecommerce Integration Cloud Service Security Guide Release 4.2 E Oracle Hospitality ecommerce Integration Cloud Service Security Guide Release 4.2 E96343-01 May 2018 Copyright 2010, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

JD Edwards World User Reserved Information. Version A9.2

JD Edwards World User Reserved Information. Version A9.2 JD Edwards World User Reserved Information Version A9.2 Revised June 30, 2009 Copyright Notice Copyright 2009, Oracle. All rights reserved. Trademark Notice Oracle is a registered trademark of Oracle Corporation

More information

SmartPlant Materials Release Bulletin

SmartPlant Materials Release Bulletin SmartPlant Materials Release Bulletin Version 2007 (6.2) January 2007 DMAR1-PE-200042E Copyright Copyright 2003-2007 Intergraph Corporation. All Rights Reserved. Including software, file formats, and audiovisual

More information

SOLIDWORKS. SOLIDWORKS Drawings - ANSI. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A.

SOLIDWORKS. SOLIDWORKS Drawings - ANSI. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A. SOLIDWORKS SOLIDWORKS Drawings - ANSI Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA 02451 U.S.A. 1995-2018, Dassault Systemes SolidWorks Corporation, a Dassault Systèmes SE company,

More information

PayPal Express Checkout Services

PayPal Express Checkout Services Title Page PayPal Express Checkout s Using the Simple Order API May 2017 CyberSource Corporation HQ P.O. Box 8999 San Francisco, CA 94128-8999 Phone: 800-530-9095 CyberSource Contact Information For general

More information

SmartPlant 3D MHE Training. Overview

SmartPlant 3D MHE Training. Overview SmartPlant 3D MHE Training Overview Version 2011 Copyright Copyright 2009 Intergraph Corporation. All Rights Reserved. Including software, file formats, and audiovisual displays; may be used pursuant to

More information

Solution Explorer Guide Release 9.2

Solution Explorer Guide Release 9.2 [1]JD Edwards EnterpriseOne Tools Solution Explorer Guide Release 9.2 E53539-01 October 2015 Describes the Solution Explorer application and discusses the menu design, menu filter, and task launch modes.

More information

Oracle. Field Service Cloud Using the Parts Catalog

Oracle. Field Service Cloud Using the Parts Catalog Oracle Field Service Cloud Release August 2016 Field Service Cloud Part Number: E67887-10 Copyright 2016, Oracle and/or its affiliates. All rights reserved Authors: The Field Service Cloud Information

More information

VirtualViewer V1.0 Java FileNet for P8 Connector Installation Guide

VirtualViewer V1.0 Java FileNet for P8 Connector Installation Guide VirtualViewer V1.0 Java FileNet for P8 Connector Installation Guide N O T E An online version of this manual contains information on the latest updates to VirtualViewer. To find the most recent version

More information

SMART PDF PREFLIGHT, CORRECTION AND EDITING MADE EASY!

SMART PDF PREFLIGHT, CORRECTION AND EDITING MADE EASY! SMART PDF PREFLIGHT, CORRECTION AND EDITING MADE EASY! 2 THE MOST COMMON PDF ERRORS HAVEN T CHANGED IN 15 YEARS* UNEMBEDDED FONTS LOW RESOLUTION IMAGES RGB OBJECTS MISSING BLEED INCORRECT OVERPRINT TRANSPARENCY

More information

Recipe Calculation Survey. Materials Control. Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D Neuss Date: August 21 st 2007.

Recipe Calculation Survey. Materials Control. Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D Neuss Date: August 21 st 2007. Recipe Calculation Survey Materials Control Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D - 41460 Neuss Date: August 21 st 2007 Page 1 of 8 Copyright 2015, Oracle and/or its affiliates. All rights

More information

Describe CVS Tutorial

Describe CVS Tutorial Describe CVS Tutorial Copyright 1994-2005 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights reserved. All brands

More information

Branding Policy 2015

Branding Policy 2015 Branding Policy November 2015 Archery NZ Inc. Style Guide Table of Contents Use of the Archery NZ Inc. Brand...4 The Archery NZ Inc. Logo - General Use...5 The Archery NZ Inc. Logo - Reverse Use...6 The

More information

IBM. Avoiding Inventory Synchronization Issues With UBA Technical Note

IBM. Avoiding Inventory Synchronization Issues With UBA Technical Note IBM Tivoli Netcool Performance Manager 1.4.3 Wireline Component Document Revision R2E1 Avoiding Inventory Synchronization Issues With UBA Technical Note IBM Note Before using this information and the product

More information

Oracle Hospitality Suite8 Export to Outlook User Manual Release 8.9. July 2015

Oracle Hospitality Suite8 Export to Outlook User Manual Release 8.9. July 2015 Oracle Hospitality Suite8 Export to Outlook User Manual Release 8.9 July 2015 Copyright 1987, 2015, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided

More information

Release Bulletin Sybase Mobile Workflow for SAP Business Suite 1.2.1

Release Bulletin Sybase Mobile Workflow for SAP Business Suite 1.2.1 Release Bulletin Sybase Mobile Workflow for SAP Business Suite 1.2.1 Sybase Mobile Workflow for SAP Business Suite 1 DOCUMENT ID: DC01185-01-0121-01 LAST REVISED: September 2011 Copyright 2011 by Sybase,

More information

Oracle. Applications Cloud Using Functional Setup Manager. Release 13 (update 18A)

Oracle. Applications Cloud Using Functional Setup Manager. Release 13 (update 18A) Oracle Applications Cloud Release 13 (update 18A) Release 13 (update 18A) Part Number E92071-02 Copyright 2011-2018, Oracle and/or its affiliates. All rights reserved. Authors: Sandesh Posa, Mary Kalway

More information

HYCU SCOM Management Pack for F5 BIG-IP

HYCU SCOM Management Pack for F5 BIG-IP HYCU SCOM Management Pack for F5 BIG-IP Product version: 5.3 Product release date: March 2018 Document edition: Second Legal notices Copyright notice 2015-2018 HYCU. All rights reserved. This document

More information

User Manual. Materials Control. Production Tool. Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D Neuss Date: March 2012.

User Manual. Materials Control. Production Tool. Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D Neuss Date: March 2012. User Manual Materials Control Production Tool Copyright by: MICROS-FIDELIO GmbH Europadamm 2-6 D - 41460 Neuss Date: March 2012 Page 1 of 22 Copyright 2015, Oracle and/or its affiliates. All rights reserved.

More information

SAS Clinical Data Integration Server 2.1

SAS Clinical Data Integration Server 2.1 SAS Clinical Data Integration Server 2.1 User s Guide Preproduction Documentation THIS DOCUMENT IS A PREPRODUCTION DRAFT AND IS PROVIDED BY SAS INSTITUTE INC. ON AN AS IS BASIS WITHOUT WARRANTY OF ANY

More information

SOLIDWORKS. Using SOLIDWORKS Composer. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A.

SOLIDWORKS. Using SOLIDWORKS Composer. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A. SOLIDWORKS Using SOLIDWORKS Composer Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA 02451 U.S.A. 1995-2017, Dassault Systemes SolidWorks Corporation, a Dassault Systèmes SE company,

More information

October 14, Business Intelligence Connector Guide

October 14, Business Intelligence Connector Guide October 14, 2017 Copyright 2013, 2017, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

IBM. Networking INETD. IBM i. Version 7.2

IBM. Networking INETD. IBM i. Version 7.2 IBM IBM i Networking INETD Version 7.2 IBM IBM i Networking INETD Version 7.2 Note Before using this information and the product it supports, read the information in Notices on page 5. This document may

More information

Web Client Manual. for Macintosh and Windows. Group Logic Inc Fax: Internet:

Web Client Manual. for Macintosh and Windows. Group Logic Inc Fax: Internet: Web Client Manual for Macintosh and Windows Group Logic Inc. 703-528-1555 Fax: 703-527-2567 Email: info@grouplogic.com Internet: www.grouplogic.com Copyright (C) 1995-2007 Group Logic Incorporated. All

More information

SOLIDWORKS. SOLIDWORKS Drawings - ANSI. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A.

SOLIDWORKS. SOLIDWORKS Drawings - ANSI. Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA U.S.A. SOLIDWORKS SOLIDWORKS Drawings - ANSI Dassault Systèmes SolidWorks Corporation 175 Wyman Street Waltham, MA 02451 U.S.A. 1995-2016, Dassault Systemes SolidWorks Corporation, a Dassault Systèmes SE company,

More information

AvePoint Cloud Backup. Release Notes

AvePoint Cloud Backup. Release Notes AvePoint Cloud Backup Release Notes Table of Contents Table of Contents... 2 AvePoint Cloud Backup 1.1.1... 3... 3... 3 AvePoint Cloud Backup 1.1.0... 5... 5... 5 AvePoint Cloud Backup 1.0.4... 6... 6...

More information

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Primavera Portfolio Management 9.0 What s New Copyright 1999-2011, Oracle and/or its affiliates. The Programs (which include both the software and documentation) contain proprietary information; they are

More information

MicroStrategy Desktop Quick Start Guide

MicroStrategy Desktop Quick Start Guide MicroStrategy Desktop Quick Start Guide Version: 10.4 10.4, June 2017 Copyright 2017 by MicroStrategy Incorporated. All rights reserved. If you have not executed a written or electronic agreement with

More information

Oracle VueLink for Documentum

Oracle VueLink for Documentum Oracle VueLink 19.3.2 for Documentum User s Manual An Integration between Documentum and AutoVue Client/Server Deployment Copyright 1998, 2012, Oracle and/or its affiliates. All rights reserved. The Programs

More information