GS1 US Data Hub Product

Size: px
Start display at page:

Download "GS1 US Data Hub Product"

Transcription

1 GS1 US Data Hub 3.4 Product via This guide is specifically written for Solution Partners who are certified under the CCP program and augments current GS1 US Developer documentation. For information on the program, please contact us at 1 Page

2 Contents Solution Provider Job Aids... 3 How a Brand Owner selects a Solution Provider Job Aid... 3 How a Brand Owner assigns an In Use Product record to a Solution Provider Job Aid... 5 Getting Started... 7 How to retrieve assigned products from a Brand Owner Job Aid How to add enhanced content to an assigned product record via the Job Aid How to retrieve an existing image from a product record using the How to add an enhanced image to the product record via the Job Aid How to determine the status of approved and rejected records How to retrieve a list of records a Brand Owner unassigned APPENDIX Commands for the CCP Data Dictionary for the Enhanced Content Attributes Page

3 Solution Provider Job Aids How a Brand Owner selects a Solution Provider Job Aid After you negotiate your business agreement, a Brand Owner must take steps to ensure they select you as their CCP. These are the initialization steps they will need to take to get started. A Brand Owner will assign their chosen Solution Provider from the main menu in GS1 Data Hub in the Administration screen: GS1 US Data Hub main screen Step Action 1. Under Solution Provider Settings towards the middle of the page, click Manage. 3 Page

4 2. The Select Solution Providers will display all of the available Solution Providers. Check mark each Solution Provider the Brand Owner has contracted with. 3. Click Save. 4. A confirmation Solution Provider Settings dialog box appears confirming they have Successfully added Solution Provider. Click OK A CCP Selection will automatically be sent to the Solution Provider informing them the they have been selected. 4 Page

5 How a Brand Owner assigns an In Use Product record to a Solution Provider Job Aid Now that the Brand Owner selected you as their CCP, they will now need to select the product(s) to assign to you. The Brand Owner selects In Use product(s) and assigns them to a Solution Provider. The Brand Owner, completes the following: In GS1 Data Hub Product, from the main menu, click Product --> Manage Step 1. Select the In Use tab. Action. 2. Click the Assign/Review Enhanced Content button. 5 Page

6 3. When a Brand Owner selects Assign/Review Enhanced Content, a new set of tables appear. The first is called Select Products. This table displays all In Use products, along with their Enhanced Status (first column). Visual indicators help the Brand Owner to easily identify which product(s) have been assigned and completed, or which products have yet to be assigned. 4. After selecting the product(s), the Brand owner clicks the Assign Solution Provider button. User can select multiple product records using shift control or clickinig on the Select All button. 6 Page

7 5. From the dropdown menu in the dialog box, the Brand Owner chooses the Solution Provider to assign the designated product(s) to enhance content or image. Note: only Solution Provider(s) that have been assigned from the Administration field will appear. 6. A Products Assigned will automatically be generated and sent to the Solution Provider informing them to login via the to retrieve the product record(s) to enhance. The notification you receive is located in the Message Center within Data Hub. If you checked CCP Notice in your preferences, you will also receive an alerting you to check notifications. The entitygln information provided is necessary for setting up your. Getting Started It s recommended to use the Advanced REST client (ARC) interface downloadable from or Postman from Once the Advanced REST client (ARC) interface has been installed, the following information will be needed to work with your assigned products: 7 Page

8 Step 1. Locating your key(s) Action Retrieve or use the Key(s) assigned to you Log into Data Hub and click on the Developer Portal, click on your company name and then Profile to retrieve your Key(s). The values provided are unique to your company and you will use these in setting up the header for your calls. 2. Application Keys Application credentials or keys (Key) are used to authenticate HTTP GETAssignedProducts requests. Your Keys are provided in the Developer Portal. Your application must pass this key to GS1 US using the requests to authenticate your application. This key should be kept secret between you and GS1 US and never made public nor passed to other companies. 3. The type of Method you will choose (example: GET or POST) From the ARC interface, click Method at the top and select GET or POST. The GET Method retrieves product detail information. The POST Method allows you to add the content for the enhanced attributes. 8 Page

9 5. The request URL will map to the type of action you are taking, such as getting a list of assigned products from a Brand Owner using its unique identifier, Entity GLN Owner entity GLN> See Appendix for a list of commands you will use for the CCP program. 9 Page

10 How to retrieve assigned products from a Brand Owner Job Aid Please note: Version 2 (api.gs1us.org) of the GS1US Data Hub uses the RESTful endpoint structure. Data will be exchanged in JSON format using standard HTTP verbs (in this scenario, getassignedproducts is used). To determine what products have been assigned to the Solution Provider, use this method to retrieve assigned product record details from the Brand Owner s Data Hub product list. Step 1. Action On the home page of the Developer Portal, click on your company name and then Profile to retrieve your Key(s) that will be used in the Header field. The values are unique to your company and you will use these in setting up the file Headers. Each Product has its own key. 2. To retrieve assigned records, you will use the GET method using the command getassignedproducts in the request URL along with the entitygln of the Brand Owner provided as a parameter in the notification message. 3. Use REQUEST URL: Owner entity GLN> Change the < Brand Owner entitygln> to the value provided in the notification. 4. Add a Header field. Enter in the Header Name: Key In the Header Value enter the appropriate key. 5. Click SEND to submit the request to Data Hub. 6. If successful, the response will return the product details as a reference, shown in the example below: Response: 200 OK ms DETAILS "success": true, "productinformation": "gtin": "XXXXXXXnnnnnn", 10 Page

11 "products": [ "brandname": "Brian's Best", "description": "Reserved Item", "state": "In Use", "status": "Assigned", "actiondate": " T09:13:50.5", "gtin": "XXXXXXXX000733", "gtin13": "", "gtin12": "XXXXXXX00733", "industry": "General", "height": null, "width": null, "depth": null, "dimensionmeasure": null, "grossweight": null, "netweight": null, "weightmeasure": null, "sku": null, "companyname": "GS1 US Enterprises 1", "entitygln": "XXXXXXX000009", "CompanyURI": "/company/v2/company/xxxxx ", "ancestors": [], "descendants": [], 7. One or more product detail records may be retrieved in a single query against the entitygln, if the Brand Owner assigns them. 8. You must submit changes one record at a time. See job aid How to add enhanced content to an assigned product record via the Job Aid 11 Page

12 How to add enhanced content to an assigned product record via the Job Aid Please note: Versions 2 (api.gs1us.org) of the GS1US Data Hub uses the RESTful endpoint structure. Data will be exchanged in JSON format using standard HTTP verbs (in this example, postproductcontent is used). To add enhanced content to the assigned products use the POST method using the command postproductcontent in the request URL, follow these steps: Step Action 1. On the home page of the Developer Portal, click on your company name and then Profile to retrieve your Key(s) that will be used in the Header field. The values are unique to your company and you will use these in setting up the file Headers. Each Product has its own key. 2. To retrieve assigned records, you will use the GET method using the command getassignedproducts in the request URL along with the entitygln of the Brand Owner provided as a parameter in the notification message. 3. Use REQUEST URL: Change the < Brand Owner entitygln> to the value provided in the notification. 4. Add a Header field. Enter in the Header Name: Key In the Header Value field enter the appropriate key. 5. Body Content Type: Application JSON 6. The Body Content Type updates Data Hub enhanced content attributes. Use the following code to change the enhanced content. (Recommendations: Copy and paste the syntax below, then change the individual field values. Save the syntax as a named template for repeated use. We are using the 14-digit placeholder, XXXXXXXXXXXXXX, to represent the GTIN number in this example. "gtin" : "XXXXXXXXXXXXXX", "enhancedfields": [ "fieldname": "GlobalProductClassification", "fieldvalue": " " "fieldname": "LABELDESCRIPTION", 12 Page

13 ] } "fieldvalue": "Test labeldescription" "fieldname": "netcontent1countstr", "fieldvalue": "1.0000" "fieldname": "netcontent1uom", "fieldvalue": "lbs" "fieldname": "Descriptionshort", "fieldvalue": "test update from " "fieldname": "LABELDESCRIPTION", "fieldvalue": "Test labeldescription" "fieldname": "netcontent1countstr", "fieldvalue": "1.0000" "fieldname": "netcontent1uom", "fieldvalue": "lbs" "fieldname": "Descriptionshort", "fieldvalue": "test update from " "fieldname": "subbrandname", "fieldvalue": "test update from " "fieldname": "netcontent2countstr", "fieldvalue": "123333" "fieldname": "netcontent3countstr", "fieldvalue": "123333" "fieldname": "netcontent2uom", "fieldvalue": "lbs" "fieldname": "NetContent3UOM", "fieldvalue": "oz" } 13 Page

14 7. Receive confirmation that the request was successful. Response: 200 OK ms DETAILS "Success 8. Scroll to Body for data 14 Page

15 How to retrieve an existing image from a product record using the Please note: Versions 2 (api.gs1us.org) of the GS1US Data Hub uses the RESTful endpoint structure. Data will be exchanged in JSON format using standard HTTP verbs (in this example, getimage is used). To retrieve an existing image file for the assigned product s record, use the following steps: Step Action 1. On the home page of the Developer Portal, click on your company name and then Profile to retrieve your Key(s) that will be used in the Header field. The values are unique to your company and you will use these in setting up the file Header. Each Product has its own key. 2. Use Method: GET This method retrieves an existing image file from the Data Hub record. This method takes a valid GTIN of the Brand Owner as its parameter. 3. Use Request URL: Change the <GTIN> for the product record from which you want to retrieve image. For example, retrieving Eric s Diabetic Peanut Butter Cookies image. The GTIN for this product is XXXXXX The Request URL becomes: 4. Add a Header field. Enter in the Header Name: Key In the Header Value field enter the appropriate key Browse for and select the picture file to upload. Note: file size not to exceed 1MB. Update the Field Name with File. Click SEND to submit the request to Data Hub. Receive confirmation that the request was successful. 15 Page

16 Response: 200 OK ms DETAILS "Success" If a record is pending approval, Data Hub will return an error that the record could not be found. Wait to resubmit, or until that record has been approved. Scroll to the Body for data. 16 Page

17 How to add an enhanced image to the product record via the Job Aid Please note: Versions 2 (api.gs1us.org) of the GS1US Data Hub uses the RESTful endpoint structure. Data will be exchanged in JSON format using standard HTTP verbs (in this example, postimage is used). To add an enhanced image file to the assigned product s record, use the following steps: Step 1. Action On the home page of the Developer Portal, click on your company name and then Profile to retrieve your Key(s) that will be used in the Header field. The values are unique to your company and you will use these in setting up the file Header. Each Product has its own key. 2. Use Method: POST This method adds an enhanced image to the Data Hub record. This method takes a valid GTIN as its parameter. 3. Use Request URL: Change the <GTIN> to the product you want to add an image to. For example, updating Eric s Diabetic Peanut Butter Cookies image. The GTIN for this product is XXXXXX The Request URL becomes: 4. Add Header field Use Header Name: ApiKey In the Header Value type your key 5. The Body will display a Choose File field. Click to search for your file 6. Browse for and select the picture file to upload. Note: file size not to exceed 1MB Update the Field Name with File Click Send to submit the request to Data Hub 9. Receive confirmation that the request was successful 17 Page

18 Response: 200 OK ms DETAILS "Success" 11. If a record is pending approval, Data Hub will return an error that the record could not be found. Wait to resubmit or until that record has been approved. 12. Scroll to the Body for data 13. Only one image file may be posted to a product record. Only one image file can be conveyed in a single submission. 18 Page

19 How to determine the status of approved and rejected records Please note: Versions 2 (api.gs1us.org) of the GS1US Data Hub uses the RESTful endpoint structure. Data will be exchanged in JSON format using standard HTTP verbs (in this example, getcontentstatus is used). This step provides a way for you to determine the status of records assigned to you by the Brand Owner. Step Action 1. On the home page of the Developer Portal, click on your company name and then Profile to retrieve your Key(s) that will be used in the Header field. The values are unique to your company and you will use these in setting up the file Header. Each Product has its own key. 2. Use Method: GET This method enables you to retrieve a list of approved and rejected records for a given Brand Owner. This method takes the valid entity GLN of the Brand Owner as its parameter. 3. Use Request URL: Owner entitygln> Change the <Brand Owner entitygln> to the value provided in the notification 4. Add a Header field Use the following under Header Name: Apikey In the Header Value type your key 5. Click SEND to submit the request to Data Hub. 6. Receive confirmation that the request was successful and scroll through the file to review results. Response: 200 OK ms DETAILS "Success" If a record is pending approval, Data Hub will return an error that the record can not be found. Wait to resubmit or until that record has been approved. Scroll to the Body for data 19 Page

20 How to retrieve a list of records a Brand Owner unassigned Please note: Versions 2 (api.gs1us.org) of the GS1US Data Hub uses the RESTful endpoint structure. Data will be exchanged in JSON format using standard HTTP verbs. (in this example, getunassignedproducts is used) This step provides a way for you to determine the status of records that were unassigned by the Brand Owner. Step Action 1. On the home page of the Developer Portal, click on your company name and then Profile to retrieve your Key(s) that will be used in the Header field. The values are unique to your company and you will use these in setting up the file Header. Each Product has its own key. 2. Use Method: GET This method enables you to retrieve a list of unassigned records for a given Brand Owner. This method takes the valid entity GLN of the Brand Owner as its parameter. 3. Use Request URL: Owner entitygln> Change the < Brand Owner entitygln> to the value provided in the notification 4. Add Header field Use Header Name: ApiKey In the Header Value type your Key 5. Click SEND to submit the request to Data Hub. 6. Receive confirmation that the request was successful and scroll through the file to review results. Response: 200 OK ms DETAILS "Success" If a record is pending approval, Data Hub will return an error that the record could not be found. Wait to resubmit or until that record has been approved. Scroll to the Body for data 20 Page

21 APPENDIX 21 Page

22 Commands for the CCP Request URL: 22 Page

23 Data Dictionary for the Enhanced Content Attributes Notes: 1. When a Net Content field name is part of the record, both countstr and UOM field values must be entered. 2. Net Content fields are entered in sequence (e.g., Net Content 1 always first, then Net Content 2, then Net Content 3). 23 Page

GS1 US Data Hub 3.4 Product. Brand Owner s Guide to Managing Enhanced Content

GS1 US Data Hub 3.4 Product. Brand Owner s Guide to Managing Enhanced Content GS1 US Data Hub 3.4 Product Brand Owner s Guide to Managing Enhanced Content Table of Contents Contents Frequently Asked Questions by Brand Owners... 3 What is Enhanced Content?... 3 What is a GS1 US Certified

More information

Secure Access Manager (SAM) Administrator Guide December 2017

Secure Access Manager (SAM) Administrator Guide December 2017 Secure Access Manager (SAM) Administrator Guide December 2017 Copyright 2017 Exostar, LLC All rights reserved. 1 SECURE ACCESS MANAGER (SAM) OVERVIEW... 4 ADMINISTRATIVE ROLES OVERVIEW... 4 SAM NAVIGATIONAL

More information

Catalog Management Tool (CMT) Reference Guide

Catalog Management Tool (CMT) Reference Guide Catalog Management Tool (CMT) Reference Guide The Catalog Management Tool (CMT) provides data on items listed on the Portal s e-catalog. The CMT offers contracted vendors advanced item submission and catalog

More information

erequest How to apply guide

erequest How to apply guide Overview is an application that assists UCB in request life cycle management. UCB has clear guidance in place on what they can support or sponsor. Online requests will go through an internal review and

More information

GS1 US Data Hub 3.1 Company Using the Company Menu

GS1 US Data Hub 3.1 Company Using the Company Menu GS US Data Hub. Company Using the Company Menu Overview of the Company Menu GS US Data Hub Company is an intuitive, secure online tool that provides source-based (not crowd-sourced), validated data on

More information

ForeScout CounterACT. Configuration Guide. Version 3.4

ForeScout CounterACT. Configuration Guide. Version 3.4 ForeScout CounterACT Open Integration Module: Data Exchange Version 3.4 Table of Contents About the Data Exchange Module... 4 About Support for Dual Stack Environments... 4 Requirements... 4 CounterACT

More information

NIELSEN API PORTAL USER REGISTRATION GUIDE

NIELSEN API PORTAL USER REGISTRATION GUIDE NIELSEN API PORTAL USER REGISTRATION GUIDE 1 INTRODUCTION In order to access the Nielsen API Portal services, there are three steps that need to be followed sequentially by the user: 1. User Registration

More information

DCARC Defense Cost & Resource Center

DCARC Defense Cost & Resource Center DCARC Defense Cost & Resource Center EVM Central Repository Submitter Guide 7/26/2014 1 Submitter Training The following document provides step-by-step screenshots to illustrate the major actions performed

More information

Course Outline Repository Guide

Course Outline Repository Guide Contents... 1 How do I access the Course Outline Repository?... 1 How do I use the Course Outline Repository?... 2 How do I search the Course Repository?... 2 Where do I download the course outline?...

More information

How to Submit. Royalty Report Part I and. Royalty Report Part II

How to Submit. Royalty Report Part I and. Royalty Report Part II How to Submit Royalty Report Part I and Royalty Report Part II 1 Table of Contents 1. Introduction... 3 2. New User Registration... 3 3. Welcome Page... 4 4. User Settings... 5 5. Royalties... 6 6. Royalty

More information

VMware Solution Exchange (VSX) Partner User Manual v4

VMware Solution Exchange (VSX) Partner User Manual v4 VMware Solution Exchange (VSX) Partner User Manual v4 This document will guide you through the Administration functions available as a registered Partner in the VMware Solution Exchange. Table of Contents

More information

Partner Ready Portal: New Partner Registration Process

Partner Ready Portal: New Partner Registration Process Partner Ready Portal: New Partner Registration Process Quick Reference Guide for New Partners and Users of New Partner Companies in North America (NA) Purpose and target audience The purpose of this document

More information

Implementation Guide for protecting Juniper SSL VPN with BlackShield ID

Implementation Guide for protecting Juniper SSL VPN with BlackShield ID Implementation Guide for protecting Juniper SSL VPN with BlackShield ID Copyright Copyright 2011, CRYPTOCard All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed,

More information

SutiExpense Monthly Expense Report. User Guide 6.0

SutiExpense Monthly Expense Report. User Guide 6.0 SutiExpense Monthly Expense Report User Guide 6.0 Table of Contents Login... 1 Forgot Password... 1 Dashboard... 2 Settings Menu... 3 Change Password... 3 Setting Secondary Email Address... 4 Getting Receipts

More information

Federal Vendor Portal & e-invoicing User Guide. January 2018

Federal Vendor Portal & e-invoicing User Guide. January 2018 Federal Vendor Portal & e-invoicing User Guide January 2018 Federal Vendor Portal IMPORTANT NOTICE TO: Deloitte s Federal Practice Suppliers As part of our due diligence to pre-qualify suppliers for potential

More information

IBM Sterling Data Synchronization Manager. User Guide. DocumentationDate:12October2012

IBM Sterling Data Synchronization Manager. User Guide. DocumentationDate:12October2012 IBM Sterling Data Synchronization Manager User Guide DocumentationDate:12October2012 IBM Sterling Data Synchronization Manager User Guide DocumentationDate:12October2012 Note Before using this information

More information

CMS Client User Guide GSK Germany Version 3 (28/04/2014) Contents Page No Raising a Standard and Non-Standard Order Client Portal Login 3 New Client Registration 3 Client Portal Login 4 Webstore Login

More information

Release Notes. Concur Connect. Release Notes... 1

Release Notes. Concur Connect. Release Notes... 1 Release Notes Concur Connect Month Audience Contents Release Notes... 1 Documentation... 1 Portal Documentation Format Change... 1 Web Services... 2 Expense: Get List of Reports Function Updated... 2 Itinerary:

More information

Printed Materials Invitation to Qualify (ITQ) How to Submit an ITQ Proposal

Printed Materials Invitation to Qualify (ITQ) How to Submit an ITQ Proposal Printed Materials Invitation to Qualify (ITQ) How to Submit an ITQ Proposal To submit a proposal for the Printed Materials ITQ Contract, 4400015989, a supplier must be registered with the Commonwealth

More information

Oracle Sourcing Support Helpdesk: Telephone: > Option

Oracle Sourcing Support Helpdesk: Telephone: > Option esourcing FAQ s Oracle Sourcing Support Helpdesk: Telephone: 021-4534777 -> Option 2.2.2 Email: oraclesourcingsupport@ervia.ie FAQ s Forgotten Password? Logging In and Accessing Tenders Acknowledging Intent

More information

Filename:QIM-DP-05-Approve Quality Reject and Set in Process Page 1 of 12

Filename:QIM-DP-05-Approve Quality Reject and Set in Process Page 1 of 12 This Desktop Procedure demonstrates the steps to View & Download Attachment, Upload a QRA Attachment, and then Set the Issue Status to In Process in QIM. 1. Click the Worklists tab in the Navigation Pane.

More information

Upside Approvers Job Aid

Upside Approvers Job Aid Upside Approvers Job Aid Approving Contract Documents a. In the Toolbar, click on the Print Preview icon. The Print Preview dialog box opens. b. Click the Prepare Document button. Before you approve a

More information

User Manual. Declaration Creation, Submission and Approvals for ERDF For Beneficiary, Approver Beneficiary and Intermediary Body users. Version 0.

User Manual. Declaration Creation, Submission and Approvals for ERDF For Beneficiary, Approver Beneficiary and Intermediary Body users. Version 0. User Manual Declaration Creation, Submission and Approvals for ERDF For Beneficiary, Approver Beneficiary and Intermediary Body users. Version 0.3 Document Version Control Version Amendment Author Date

More information

Events User Guide for Microsoft Office Live Meeting from Global Crossing

Events User Guide for Microsoft Office Live Meeting from Global Crossing for Microsoft Office Live Meeting from Global Crossing Contents Events User Guide for... 1 Microsoft Office Live Meeting from Global Crossing... 1 Contents... 1 Introduction... 2 About This Guide... 2

More information

Oracle ebusiness CCTM Supplier: CCTM4 Enhancements

Oracle ebusiness CCTM Supplier: CCTM4 Enhancements Oracle ebusiness CCTM Supplier: CCTM4 Enhancements Oracle ebusiness CCTM Supplier: CCTM4 Enhancements RATE CARD ENHANCEMENTS: INTRODUCTION... 1 Rate Card History... 1 Rejected Rate Card Changes: Retained

More information

ForeScout Extended Module for Tenable Vulnerability Management

ForeScout Extended Module for Tenable Vulnerability Management ForeScout Extended Module for Tenable Vulnerability Management Version 2.7.1 Table of Contents About Tenable Vulnerability Management Module... 4 Compatible Tenable Vulnerability Products... 4 About Support

More information

ISUPPLIER PORTAL USER MANUAL ADERP VERSION 1.0

ISUPPLIER PORTAL USER MANUAL ADERP VERSION 1.0 ISUPPLIER PORTAL USER MANUAL ADERP VERSION 1.0 Contents Contents... i Oracle isupplier Portal Overview...1 Recommended Browsers and Settings...2 Advanced Settings...2 Turn-off pop-up blocker or Allow pop-up

More information

Forescout. Open Integration Module: Web API. Configuration Guide. Version 1.4

Forescout. Open Integration Module: Web API. Configuration Guide. Version 1.4 Forescout Version 1.4 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

More information

SDMS TRAINING MANUAL FOR TRAINING PARTNERS

SDMS TRAINING MANUAL FOR TRAINING PARTNERS SDMS TRAINING MANUAL FOR TRAINING PARTNERS Table of Contents Table of Contents Document History... Error! Bookmark not defined. Logging in to SDMS Portal (Partner Login)... 3 Creating Trainers... 6 Creating

More information

CMS Client Non Standard User Guide

CMS Client Non Standard User Guide CMS Client Non Standard User Guide Astra Zeneca UK Version 2 (06/06/2016) Contents Page No Client Portal Login... 1 Client Portal... 1-2 Configure Product Request... 2 Product Brand/Devision Selection...

More information

Upside Viewers Job Aid

Upside Viewers Job Aid Upside Using Filters to Find Contracts Use the Contract Listing View to find the contracts you re looking for. In the Menu Pane, expand Contracts. Click on the Contracts sub menu item. The Contract Listing

More information

ForeScout Open Integration Module: Data Exchange Plugin

ForeScout Open Integration Module: Data Exchange Plugin ForeScout Open Integration Module: Data Exchange Plugin Version 3.2.0 Table of Contents About the Data Exchange Plugin... 4 Requirements... 4 CounterACT Software Requirements... 4 Connectivity Requirements...

More information

ForeScout CounterACT. Configuration Guide. Version 1.2

ForeScout CounterACT. Configuration Guide. Version 1.2 ForeScout CounterACT Core Extensions Module: DNS Enforce Plugin Version 1.2 Table of Contents About the DNS Enforce Plugin... 3 What to Do... 4 Requirements... 4 Configure the Plugin... 4 Target IP...

More information

Tracking Assistantship Contract Status

Tracking Assistantship Contract Status Tracking Assistantship Contract Status 1. Log in to MyUNM. 2. Select Employee Life tab and click to enter LoboWeb. 3. Go to the GSAC page. Verify you are in the Employee tab, and then select UNM Graduate

More information

Wind River Partner Portal User Training Guide

Wind River Partner Portal User Training Guide Wind River Partner Portal User Training Guide Table of Contents Applying for a new user login (for existing Wind River Registered Partners). 2 Logging into the Portal & PRM Portal Home Page 4 Company Profile

More information

Installation Guide Worksoft Analyze

Installation Guide Worksoft Analyze Installation Guide Worksoft Analyze Worksoft, Inc. 15851 Dallas Parkway, Suite 855 Addison, TX 75001 www.worksoft.com 866-836-1773 Worksoft Analyze Installation Guide Version 1.0.0 Copyright 2018 by Worksoft,

More information

ForeScout Extended Module for Web API

ForeScout Extended Module for Web API ForeScout Extended Module for Web API Version 1.2.1 and above Table of Contents About This Module... 3 What to Do... 3 Requirements... 3 CounterACT Software Requirements... 3 ForeScout Module License Requirements...

More information

ADERP ISUPPLIER PORTAL USER MANUAL VERSION 1.2

ADERP ISUPPLIER PORTAL USER MANUAL VERSION 1.2 ADERP ISUPPLIER PORTAL USER MANUAL VERSION 1.2 Document Control Change Record 4 Date Author Version Change Reference 12-Dec-2016 DOF 1.0 08-Feb-2017 DOF 1.1 Updated with new URL links 23-Mar-2017 DOF 1.2

More information

Hewlett Packard Enterprise Smart Quote

Hewlett Packard Enterprise Smart Quote Hewlett Packard Enterprise Smart Quote User Guide for Reseller Table of contents 1 Introduction to Smart Quote... 3 1.1 What is Smart Quote?... 3 1.2 Who will use Smart Quote?... 3 1.3 Do I require a special

More information

Xerox Financial Services Canada (XFSC) Leasing the way you want it

Xerox Financial Services Canada (XFSC) Leasing the way you want it Xerox Financial Services Canada (XFSC) Leasing the way you want it Quick Application Blistering Fast Credit Decisions Fast Simple Effective Available 24/7 2012 Xerox Corporation. All rights reserved. XEROX,

More information

EPA Research Programme EPA s Online Grant Application & Project Management Portal

EPA Research Programme EPA s Online Grant Application & Project Management Portal EPA Research Programme 2014-2020 EPA s Online Grant Application & Project Management Portal QUICK GUIDE TO MAKING AN APPLICATION April 2018 Version 3 Powered by SmartSimple The EPA Research Programme is

More information

Southwest Power Pool Portal Market Participant General User s Guide

Southwest Power Pool Portal Market Participant General User s Guide Southwest Power Pool Portal Market Participant General User s Guide 1. Overview... 4 1.1 User Roles... 4 1.1.1 Market Participant Level Roles... 4 1.1.2. Asset Owner Level Roles... 4 1.1.3. Market Operations

More information

PAF Action Form Instructions

PAF Action Form Instructions The purpose of this document is to provide a guide on filling out PAF Forms through the Laserfiche online interface once you have received an email notification that a PAF Form has been assigned to you.

More information

THE EUROPEAN MEDICINES VERIFICATION ORGANISATION

THE EUROPEAN MEDICINES VERIFICATION ORGANISATION THE EUROPEAN MEDICINES VERIFICATION ORGANISATION ONBOARDING PROCESS EMVO GATEWAY André Geraldes Operations THE ONBOARDING PROCESS 2 PARTICIPATION REQUEST https://emvo-medicines.eu/pharmaceutical-companies/obp-portal/

More information

SmartSolutions Portal User Guide

SmartSolutions Portal User Guide SmartSolutions Portal User Guide Managing group permissions Updated 28/04/17 v1 In this guide we will show you how to manage and edit the permissions of other users within your organisation. 1. First,

More information

From the Insert Tab (1), highlight Picture (2) drop down and finally choose From Computer to insert a new image

From the Insert Tab (1), highlight Picture (2) drop down and finally choose From Computer to insert a new image Inserting Image To make your page more striking visually you can add images. There are three ways of loading images, one from your computer as you edit the page or you can preload them in an image library

More information

RSA WebCRD Getting Started

RSA WebCRD Getting Started RSA WebCRD Getting Started User Guide Getting Started with WebCRD Document Version: V8.1-3 Software Version: WebCRD V8.1.3 June 2011 2001-2011 Rochester Software Associates, Inc. All Rights Reserved. AutoFlow,

More information

JOB AID: Contractor: Timecard and Expense Entry in the New UI

JOB AID: Contractor: Timecard and Expense Entry in the New UI JOB AID: Contractor: Timecard and Expense Entry in the New UI This job aid highlights how to enter a timecard and an expense report in the New User Interface as a contractor. 1. Access the IQNavigator

More information

This job aid details the process for doing a cash/check/credit card/wire transfer journal entry with a spreadsheet template.

This job aid details the process for doing a cash/check/credit card/wire transfer journal entry with a spreadsheet template. OVERVIEW This job aid details the process for doing a cash/check/credit card/wire transfer journal entry with a spreadsheet template. TOOL INSTALLATION Make sure the Download Desktop Integration Installer

More information

Forescout. eyeextend for ServiceNow. Configuration Guide. Version 2.0

Forescout. eyeextend for ServiceNow. Configuration Guide. Version 2.0 Forescout Version 2.0 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

More information

SAP Sourcing Job Aid Contract Transfer - Supplier

SAP Sourcing Job Aid Contract Transfer - Supplier SAP Sourcing Job Aid Contract Transfer - Supplier Objectives: In this job aid, you will learn how to interact with Lilly as part of a contract negotiation through SAP Sourcing. No. Description of Steps

More information

Claims Portal. Updated: 1/25/13. Claims Portal Solely For HealthCare Partners i

Claims Portal. Updated: 1/25/13. Claims Portal Solely For HealthCare Partners i Updated: 1/25/13-2012 i Table of Contents Claims Online Portal Access... 3 Through PIP:... 3 Search Claims/Referrals... 5 By Patient Name... 5 Quick Search Claims/Referrals... 6 Advanced Search Claims/Referrals...

More information

Talend Component tgoogledrive

Talend Component tgoogledrive Talend Component tgoogledrive Purpose and procedure This component manages files on a Google Drive. The component provides these capabilities: 1. Providing only the client for other tgoogledrive components

More information

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0

USER MANUAL. SalesPort Salesforce Customer Portal for WordPress (Lightning Mode) TABLE OF CONTENTS. Version: 3.1.0 USER MANUAL TABLE OF CONTENTS Introduction...1 Benefits of Customer Portal...1 Prerequisites...1 Installation...2 Salesforce App Installation... 2 Salesforce Lightning... 2 WordPress Manual Plug-in installation...

More information

Partner Documentation Reseller Portal Guide

Partner Documentation Reseller Portal Guide 2 Partner Documentation 1.Introduction and Enrollment One of the benefits of MSP Consortium membership is access to Comodo's range of enterprise security and management tools at greatly discounted rates.

More information

Supplier Instructions for Completing NAFTA Certificate of Origin in Trade Automation (TA)

Supplier Instructions for Completing NAFTA Certificate of Origin in Trade Automation (TA) Supplier Instructions for Completing NAFTA Certificate of Origin in Trade Automation (TA) Supplier Instructions for Completing NAFTA Certificate of Origin in Trade Automation (TA) I. INTRODUCTION When

More information

Register for the Partner Ready Portal

Register for the Partner Ready Portal Register for the Partner Ready Portal Registration process for new users of registered HPE Partners February 2019 HPE Partner Ready Portal New user registration This step-by-step guide helps new users

More information

USER GUIDE AGENCY BLOG 12/11/2017

USER GUIDE AGENCY BLOG 12/11/2017 USER GUIDE AGENCY BLOG 12/11/2017 1. INTRODUCTION The Agency Blog was created to provide Agency Digital Directors with the capability of adding blog articles directly to their own website. 1.1 Accessing

More information

ForeScout Extended Module for Splunk

ForeScout Extended Module for Splunk ForeScout Extended Module for Splunk Version 2.7.0 Table of Contents About Splunk Integration... 5 Support for Splunk Enterprise and Splunk Enterprise Security... 7 What's New... 7 Support for Splunk Cloud...

More information

Automated Background Check System (ABCS)- Approving Access Guide. April 2018

Automated Background Check System (ABCS)- Approving Access Guide. April 2018 Automated Background Check System ()- Approving Access Guide April 2018 How do I approve access to? Complete Background Check HHS Enterprise Portal Add User to There are four main steps as an approver

More information

XLmanage Version 2.4. Installation Guide. ClearCube Technology, Inc.

XLmanage Version 2.4. Installation Guide. ClearCube Technology, Inc. XLmanage Version 2.4 Installation Guide ClearCube Technology, Inc. www.clearcube.com Copyright and Trademark Notices Copyright 2009 ClearCube Technology, Inc. All Rights Reserved. Information in this document

More information

Enterprise Data Catalog for Microsoft Azure Tutorial

Enterprise Data Catalog for Microsoft Azure Tutorial Enterprise Data Catalog for Microsoft Azure Tutorial VERSION 10.2 JANUARY 2018 Page 1 of 45 Contents Tutorial Objectives... 4 Enterprise Data Catalog Overview... 5 Overview... 5 Objectives... 5 Enterprise

More information

Secure Access Manager User Guide September 2017

Secure Access Manager User Guide September 2017 Secure Access Manager User Guide September 2017 1 1 INTRODUCTION... 3 1.1 SUMMARY... 3 2 BASIC FUNCTIONS... 3 2.1 LOGIN TO YOUR SAM ACCOUNT... 3 2.1.1 How to Activate your Account... 3 2.1.2 How to Login

More information

Overview NOTE: Listing Overview. User Profile. Language Selection. Asset(s) View. Asset(s) Details. Editing Mode

Overview NOTE: Listing Overview. User Profile. Language Selection. Asset(s) View. Asset(s) Details. Editing Mode Overview Listing Overview User Profile Language Selection Asset(s) View Asset(s) Details Editing Mode NOTE: Some functions may not be available to all users depending on permissions granted. Some of the

More information

Protecting SugarCRM with SafeNet Authentication Manager

Protecting SugarCRM with SafeNet Authentication Manager Protecting SugarCRM with SafeNet Authentication Manager Version 8.2 Integration Guide Copyright 2013 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document

More information

KeyNavigator Book Transfer

KeyNavigator Book Transfer Created (10/2018) KeyNavigator Book Transfer User Guide Table of Contents 1. Introduction to Book Transfer... 3 Overview... 3 Features... 3 Navigation... 3 Transfer Processing Timing... 4 2. User-Level

More information

Center for Medicare Management (CM) Clinical Lab Fee Schedule (CLFS) CLFS User Manual

Center for Medicare Management (CM) Clinical Lab Fee Schedule (CLFS) CLFS User Manual Centers for Medicare & Medicaid Services Center for Medicare Management (CM) 7500 Security Blvd Baltimore, MD 21244-1850 Center for Medicare Management (CM) Clinical Lab Fee Schedule (CLFS) Version: 3.0

More information

To the ETS Offset Notice Response Authorization Online Training Course

To the ETS Offset Notice Response Authorization Online Training Course Welcome To the ETS Offset Notice Response Authorization Online Training Course This process describes how an applicant can request authorization from the designated representative to create and submit

More information

Instructions for Non-Profit License Renewals. e-file

Instructions for Non-Profit License Renewals. e-file Instructions for Non-Profit License Renewals e-file Login to your Bingo Raffle Summary page to begin the process Login To login, you will need your Master ID and Password. If you have forgotten your password,

More information

Outage Scheduler User's Guide

Outage Scheduler User's Guide GUIDE 10 Outage Scheduler User's Guide September 2016 Version: 3.0 Revision Date: 09/13/2016 This document was prepared by: Scheduling, Energy Market Operations New York Independent System Operator 10

More information

Forescout. Configuration Guide. Version 1.3

Forescout. Configuration Guide. Version 1.3 Forescout Version 1.3 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

More information

SC Common Reporting (ComRep) Portal User Manual

SC Common Reporting (ComRep) Portal User Manual SC Common Reporting (ComRep) Portal User Manual 1 Contents Page 1. Introduction 1.1 Overview of ComRep portal: brief overview and explanation on ComRep objectives, features and user roles. 3 2. Get Started

More information

REGISTERING ON THE PORTAL PROVIDER

REGISTERING ON THE PORTAL PROVIDER PROVIDER PORTAL: Registering on the Portal Provider In order to take advantage of the enhancements of MMIS, providers should register on the Provider Portal. Users planning to perform the following must

More information

SharePoint Online 101

SharePoint Online 101 Work Smart by Microsoft IT SharePoint Online 101 Customization note: This document contains guidance and/or step-by-step installation instructions that can be reused, customized, or deleted entirely if

More information

Supplier Suggestions and Change Request System

Supplier Suggestions and Change Request System Intelex Technologies Supplier Suggestions and Change Request System Nexteer Suppliers Contents Logging into Intelex... 3 Forget your password... 3 General Navigation... 5 Locations Dropdown... 5 Applications

More information

Better Translation Technology. XTM Connect for Drupal 8

Better Translation Technology. XTM Connect for Drupal 8 Better Translation Technology XTM Connect for Drupal 8 Documentation for XTM Connect for Drupal 8. Published by XTM International Ltd. Copyright XTM International Ltd. All rights reserved. No part of this

More information

13241 Woodland Park Road, Suite 400 Herndon, VA USA A U T H O R : E X O S T A R D ATE: M A R C H V E R S I O N : 3.

13241 Woodland Park Road, Suite 400 Herndon, VA USA A U T H O R : E X O S T A R D ATE: M A R C H V E R S I O N : 3. SECURE ACCESS MAN AG E R FIRST TIME LOGIN GUIDE A U T H O R : E X O S T A R D ATE: M A R C H 2 0 1 5 V E R S I O N : 3.0 1 S E C U R E A CCESS M A N A G E R SECURE ACCESS MANAGER OVERVIEW... 3 SUMMARY...

More information

STREAMLYNE GUIDE FOR STUDENTS/PRINCIPAL INVESTIGATORS

STREAMLYNE GUIDE FOR STUDENTS/PRINCIPAL INVESTIGATORS STREAMLYNE GUIDE FOR STUDENTS/PRINCIPAL INVESTIGATORS Rev: 01/2017 In This Document Logging In... 1 Creating a New Protocol... 2 Revising a Returned Protocol... 7 Submitting an Amendment or Renewal Application...

More information

Revised: 08/02/ Click the Start button at bottom left, enter Server Manager in the search box, and select it in the list to open it.

Revised: 08/02/ Click the Start button at bottom left, enter Server Manager in the search box, and select it in the list to open it. Mobile App Windows Authentication & SSL Config Revised: 08/02/2017 Job Aid This Job Aid is intended for agency IT staff and explains how to enable Windows Authentication and SSL for your mobile applications

More information

EMS Platform Services Installation & Configuration Guides

EMS Platform Services Installation & Configuration Guides EMS Platform Services Installation & Configuration Guides V44.1 Last Updated: August 7, 2018 EMS Software emssoftware.com/help 800.440.3994 2018 EMS Software, LLC. All Rights Reserved. Table of Contents

More information

IBM Business Partner Agreement (BPA) Application. Step by Step User Guide

IBM Business Partner Agreement (BPA) Application. Step by Step User Guide IBM Business Partner Agreement (BPA) Application Step by Step User Guide IBM Business Partner Agreement (BPA) Application Step by Step User Guide The objective of this guide is to provide step by step

More information

ForeScout Extended Module for Splunk

ForeScout Extended Module for Splunk Version 2.8 Table of Contents About Splunk Integration... 5 Support for Splunk Enterprise and Splunk Enterprise Security... 6 What's New... 6 Support for Splunk Cloud... 6 Support for Batch Messaging...

More information

Vendor Content Portal

Vendor Content Portal Vendor Content Portal User Guide July 208 Ver.5 2 Content. Getting Started A. Login to Your VCP Account B. VCP Account Overview Page B.. Manage Product Info 2. Manage Product 2A. View product details 2B.

More information

Tutorial on How to Publish an OCI Image Listing

Tutorial on How to Publish an OCI Image Listing Tutorial on How to Publish an OCI Image Listing Publish an OCI Image Listing F13637-01 JANUARY 2019 DISCLAIMER The following is intended to outline our general product direction. It is intended for information

More information

GARAGE SALE PERMIT APPLICATION ON LINE

GARAGE SALE PERMIT APPLICATION ON LINE GARAGE SALE PERMIT APPLICATION ON LINE The Village of Pinecrest makes it easy for you to apply for certain types of permits online using etrakit.net. This also includes garage sale permits. To access etrakit.net,

More information

Intel Unite Solution Version 4.0

Intel Unite Solution Version 4.0 Intel Unite Solution Version 4.0 System Broadcast Application Guide Revision 1.0 October 2018 October 2018 Dcoument # XXXX Legal Disclaimers and Copyrights This document contains information on products,

More information

Perceptive Interact for Salesforce Enterprise

Perceptive Interact for Salesforce Enterprise Perceptive Interact for Salesforce Enterprise Installation and Setup Guide Version: 3.x.x Written by: Product Knowledge, R&D Date: April 2018 Copyright 2015-2018 Hyland Software, Inc. and its affiliates.

More information

Veterans Affairs MOU Proxy User Guide

Veterans Affairs MOU Proxy User Guide 1 VETERANS AFFAIRS MOU FORM SUBMISSION PROCESS 1. The VA MOU application will send you an email notification confirming that task(s) are pending in your MOU work queue. 2. If you are outside of the Emory

More information

RELEASE NOTES. Epic Offline Client Messaging 3. My Account 11. Announcement 12. Discussion Board 13. Exam 14.

RELEASE NOTES. Epic Offline Client Messaging 3. My Account 11. Announcement 12. Discussion Board 13. Exam 14. RELEASE NOTES October 5, 2011 Epic Offline Client 2.5.28.17 Inside this issue: Messaging 3 My Account 11 Announcement 12 Discussion Board 13 Exam 14 Update Client 19 Improving Communications and Exam Security

More information

Delegation for Approving Human Resources Transactions on My HUB

Delegation for Approving Human Resources Transactions on My HUB Delegation for Approving Human Resources Transactions on My HUB Manage Delegation Introduction Submitting a Delegation Request Reviewing Proxies Reviewing and Accepting Delegation Authorities Frequently

More information

PassKey Manager Guide

PassKey Manager Guide PassKey Manager Guide Blackboard Web Community Manager Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and logos

More information

User Guide Product Design Version 1.7

User Guide Product Design Version 1.7 User Guide Product Design Version 1.7 1 INTRODUCTION 3 Guide 3 USING THE SYSTEM 4 Accessing the System 5 Logging In Using an Access Email 5 Normal Login 6 Resetting a Password 6 Logging Off 6 Home Page

More information

ForeScout Extended Module for ServiceNow

ForeScout Extended Module for ServiceNow ForeScout Extended Module for ServiceNow Version 1.2 Table of Contents About ServiceNow Integration... 4 Use Cases... 4 Asset Identification... 4 Asset Inventory True-up... 5 Additional ServiceNow Documentation...

More information

Laserfiche Agenda Workflow Training. Submitting an Agenda Item Through Laserfiche Web Access Version 10.2

Laserfiche Agenda Workflow Training. Submitting an Agenda Item Through Laserfiche Web Access Version 10.2 Laserfiche Agenda Workflow Training Submitting an Agenda Item Through Laserfiche Web Access Version 10.2 May 2017 Contents LASERFICHE LASERFICHE AGENDA REVIEW WORKFLOW... 3 IMPORTING DOCUMENTS INTO WEB

More information

Electronic Grants Administration & Management System - EGrAMS

Electronic Grants Administration & Management System - EGrAMS Electronic Grants Administration & Management System - EGrAMS Introduction EGrAMS is an enterprise-wide web-based scalable, configurable, business rule driven and workflow based end-to-end electronic grants

More information

BCBST Secure File Gateway Instructions (HTTPS)

BCBST Secure File Gateway Instructions (HTTPS) BCBST Secure File Gateway Instructions (HTTPS) 1 Table of Contents New BCBST Secure File Gateway pg 3 Upload file to BCBST pg 4 Search Function pg 12 Download file from BCBST pg 13 Subscribe to e-mail

More information

User Guide on SkillsFuture Credit (Individuals)

User Guide on SkillsFuture Credit (Individuals) User Guide on SkillsFuture Credit (Individuals) Table of Contents 1 Login... 3 2 View My Account Summary... 5 3 Submit a Claim... 7 3.1 Submitting a Claim for Training Exchange Courses... 7 3.2 Submitting

More information

Publishing Product Data and Images Via ECCnet ProSYNC 10.6

Publishing Product Data and Images Via ECCnet ProSYNC 10.6 G:\Marketing & Communications\Communication Templates\GS1 Canada Brand Publishing Product Data and Images Via ECCnet ProSYNC 10.6 Publishing Product Data and Images The information contained in this document

More information

Shopping Cart: Queries, Personalizations, Filters, and Settings

Shopping Cart: Queries, Personalizations, Filters, and Settings Shopping Cart: Queries, Personalizations, Filters, and Settings on the Shopping Cart Home Page Use this Job Aid to: Learn how to organize the Shopping Cart home page so that it is easier to use. BEFORE

More information

HP ALM Overview. Exercise Outline. Administration and Customization Lab Guide

HP ALM Overview. Exercise Outline. Administration and Customization Lab Guide HP ALM 11.00 Administration and Customization Lab Guide Overview This Lab Guide contains the exercises for Administration and Customization of HP ALM 11 Essentials training. The labs are designed to enhance

More information