User Guide. Calculated Fields. Version 2.0.0

Size: px
Start display at page:

Download "User Guide. Calculated Fields. Version 2.0.0"

Transcription

1 User Guide Calculated Fields Version 2.0.0

2 Table of Contents Bridge User Guide - Table of Contents 1 TABLE OF CONTENTS... 1 INTRODUCTION... 3 Guide... 3 BUILDING FORMULAS... 4 Operators... 4 Simple Arithmetic Formulas... 4 Placeholders Within Formulas... 5 Defining String Data... 5 Concatenation (combining data)... 6 POLICY PLACEHOLDERS... 7 Current Transaction Information... 7 Premium Details... 7 Commission Details... 7 Tax Details... 8 Current Term Information... 8 Premium Details... 8 Commission Details... 9 Tax Details... 9 Previous Term Information Premium Details Commission Details Tax Details Limits... 11

3 Bridge User Guide - Table of Contents 2 Deductibles Retrieving Premium IDs FUNCTIONS Defining Multiple Fields in a Function Verifying User Security Roles Compare Data Against Sanction or Watch Lists Conditional Results Full Function List APPENDIX A... 25

4 Introduction Bridge User Guide - Introduction 3 Welcome to the Bridge insurance access portal. The system provides a full workflow, from the administration of products and coverage, to the submission and management of individual policies. Access to all features, options, and data are controlled by the settings in your user account. This guide is for users with product design rights, and details the creation of formulas for use in calculated fields. Calculated fields can be used for simple purposes such as displaying a basic system variable, or can perform a complex calculation pulling in a variety of fields and system information and generating a result to be displayed on-screen, used in documentation, or even used in other calculated fields. Calculated fields are not limited to numerical values. They can also work with dates and text, providing a wide range of possibilities. This guide assumes the user is familiar with the general functions of the system. For instructions on logging in and using common features throughout the system, see the User Guide - Introduction document. Guide The instructions are divided into the following major categories. Click a link to jump to the appropriate section. Building Formulas Policy Placeholders Functions Details the structure for building formulas and pulling in submission information. Provides the syntax for calling policy details into a formula. Describes the built-in tools used to work with data.

5 Building Formulas Bridge User Guide - Building Formulas 4 Formulas are assembled using common logic and notation, and should be familiar for users experienced with formulas in spreadsheet and database applications. Operators Bridge uses the following symbols to represent common arithmetic operators. + Add - Subtract * Multiply / Divide ( Open bracket ) Close bracket Simple Arithmetic Formulas The above operators are used to build the basic structure of the formula. Example: Would be input into a calculated field as: 3 x 6 ( ) x 0.6 3*6/( )*.6 Note: Spaces are not permitted within formulas, except where specifically instructed.

6 Bridge User Guide - Building Formulas 5 Placeholders Within Formulas The real power of calculated fields in the Bridge system is the ability to pull in information from the policy and from the submission form itself. This is achieved using placeholders. When the system encounters a placeholder while resolving a formula, it replaces the placeholder with the current value from the policy or submission form. The placeholders for policy information are predefined, and are detailed in the next section, Policy Placeholders. Placeholders for fields within the submission form are made up of the Code for the field (defined in Field Management), enclosed in double square brackets [[ ]]. Example: 100 x The Number of Trucks 50 Would be input into a calculated field as: 100*[[NumberOfTrucks]]-50 Where, NumberOfTrucks is the Code for the field The Number of Trucks. Note: In order for any field to be used within a calculated field, it must be included in the workflow with the calculated field. Defining String Data Calculated fields are not restricted to using numerical values. Dates and text can also be manipulated using a selection of functions and features. In some situations, however, the formatting of data could be mistaken for calculations. For example, the date format 5/15/2012 could be interpreted as 5 divided by 15 divided by 2012, or a policy number with dashes, such as could be interpreted as 2012 minus Also, spaces are not permitted in calculations, and will cause errors. The String: formatting notation is used at the beginning of a calculated field formula, and will cause the system to treat all values as text. No calculations will be performed, and any operators, arithmetic expressions, and spaces will be treated as text. Functions and placeholders will still function normally, but the resulting data will be treated as text.

7 Bridge User Guide - Building Formulas 6 Example: String:[[field1]]+[[field2]]/[[field3]] If the values of the three placeholders are 2, 4, and 6 respectively, the value of this calculated field would be 2+4/6, and would be displayed as such in the field and any documents or s that pull in this calculated field. Concatenation (combining data) If no Operators are used between placeholders and/or data entered directly in the formula, the system will simply pull in the placeholder data without any modifications. This is useful for merging data that is collected separately, but needs to be used together. Examples: If a user's first name and last name are collected in separate fields, the following formula could be used: String:[[FirstName]] [[LastName]] The value of this field would be the first name, then a space, then the last name. Note that the space must be entered between the placeholders, or the two fields will be combined without a space. Another example would be to assemble an address: String:[[StreetAddress]], [[City]], [[Country]]. The commas, spaces, and period will be included in the calculated value.

8 Policy Placeholders Bridge User Guide - Policy Placeholders 7 While the field Code is used in a standard placeholder to pull in information from the submission form, specific placeholders are required to pull in background information about the current submission or policy. This information is available in any status where the quote details have been calculated, and some transaction types may have additional options. Information is available for the Current Transaction and the Current Term, with Previous Term information available when working with renewals. Note: Some placeholders use single quotes ' to identify a specific version of the variable. These must be straight quotes ' or the formula will not function. Some word processing programs will replace straight quotes with angled quotes or "Smart Quotes". These quotes will need to be replaced with straight quotes, either in the word processor, or within Bridge. Current Transaction Information In any status where quote details have been calculated, that quote information is available for use in calculated fields. Premium Details The following placeholders return the premium amount for a specific premium type, identified by name or Id number. [[PremiumInfo[PremiumType='Name']/Amount]] [[PremiumInfo[PremiumTypeId='#']/Amount]] Where Name is the full name or # is the Id number of the required premium type. See Retrieving Premium IDs below for instructions on identifying the Id number of the required premium type. Commission Details The following placeholders return the commission amount for a specific premium type, as well as the gross premium and the net premium after commission. The premium types are identified by Id number.

9 Bridge User Guide - Policy Placeholders 8 [[PremiumCommissionList/PremiumCommissionInfo[PremiumTypeId='#']/GrossPremium]] [[PremiumCommissionList/PremiumCommissionInfo[PremiumTypeId='#']/CommissionAmount]] [[PremiumCommissionList/PremiumCommissionInfo[PremiumTypeId='#']/NetPremium]] Where # is the Id number of the required premium type. See Retrieving Premium IDs below for instructions on identifying the Id number of the required premium type. Tax Details The following placeholders return the tax information for a specific premium type, identified by Id number. [[TaxDefinition[PremiumTypeId='#']/TaxName]] [[TaxDefinition[PremiumTypeId='#']/CalculatedAmount]] Where # is the Id number of the required premium type. See Retrieving Premium IDs below for instructions on identifying the Id number of the required premium type. Current Term Information The Current Term placeholders access the total values for all bound transactions in the current term. The references can access premium values, commissions, and taxes, for individual premium types or a total for all premium types. Premium Details The following placeholders return the term premium amount for a specific premium type, identified by name or Id number. [[CurrentTerm/Premium/PremiumInfo[PremiumType='Name']/Amount]] [[CurrentTerm/Premium/PremiumInfo[PremiumTypeId='#']/Amount]]

10 Bridge User Guide - Policy Placeholders 9 Where Name is the full name or # is the Id number of the required premium type. See Retrieving Premium IDs below for instructions on identifying the Id number of the required premium type. The following placeholder returns the total bound premium for the term, for all premium types. [[CurrentTerm/Premium/TotalPremiumAmount]] Commission Details The following placeholders will return the term commission amount for a specific premium type, identified by name or Id number. [[CurrentTerm/Premium/PremiumInfo[PremiumType='Name']/CommissionAmount]] [[CurrentTerm/Premium/PremiumInfo[PremiumTypeId='#']/CommissionAmount]] Where Name is the full name or # is the Id number of the required premium type. See Retrieving Premium IDs below for instructions on identifying the Id number of the required premium type. The following placeholder returns the total bound commission amount for the term, for all premium types. [[CurrentTerm/Premium/TotalCommissionAmount]] Tax Details The following placeholders will return the term tax amount for a specific premium type, identified by name or Id number. [[CurrentTerm/Premium/PremiumInfo[PremiumType='Name']/TotalTaxAmount]] [[CurrentTerm/Premium/PremiumInfo[PremiumTypeId='#']/TotalTaxAmount]] Where Name is the full name or # is the Id number of the required premium type. See Retrieving Premium IDs below for instructions on identifying the Id number of the required premium type. The following placeholder returns the total tax amount for the term, for all premium types. [[CurrentTerm/Premium/TotalTaxAmount]]

11 Bridge User Guide - Policy Placeholders 10 Notes: Only values from Bound transactions within the current term will be returned. Using these references in a submission will have one value before binding (when the transaction being viewed is not included in the calculation) and a different value after binding (when the transaction being viewed is included in the calculation). Once a transaction in a particular term is bound, the calculated fields are locked for that transaction. They will not be updated if other transactions are subsequently bound within the same term. Previous Term Information The Previous Term placeholders access the total values for all bound transactions in the previous term. The references can access premium values, commissions, and taxes, for individual premium types or a total for all premium types. Premium Details The following placeholders return the previous term premium amount for a specific premium type, identified by name or Id number. [[PreviousTerm/Premium/PremiumInfo[PremiumType='Name']/Amount]] [[PreviousTerm/Premium/PremiumInfo[PremiumTypeId='#']/Amount]] Where Name is the full name or # is the Id number of the required premium type. See Retrieving Premium IDs below for instructions on identifying the Id number of the required premium type. The following placeholder returns the total bound premium for the previous term, for all premium types. [[PreviousTerm/Premium/TotalPremiumAmount]] Commission Details The following placeholders will return the previous term commission amount for a specific premium type, identified by name or Id number.

12 Bridge User Guide - Policy Placeholders 11 [[PreviousTerm/Premium/PremiumInfo[PremiumType='Name']/CommissionAmount]] [[PreviousTerm/Premium/PremiumInfo[PremiumTypeId='#']/CommissionAmount]] Where Name is the full name or # is the Id number of the required premium type. See Retrieving Premium IDs below for instructions on identifying the Id number of the required premium type. The following placeholder returns the total bound commission amount for the previous term, for all premium types. [[PreviousTerm/Premium/TotalCommissionAmount]] Tax Details The following placeholders will return the previous term tax amount for a specific premium type, identified by name or Id number. [[PreviousTerm/Premium/PremiumInfo[PremiumType='Name']/TotalTaxAmount]] [[PreviousTerm/Premium/PremiumInfo[PremiumTypeId='#']/TotalTaxAmount]] Where Name is the full name or # is the Id number of the required premium type. See Retrieving Premium IDs below for instructions on identifying the Id number of the required premium type. The following placeholder returns the total tax amount for the previous term, for all premium types. [[PreviousTerm/Premium/TotalTaxAmount]] Note: When a renewal is created, the values for the previous term are copied into the renewal transaction for use with these placeholders. If the previous term is changed in any way (such as by endorsement), the details saved in the renewal transaction may no longer be valid. If the renewal has not yet been bound, it may be possible to delete it and create a new renewal transaction with the updated values. Limits The following placeholders return specific limits information defined for the current transaction. The information is available for each premium type, identified by Id number.

13 Bridge User Guide - Policy Placeholders 12 [[LimitList/Limit[PremiumType='#']/Description]] [[LimitList/Limit[PremiumType='#']/LimitType]] [[LimitList/Limit[PremiumType='#']/Amount]] [[LimitList/Limit[PremiumType='#']/Currency]] Where # is the Id number of the required premium type. See Retrieving Premium IDs below for instructions on identifying the Id number of the required premium type. Deductibles The following placeholders return specific deductibles information defined for the current transaction. The information is available for each premium type, identified by Id number. [[DeductibleList/Deductible[PremiumType='#']/Description]] [[DeductibleList/Deductible[PremiumType='#']/Amount]] [[DeductibleList/Deductible[PremiumType='#']/Currency]] Where # is the Id number of the required premium type. See Retrieving Premium IDs below for instructions on identifying the Id number of the required premium type. Retrieving Premium IDs When calling placeholders related to individual premium types, the premium type will need to be identified. For some placeholders, marked with the 'Name' notation, the name of the premium type is used. The remaining placeholders are marked with the '#' notation, and require the premium type Id number. To retrieve the Id numbers of the premium types you want to work with, open the Product Design menu and select Premium Types. The Premium Type List opens with all available premium types.

14 Bridge User Guide - Policy Placeholders 13 Point the mouse cursor at the hyperlink in the Name column to display the URL in the status bar at the bottom of the browser window. The URL will resemble the one below: Take note of the numerical value after id=, underlined in red in the above example. If the URL does not display, or the status bar is not visible, clicking the link for the premium type will open the Premium Type Management page. The URL will be displayed in the address bar, ending with the ID number. If the status bar and address bar are hidden, please check the instructions for your browser to display one or the other.

15 Functions Bridge User Guide - Functions 14 The Bridge system provides an advanced set of tools for retrieving and manipulating data within the system. Functions provide ways to retrieve and work with dates, analyze data within a table, set conditional results within a formula, and much more. A function is made up of the function name, which always begins with the $ symbol, followed by round brackets ( ). The parameters of the function are added within the brackets separated by commas. $Function(p0,p1,...) Some functions require a specific number of parameters, others allow as many as required, and some do not require any parameters at all. Note: Spaces are not permitted within formulas or functions, including between parameters, except where specifically instructed. All functions are listed in the Full Function List section, which includes descriptions of the functions, parameters, and results of each. This section provides a more detailed introduction to some of these functions. Defining Multiple Fields in a Function Some functions evaluate multiple fields to provide a result. These functions may calculate the average of all values in a single column of a grid, the sum of a series of individual fields throughout the submission form, or a mix of fields and columns. For functions that support multiple fields, the Pipe character ( ) is used to separate the fields in the list. For columns in a grid, only the field names must be provided. The system will automatically retrieve all records in the grid. Examples: To determine the average value of three fields: $Avg([[field1]] [[field2]] [[field3]]) To determine the sum of all records in a column, plus one field outside the grid: $Sum([[column]] [[field]])

16 Bridge User Guide - Functions 15 Verifying User Security Roles Some situations may change depending on the type of user working in the system. The following function is used to determine if the current user has a specific security role. $UserContainsRole(UserRole) Where UserRole is the Name of the security role as it appears in the system. The function returns the value 1 if the user has the role, or 0 if they do not. The result can be used in a conditional formula, or as a condition within a trigger. Compare Data Against Sanction or Watch Lists With the potential consequences of violating international restrictions, it can be very important to validate data and ensure that it is in compliance with regulations. The $Compliance function allows one or more fields to be compared to one or more sanction or watch lists from around the world. To compare a field against a single list: $Compliance([[ScanField]],List) Where ScanField is the field to be scanned and List is the code of the list. Comparing a field against multiple lists: $Compliance([[ScanField]],List1,List2,List3) Where ScanField is the field to be scanned and each List# is the code of a list. Any number of lists can be included. Comparing multiple fields against multiple lists: $Compliance([[ScanField1]] [[ScanField2]] [[ScanField3]],List1,List2,List3)

17 Bridge User Guide - Functions 16 Where ScanField# are the fields to be scanned and each List# is the code of a list. The scan fields are combined and scanned as one large block of text, which is why a space should be added between each field to prevent the text from flowing together. This function outputs a numerical value from 0 (no match) to 100 (perfect match). If a different score is achieved on different lists, the highest score will be returned. See Appendix A for a table of all lists and their associated codes. Conditional Results The $If function is used to define the value of a calculated field based on the content of other fields in the workflow. A trigger is defined as the condition, and the function will return one value if the trigger evaluates as true, or a different value if the trigger evaluates as false. The condition line is constructed as follows: $If(TriggerCode,TrueValue,FalseValue) If TriggerCode is true, the TrueValue will be returned, otherwise the FalseValue will be returned. Note: The Code for the trigger must be used. The code is based on the name of the trigger, but may not match exactly. The True/False values can include placeholders, formulas, or even other functions (including other $If functions). Examples: The function could return a monthly value as an annual value, or leave it as one month, depending on the trigger. $If(Trigger,[[FieldA]]*12,[[FieldA]]) The function could return the user's name (concatenated from two fields with a space to divide them) or their spouse's name (also concatenated). The String: option is included to ensure that the content is treated as text.

18 Bridge User Guide - Functions 17 String:$If(Trigger,[[UserFirstName]] [[UserLastName]],[[SpouseFirstName]] [[SpouseLastName]]) Using functions in the True/False values allows this $If function to return the sum of a table column, or the average of the values in that column. $If(Trigger,$Sum([[Column1]]),$Avg([[Column1]])) Multiple $If functions can be included in a single calculated field. The results can be used with arithmetic formulas or simple concatenation to form the final value of the calculated field. ($If(Trigger,TrueValue,FalseValue)+[[Value]])*$If(Trigger,TrueValue,FalseValue)/2 This formula will take the conditional result of the first $If statement and add it to the amount in the Value field, then multiply that by the conditional result of the second $If statement, and divide the entire value by 2. Tip: When using functions within functions, be sure to close the parentheses for all functions at the appropriate places. The total number of closing parentheses in the entire formula must match the number of opening parentheses, and misplaced parentheses will result in errors.

19 Bridge User Guide - Functions 18 Full Function List The following is a complete list of all functions currently available in the system. For each function, the following information is provided: The full name of the function, plus placeholders (in green) for the required parameters. A brief description of the function. A list of the required parameters (if any), the required format, and any notes about the parameters. The value that will be returned by the function, and in what format it will be. $DaysBetween(p0,p1) Counts the number of days that have elapsed between two dates. P0 (date): First date field P1 (date): Second date field Returns (numeric): Number of days between p0 and p1. eg. Comparing date Feb20/2010 and Feb22/2010 returns 2. $MonthsBetween(p0,p1) Counts the number of months that have elapsed between two dates. P0 (date): First date field P1 (date): Second date field Returns (numeric): Number of calendar months between p0 and p1. eg. Comparing date Feb28/2010 and Mar1/2010 returns 1. $YearsBetween(p0,p1) Counts the number of years that have elapsed between two dates. P0 (date): First date field P1 (date): Second date field Returns (numeric): Number of years between p0 and p1. Difference is calendar years. eg. Comparing date Dec15/2010 and Jan1/2011 returns 1. $TodayXml() Obtains the current date from the server. No parameters. Returns (date): The current Date, formatted for use in other functions.

20 Bridge User Guide - Functions 19 $TodayLong() Obtains the current date from the server. No parameters. Returns (text): The current Date, in Long Date format. eg. Monday, June 15, 2011 $TodayShort() Obtains the current date from the server. No parameters. Returns (text): The current Date, in Short Date format. eg. 15/6/2011 $AddDays(p0,p1) Takes a provided date and adds a specified number of days. P0 (date): Date field P1 (numeric): Number of days to add Returns (date): Date which is the addition of p1 days to date p0. $AddMonths(p0,p1) Takes a provided date and adds a specified number of months. P0 (date): Date field P1 (numeric): Number of months to add Returns (date): Date which is the addition of p1 months to date p0. $AddYears(p0,p1) Takes a provided date and adds a specified number of years. P0 (date): Date field P1 (numeric): Number of years to add Returns (date): Date which is the addition of p1 years to date p0. $GetYear(p0) Takes a provided date and returns just the year. P0 (date): Date field Returns (numeric): Returns the year of p0. eg. If p0 = 15/10/2011, returns 2011.

21 Bridge User Guide - Functions 20 $GetMonth(p0) Takes a provided date and returns just the month. P0 (date): Date field Returns (numeric): Returns the month of p0, from 1 to 12 eg. If p0 = 15/10/2011, returns 10. $GetDayOfYear(p0) Takes a provided date and returns the number of the day, counted from January 1st. P0 (date): Date field Returns (numeric): Returns the numeric day of the year from p0. eg. If p0 = 15/02/2010, returns 46. $GetDayOfMonth(p0) Takes a provided date and returns the number of the day, counted from the first day of the month. P0 (date): Date field Returns (numeric): Returns the numeric day of the month from p0. eg. If p0 = 15/02/2010, returns 15. $GetMonthsFromCurrent(p0) Takes a provided date and compares it to the current date, returning the number of months difference. P0 (date): Date field Returns (numeric): Number of calendar months from p0 to the current date. $GetDaysFromCurrent(p0) Takes a provided date and compares it to the current date, returning the number of days difference. P0 (date): Date field Returns (numeric): Number of calendar days from p0 to the current date. $GetYearsFromCurrent(p0) Takes a provided date and compares it to the current date, returning the number of years difference. P0 (date): Date field Returns (numeric): Number of calendar years from p0 to the current date. $DateLong(p0) Converts a provided date into the long date format. P0 (date): Date field Returns (text): Date p0 in long date format. eg. If p0 = 15/06/2011, returns Monday, June 15, 2011

22 Bridge User Guide - Functions 21 $DateShort(p0) Converts a provided date into the short date format. P0 (date): Date field Returns (text): Date p0 in short date format. eg. If p0 = Monday, June 15, 2011, returns 15/6/2011 $CustomDateFormat(p0,p1) Advanced function. Converts a provided date into a custom date format. P0 (date): Date field P1 (text): String containing.net formatting instructions Returns (text): Returns date p0 in format provided in P1. $DateOverlap(p0,p1,p2,p3,p4,p5) Compares two date ranges to determine if they overlap, returning one value if they do, and returning a different value if they do not. If any of the four date fields are missing or invalid, the P5 value (no overlap) is returned. P0 (date): Start date of the first date range P1 (date): End date of the first date range P2 (date): Start date of the second date range P3 (date): End date of the second date range P4 (matches type of field): The value to return if there is an overlap between the date ranges P5 (matches type of field): The value to return if there is no overlap between the date ranges $IsAbnValid(p0) Validates a text field to determine if the content is a valid Australian Business Number (ABN). P0 (text): Field to be examined Returns (numeric): 1 if the field contains a valid ABN, or returns 0 if the value is not valid for any reason (too short, contains letters/special characters, failed encoding check, etc.) $UserContainsRole(p0) Checks the current user s account to determine if it has a specific security role. P0 (text): Name of security role Returns (numeric): 1 if current user account has role p0, 0 if it does not. $IsNewBusiness(p0) Checks if a provided submission, identified by transaction id, is new business. P0 (numeric): Transaction ID number of the submission Returns (numeric): 1 if given transactionid is new business, 0 if it is not.

23 Bridge User Guide - Functions 22 $GetTermStatus(p0) Retrieves the current status of the provided submission or policy, identified by transaction id. P0 (numeric): Transaction ID number of the submission or policy Returns (text): Returns the current status of the submission or policy. $GetTransactionType(p0) Retrieves the current type of the provided transaction, identified by transaction id. P0 (numeric): Transaction ID number of the submission or policy Returns (text): Returns the current type of the transaction. $GetTransactionStatus(p0) Retrieves the current status of the provided transaction, identified by transaction id. P0 (numeric): Transaction ID number of the submission or policy Returns (text): Returns the current status of the transaction. $Count(p0) Counts the number of records in a range of fields. P0 (any type): Any mix of fields and grid columns. Returns (numeric): Number of records in collection p0. $Sum(p0) Calculates the sum of a range of fields. P0 (numeric collection): Any mix of numeric fields and grid columns. Returns (numeric): The sum of elements in collection p0. $Avg(p0) Calculates the average of all values in a specified range of fields. P0 (numeric collection): Any mix of numeric fields and grid columns. Returns (numeric): The average value in collection p0. $Round(p0,p1,p2) Takes a provided numeric value or field, and rounds it to the nearest value, according to the selected mode. P0 (numeric): Value to be rounded P1 (numeric): Precision or nearest value P2 (numeric): Rounding mode: 0 = Round from midpoint 1 = Round upward 2 = Round downward Returns (numeric): Round off p0 parameter to the nearest value p1 according to the round mode p2

24 Bridge User Guide - Functions 23 $Min(p0) Identifies the lowest value in a specified range of fields. P0 (numeric collection): Any mix of numeric fields and grid columns. Returns (numeric): The minimum value in collection p0. $Max(p0) Identifies the highest value in a specified range of fields. P0 (numeric collection): Any mix of numeric fields and grid columns. Returns (numeric): The maximum value in collection p0 $SetMin(p0,p1,p2) Identifies the lowest value in a specified range of fields, and compares it to a provided minimum or maximum value. P0 (numeric collection): Any mix of numeric fields and grid columns. P1 (numeric): The minimum or maximum value returned, depending on the Mode. P2 (numeric): Mode 0 = P1 is a minimum value 1 = P1 is a maximum value Returns (numeric): Mode 0 = Lowest value of p0, unless it is lower than p1, in which case p1 is returned. Mode 1 = Lowest value of p0, unless it is not as low as p1, in which case p1 is returned. $SetMax(p0,p1,p2) Identifies the highest value in a specified range of fields, and compares it to a provided minimum or maximum value. P0 (numeric collection): Any mix of numeric fields and grid columns. P1 (numeric): The maximum or minimum value returned, depending on the Mode. P2 (numeric): Mode: 0 = P1 is a maximum value 1 = P1 is a minimum value Returns (numeric): Mode 0 = Highest value of p0, unless it is higher than p1, in which case p1 is returned. Mode 1 = Highest value of p0, unless it is not as high as p1, in which case p1 is returned. $GetOFACScan(p0) Takes a provided field and compares the text to standard OFAC lists of names and places under government sanctions. P0 (text): Text field to be scanned Returns (numeric): Match value from a standard OFAC scan based on the input parameter p0. The returned value will be from 0 to 100, 100 being a perfect match, 0 being no match.

25 Bridge User Guide - Functions 24 $Compliance(p0,p1,...) Takes a provided field and compares the text to one or more lists of names and places under sanctions. P0 (text): Text field to be scanned P1 (text): Code of the first list the data should be checked against. At least one list must be included, but additional lists can be provided, separated by commas. See Appendix A for all available lists and their codes. Returns (numeric): Match value based on the input parameter p0. The returned value will be from 0 to 100, 100 being a perfect match, 0 being no match. If more than one list is provided, the highest value will be returned. $If(p0,p1,p2) Evaluates a trigger and returns one value or another. P0 (trigger) Code of trigger to be evaluated P1 (matches type of field): The value to return if the trigger evaluates as true P2 (matches type of field): The value to return if the trigger evaluates as false Returns (matches type of field): Parameter 1 or 2, depending on the result of the trigger.

26 Appendix A Bridge User Guide - Appendix A 25 When using the $Compliance function, the codes below are used as parameters. List Name Australian Department of Foreign Affairs and Trade Bureau of Industry and Security Chiefs of State and Foreign Cabinet Members Commodity Futures Trading Commission Sanctions Defense Trade Controls Debarred Parties European Union Consolidated List Excluded Parties List System FBI Hijack Suspects FBI Most Wanted FBI Most Wanted Terrorists FBI Seeking Information FBI Top Ten Most Wanted Financial Action Task Force Foreign Agents Registrations Her Majesty s Treasury s Investment Ban List HM Treasury Sanctions Watchlist Hong Kong Monetary Authority Housing and Urban Developement Limited Denials of Participation Interpol Most Wanted Code Australia Dept of Foreign Affairs and Trade Bureau of Industry and Security Chiefs of State and Foreign Cabinet Members Commodity Futures Trading Commission Sanctions DTC Debarred Parties EU Consolidated List EPLS FBI Hijack Suspects FBI Most Wanted FBI Most Wanted Terrorists FBI Seeking Information FBI Top Ten Most Wanted FATF Financial Action Task Force Foreign Agents Registrations HM Treasury Investment Ban List HM Treasury Sanctions Hong Kong Monetary Authority HUD LDP Interpol Most Wanted

27 Bridge User Guide - Appendix A 26 Ireland Financial Regulator Unauthorized Firms Japan Financial Services Agency Japan Ministry of Economy Trade and Industry Weapons of Mass Destruction Proliferators Japan Ministry of Finance Sanctions Monetary Authority of Singapore Nonproliferation Sanctions Office of Foreign Assets Control Non-SDN Entities Office of Foreign Assets Control Sanctions Office of Foreign Assets Control Specially Designated Nationals Office of the Inspector General Exclusions OSFI Consolidated List Canada OSFI Country Offshore Financial Centers Peoples Bank of China (PBC) Primary Money Laundering Concern Primary Money Laundering Concern Jurisdictions Reserve Bank of Australia Terrorist Exclusion List UK HM Treasury List United Kingdom Financial Services Authority United Nations Consolidated List Unauthorized Banks World Bank Ineligible Firms Ireland Financial Regulator Unauthorized Firms Japan FSA Japan METI-WMD Proliferators Japan MOF Sanctions Monetary Authority of Singapore Nonproliferation Sanctions OFAC Non-SDN Entities OFAC Sanctions OFAC SDN OIG Exclusions OSFI Consolidated List OSFI Country Offshore Financial Centers Peoples Bank of China (PBC) Primary Money Laundering Concern Primary Money Laundering Concern - Jurisdictions Reserve Bank of Australia Terrorist Exclusion List Bank of England Consolidated List UK FSA UN Consolidated List Unauthorized Banks World Bank Ineligible Firms

28 Bridge User Guide - Appendix A 27

29 Bridge User Guide - Appendix A 28 Copyright Notice Copyright Oceanwide Inc. All Rights Reserved. All material in this document and on this website are protected by copyright and intellectual property laws and are the property of Oceanwide Inc. No part of this document may be reproduced, stored in a retrieval system, or transmitted by any means, electronic, mechanical, photocopying, recording or otherwise, without prior written permission from the owner Oceanwide Inc. Printed and published in Montreal, Quebec CANADA. Trademarks All trademarks, registered trademarks and service marks in this document are exclusive to Oceanwide Inc.. Disclaimer The publisher Oceanwide Inc. and authors specifically disclaim any responsibility for any liability, loss, or risk; whether corporate, personal or otherwise in whole or in part of which; is incurred as a consequence directly or indirectly of the application use; or reliance on or any of the contents of this document (documentation).

User Guide. Calculated Fields. Version 2.2.1

User Guide. Calculated Fields. Version 2.2.1 User Guide Calculated Fields Version 2.2.1 Table of Contents Bridge User Guide - Table of Contents 1 TABLE OF CONTENTS... 1 INTRODUCTION... 3 Guide... 3 BUILDING FORMULAS... 4 Operators... 4 Simple Arithmetic

More information

Table of Contents. Oceanwide Bridge. User Guide - Calculated Fields. Version Version Bridge User Guide User Guide - Calculated Fields

Table of Contents. Oceanwide Bridge. User Guide - Calculated Fields. Version Version Bridge User Guide User Guide - Calculated Fields Table of Contents 1 Oceanwide Bridge User Guide - Calculated Fields Version 2.3.0 Table of Contents i Table of Contents TABLE OF CONTENTS... I INTRODUCTION... 1 Guide... 1 BUILDING FORMULAS... 2 Operators...

More information

Bridge. Calculated Fields Guide. Version

Bridge. Calculated Fields Guide. Version Bridge Calculated Fields Guide Version 2.5.103 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Building Formulas 2 Operators 2 Simple Arithmetic Formulas 2 Placeholders Within

More information

User Guide. Master Covers. Version Revision 1

User Guide. Master Covers. Version Revision 1 User Guide Master Covers Version 2.2.2 Revision 1 Table of Contents Bridge User Guide - Table of Contents 1 TABLE OF CONTENTS... 1 INTRODUCTION... 4 Guide... 4 MANAGING MASTER COVERS... 5 Guide... 5 Creating

More information

Bridge. Master Covers Guide. Version

Bridge. Master Covers Guide. Version Bridge Master Covers Guide Version 2.5.103 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Managing Master Covers 2 Creating a New Master Cover 2 Viewing and Modifying a Master

More information

TABLE OF CONTENTS... 1 PURPOSE OF THIS DOCUMENT CORE ENHANCEMENTS MINOR ENHANCEMENTS AND INCORRECT FUNCTIONALITY FIXES...

TABLE OF CONTENTS... 1 PURPOSE OF THIS DOCUMENT CORE ENHANCEMENTS MINOR ENHANCEMENTS AND INCORRECT FUNCTIONALITY FIXES... Release Notes 1.6.5 Table of Contents TABLE OF CONTENTS... 1 PURPOSE OF THIS DOCUMENT... 3 1.6.5 CORE ENHANCEMENTS... 4 1.6.5 MINOR ENHANCEMENTS AND INCORRECT FUNCTIONALITY FIXES... 5 ENHANCEMENTS... 5

More information

Bridge. Advanced Configuration Guide. Version

Bridge. Advanced Configuration Guide. Version Bridge Advanced Configuration Guide Version 2.5.103 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Building Advanced Lookups 2 Preparing the Data Source Configuration 4 Preparing

More information

Startup Guide. Version 1.7

Startup Guide. Version 1.7 Startup Guide 1 INTRODUCTION 3 COMPANIES & USERS 4 Companies & Users Licensee Offices 4 Companies & Users Insurers 6 Companies & Users Distributors 7 Companies & Users Users 8 Reset Password 10 Companies

More information

User Guide. Product Design. Version 2.2.2

User Guide. Product Design. Version 2.2.2 User Guide Product Design Version 2.2.2 Table of Contents Bridge User Guide - Table of Contents 1 TABLE OF CONTENTS... 1 INTRODUCTION... 4 Guide... 4 PRODUCTS... 5 Creating a New Product... 5 Viewing and

More information

Table of Contents. Genoa User Guide. Storage (Extranet) Bridge User Guide Storage (Extranet)

Table of Contents. Genoa User Guide. Storage (Extranet) Bridge User Guide Storage (Extranet) Table of Contents 0 Genoa User Guide Storage (Extranet) 4.2.6 4.2.6 Bridge User Guide Storage (Extranet) Table of Contents 0 Table of Contents TABLE OF CONTENTS... ACCESSING THE STORAGE DECLARATION MODULE...

More information

NOTICE. Copyright 2016 by MicroEdge, LLC. All rights reserved. Part number: PlusPack523-UsersGuide. Publication date: April 2016

NOTICE. Copyright 2016 by MicroEdge, LLC. All rights reserved. Part number: PlusPack523-UsersGuide. Publication date: April 2016 NOTICE The software described in this document is furnished under a license agreement. The software may be used or copied only in accordance with the terms of the agreement. No part of this document may

More information

SmartView. User Guide - Analysis. Version 2.0

SmartView. User Guide - Analysis. Version 2.0 SmartView User Guide - Analysis Version 2.0 Table of Contents Page i Table of Contents Table Of Contents I Introduction 1 Dashboard Layouts 2 Dashboard Mode 2 Story Mode 3 Dashboard Controls 4 Dashboards

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

SWIFT Overview. Association of International Bank Auditors. Amanda De Castro, Sales Services James Wills, Banking Initiatives, Standards

SWIFT Overview. Association of International Bank Auditors. Amanda De Castro, Sales Services James Wills, Banking Initiatives, Standards SWIFT Overview Association of International Bank Auditors Amanda De Castro, Sales Services James Wills, Banking Initiatives, Standards Agenda Alliance Access R 7.0 Relationship Management Application (RMA)

More information

Sanction Checks Potential Match Verification Procedures for Vendors

Sanction Checks Potential Match Verification Procedures for Vendors Sanction Checks Potential Match Verification Procedures for Vendors 1. Name/State Review Compare University vendor s full name to the name of the individual/business name identified as a high level potential

More information

Oracle Financial Services Transaction Filtering User Guide. Release February 2017

Oracle Financial Services Transaction Filtering User Guide. Release February 2017 Oracle Financial Services Transaction Filtering User Guide Release 8.0.4.0.0 February 2017 Oracle Financial Services Transaction Filtering User Guide Release 8.0.4.0.0 February 2017 Part Number: E83124-01

More information

Supplier/Contractor Registration Guideline

Supplier/Contractor Registration Guideline Supplier/Contractor Registration Guideline September 2017 www.worleyparsons.com ABN 61 001 279 812 Copyright 2013 WorleyParsons Disclaimer This report has been prepared on behalf of and for the exclusive

More information

Oracle Insurance QuickView Service Ordering User Guide. Version 8.0

Oracle Insurance QuickView Service Ordering User Guide. Version 8.0 Oracle Insurance QuickView Service Ordering User Guide Version 8.0 February 2009 Oracle Insurance QuickView Service Ordering User Guide Version 8.0 Part # E14966-01 Library # E14885-01 E14886-01 February

More information

Visual Compliance Screening Guidance and Procedures

Visual Compliance Screening Guidance and Procedures Visual Compliance Screening Guidance and Procedures What is Visual Compliance? Export control laws prohibit us from doing business of any kind with persons or entities on lists maintained against sanctioned

More information

Special Purpose Entities (SPE) - FVC and SPV

Special Purpose Entities (SPE) - FVC and SPV Special Purpose Entities (SPE) - FVC and SPV Registration FAQs December 2018 Email: fvc@centralbank.ie ; spvstats@centralbank.ie Website: https://www.centralbank.ie/statistics/statistical-reporting-requirements

More information

Elders Estates Privacy Notice

Elders Estates Privacy Notice 15A Bath Street, Ilkeston Derbyshire. DE7 8AH 01159 32 55 23 info@eldersestates.co.uk 31 Market Place, Ripley Derbyshire. DE5 3HA 01773 30 44 44 info@eldersestates.co.uk Elders Estates Privacy Notice Introduction

More information

Economic Update German American Chamber of Commerce

Economic Update German American Chamber of Commerce Economic Update German American Chamber of Commerce Federal Reserve Bank of Chicago October 6, 2015 Paul Traub Senior Business Economist U.S. Real GDP Billions Chained $2009, % Change Q/Q at SAAR $ Billions

More information

About the P6 EPPM Importing and Exporting Guide

About the P6 EPPM Importing and Exporting Guide P6 EPPM Importing and Exporting Guide October 2018 Contents About the P6 EPPM Importing and Exporting Guide Scope This guide contains information about import and export formats and the process of importing

More information

Submission to the Senate Legal and Constitutional Affairs Legislation Committee on the Migration Amendment (Offshore Resources Activity) Repeal Bill

Submission to the Senate Legal and Constitutional Affairs Legislation Committee on the Migration Amendment (Offshore Resources Activity) Repeal Bill Submission to the Senate Legal and Constitutional Affairs Legislation Committee on the Migration Amendment (Offshore Resources Activity) Repeal Bill 2014 APRIL 2014 Business Council of Australia April

More information

Message Manager Administrator Guide for ZA

Message Manager Administrator Guide for ZA Message Manager Administrator Guide for ZA Documentation version: 2.0 Legal Notice Legal Notice Copyright 2012 Symantec Corporation. All rights reserved. Symantec and the Symantec Logo are trademarks or

More information

The Export Control and Related Border Security (EXBS) Program in ASEAN And ASEAN Single Window (ASW) Initiative

The Export Control and Related Border Security (EXBS) Program in ASEAN And ASEAN Single Window (ASW) Initiative The Export Control and Related Border Security (EXBS) Program in ASEAN And ASEAN Single Window (ASW) Initiative United States Department of State International Security and Nonproliferation Bureau Office

More information

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Specifications

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Specifications Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Specifications Export Controls Export laws and regulations of the United States and any other

More information

Governance, Risk, and Compliance Controls Suite. Release Notes. Software Version

Governance, Risk, and Compliance Controls Suite. Release Notes. Software Version Governance, Risk, and Compliance Controls Suite Release Notes Software Version 7.2.2.1 Governance, Risk, and Compliance Controls Suite Release Notes Part No. AG008-7221A Copyright 2007, 2008, Oracle Corporation

More information

* Free calls from landlines and public phones. Some standard network charge applies.

* Free calls from landlines and public phones. Some standard network charge applies. WESTERN UNION MONEY TRANSFER SM ( TRANSFERS ) AND COMMERCIAL PAYMENT ( COMMERCIAL PAYMENTS ) SERVICES (COLLECTIVELY, SERVICES ) ARE PROVIDED ON THE FOLLOWING TERMS AND CONDITONS Transfers can be sent and

More information

USING ADMINISTRATOR FEATURES

USING ADMINISTRATOR FEATURES HYPERION FINANCIAL MANAGEMENT SYSTEM 9 RELEASE 9.3.1 USING ADMINISTRATOR FEATURES Oracle's Hyperion Financial Management System 9 Release 9.3 contains significant enhancements to administrator features

More information

Formulas and Functions

Formulas and Functions Conventions used in this document: Keyboard keys that must be pressed will be shown as Enter or Ctrl. Controls to be activated with the mouse will be shown as Start button > Settings > System > About.

More information

Corporate Online. Using Accounts

Corporate Online. Using Accounts Corporate Online. Using Accounts About this Guide About Corporate Online Westpac Corporate Online is an internet-based electronic platform, providing a single point of entry to a suite of online transactional

More information

Message Manager Administrator Guide

Message Manager Administrator Guide Message Manager Administrator Guide Documentation version: 2.0 Legal Notice Legal Notice Copyright 2012 Symantec Corporation. All rights reserved. Symantec and the Symantec Logo are trademarks or registered

More information

CTMS. Quick Reference Card. Using the CTMS Dashboard. Accessing the CTMS Dashboard. Viewing All Metrics

CTMS. Quick Reference Card. Using the CTMS Dashboard. Accessing the CTMS Dashboard. Viewing All Metrics Overview The Dashboard reports key metrics about DCRI protocols. This Quick Reference Card (QRC) summarizes Dashboard operations for Project Leaders. All protocol names and data in this QRC are fictitious.

More information

Important Information

Important Information Important Information Important Information Effective from 13 January 2018 1. Your information 1.1 Who we are We are Coutts & Co, of 440 Strand, London WC2R OQS. We are a member of The Royal Bank of Scotland

More information

Why Japan? Masashi Nakazono JETRO Genève. Prepared for Handelskammer beider Basel & JETRO seminar on 4 Nov 2016

Why Japan? Masashi Nakazono JETRO Genève. Prepared for Handelskammer beider Basel & JETRO seminar on 4 Nov 2016 Why Japan? Masashi Nakazono JETRO Genève Prepared for Handelskammer beider Basel & JETRO seminar on 4 Nov 2016 Copyright (C) 2016 JETRO. All rights reserved. Who are we? Japan External Trade Organization

More information

Guidance In Situ Pre-Approval Controlled Functions (PCFs): Confirmation of Due Diligence undertaken

Guidance In Situ Pre-Approval Controlled Functions (PCFs): Confirmation of Due Diligence undertaken 2012 Guidance In Situ Pre-Approval Controlled Functions (PCFs): Confirmation of Due Diligence undertaken Table of Contents Contents Table of Contents... 2 Section 1: Introduction... 3 Purpose of this Guidance...

More information

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA)

OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) OCTOSHAPE SDK AND CLIENT LICENSE AGREEMENT (SCLA) This is a License Agreement (the "Agreement") for certain code (the Software ) owned by Akamai Technologies, Inc. ( Akamai ) that is useful in connection

More information

ARKANSAS HIGH COST FUND 2013 CARRIER REVENUE REPORT& SELF INVOICE INSTRUCTIONS

ARKANSAS HIGH COST FUND 2013 CARRIER REVENUE REPORT& SELF INVOICE INSTRUCTIONS For questions or assistance with these instructions, contact Rural Telcom Solutions, LLC via Email at: ruraltelcom@ruraltelcom.com, or by mail at: ARHCF P.O. Box 608 Danville, AR 72833 I. Filing Requirements

More information

About Office 365 [PLACEHOLDER]

About Office 365 [PLACEHOLDER] Office 365 [PLACEHOLDER] Service Description Applies to: Office 365 [PLACEHOLDER] Topic Last Modified: 22-Apr-2016 In response to the unique and evolving requirements of the United States federal government

More information

Oracle Financial Services Common Reporting Standard Singapore User Guide. Release May 2018

Oracle Financial Services Common Reporting Standard Singapore User Guide. Release May 2018 Oracle Financial Services Common Reporting Standard Singapore User Guide Release 8.0.6 May 2018 Oracle Financial Services Common Reporting Standard Singapore User Guide Release 8.0.6 May 2018 Part Number:

More information

A Tutorial for Excel 2002 for Windows

A Tutorial for Excel 2002 for Windows INFORMATION SYSTEMS SERVICES Writing Formulae with Microsoft Excel 2002 A Tutorial for Excel 2002 for Windows AUTHOR: Information Systems Services DATE: August 2004 EDITION: 2.0 TUT 47 UNIVERSITY OF LEEDS

More information

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits

Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits Oracle Technology Network Developer License Terms for Java Card Classic Edition and Java Card Connected Edition Software Development Kits Export Controls Export laws and regulations of the United States

More information

Excel Formulas and Functions

Excel Formulas and Functions Excel Formulas and Functions Formulas Relative cell references Absolute cell references Mixed cell references Naming a cell or range Naming constants Dates and times Natural-language formulas Functions

More information

Terms of Use for companies accessing MyStay Product Database via MyStay API

Terms of Use for companies accessing MyStay Product Database via MyStay API MyStay Product Database and My Stay Application Programming Interface (API) MyStay Product Database is a part of Visit Finland s website www.visitfinland.com. The purpose of the database is to enable the

More information

GLOBAL INDICATORS OF REGULATORY GOVERNANCE. Scoring Methodology

GLOBAL INDICATORS OF REGULATORY GOVERNANCE. Scoring Methodology GLOBAL INDICATORS OF REGULATORY GOVERNANCE Scoring Methodology To advance our analysis, we developed a composite Global Indicators of Regulatory Governance score designed to quantify good regulatory practices

More information

WEBSITE PRIVACY POLICY

WEBSITE PRIVACY POLICY WEBSITE PRIVACY POLICY INTRODUCTION Welcome to the Octopus Group s privacy policy ( Privacy Policy ) Octopus Group respects your privacy and is committed doing the right thing when it comes to protecting

More information

Retek Trade Management User Guide

Retek Trade Management User Guide Retek Trade Management 10.1 User Guide Retek Trade Management The software described in this documentation is furnished under a license agreement and may be used only in accordance with the terms of the

More information

Oracle Financial Services Common Reporting Standard Canada User Guide. Release May 2018

Oracle Financial Services Common Reporting Standard Canada User Guide. Release May 2018 Oracle Financial Services Common Reporting Standard Canada User Guide Release 8.0.6 May 2018 Oracle Financial Services Common Reporting Standard Canada User Guide Release 8.0.6 May 2018 Part Number: E93132-01

More information

Oracle Agile Product Lifecycle Management for Process Content Synchronization and Syndication User Guide Release E

Oracle Agile Product Lifecycle Management for Process Content Synchronization and Syndication User Guide Release E Oracle Agile Product Lifecycle Management for Process Content Synchronization and Syndication User Guide Release 6.1.0.1 E27853-01 March 2012 Oracle Agile Product Lifecycle Management for Process Content

More information

Vendor Compliance Implementing and Automating. the OFAC Process. Session March 02, :00 PM 3:00 PM

Vendor Compliance Implementing and Automating. the OFAC Process. Session March 02, :00 PM 3:00 PM Vendor Compliance Implementing and Automating the OFAC Process Session 27344 March 02, 2010 2:00 PM 3:00 PM Presenter Michael V. Williams ERP Analyst II Three Years with ERP Prior Work Experience - Coordinator

More information

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding)

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) CLAUSE 13 ON-LINE BIDDING 13.1 ON-LINE BIDDING.1 Definitions: Owner means the party and/or their agent designated to receive on-line

More information

Oracle Financial Services Common Reporting Standard User Guide. Release March 2017

Oracle Financial Services Common Reporting Standard User Guide. Release March 2017 Oracle Financial Services Common Reporting Standard User Guide Release 8.0.4.0.0 March 2017 Oracle Financial Services Common Reporting Standard User Guide Release 8.0.4.0.0 March 2017 Part Number: E80239-01

More information

Emsi Privacy Shield Policy

Emsi Privacy Shield Policy Emsi Privacy Shield Policy Scope The Emsi Privacy Shield Policy ( Policy ) applies to the collection and processing of Personal Data that Emsi obtains from Data Subjects located in the European Union (

More information

Oracle Project Time and Expense User s Guide. RELEASE 11 October 1998

Oracle Project Time and Expense User s Guide. RELEASE 11 October 1998 Oracle Project Time and Expense User s Guide RELEASE 11 October 1998 Copyright 1998, Oracle Corporation. All rights reserved. Part number A66749 01. Contributers: Neeraj Garg, Constance Kim, Chris Panero,

More information

Investor Services Online Quick Reference Guide Approving transactions

Investor Services Online Quick Reference Guide Approving transactions All transactions in Investor Services Online must be approved from the My Transactions page before they can be submitted to RBC Investor & Treasury Services for processing. The number of approvers required

More information

Administration Tools User Guide. Release April 2015

Administration Tools User Guide. Release April 2015 Administration Tools User Guide Release 6.2.5 April 2015 Administration Tools User Guide Release 6.2.5 April 2015 Part Number: E62969_05 Oracle Financial Services Software, Inc. 1900 Oracle Way Reston,

More information

Sage Financial Reporter User's Guide

Sage Financial Reporter User's Guide Sage 300 2017 Financial Reporter User's Guide This is a publication of Sage Software, Inc. Copyright 2016. Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service

More information

Catalent Inc. Privacy Policy v.1 Effective Date: May 25, 2018 Page 1

Catalent Inc. Privacy Policy v.1 Effective Date: May 25, 2018 Page 1 Catalent, Inc. Privacy Policy, effective May 25, 2018 1. This Policy This Privacy Policy (this Policy ) is issued by Catalent, Inc. on behalf of itself and its domestic and international subsidiaries and

More information

Link Group Privacy Policy LINK GROUP. For all subsidiaries of the Link Group in Australia. Privacy Policy. LINK Group, 2017 Page 1 of 11

Link Group Privacy Policy LINK GROUP. For all subsidiaries of the Link Group in Australia. Privacy Policy. LINK Group, 2017 Page 1 of 11 LINK GROUP For all subsidiaries of the Link Group in Australia Privacy Policy LINK Group, 2017 Page 1 of 11 Table of Contents 1. INTRODUCTION... 3 2. PURPOSE... 3 3. SCOPE... 3 4. TYPES OF INFORMATION

More information

Oracle Communications Performance Intelligence Center

Oracle Communications Performance Intelligence Center Oracle Communications Performance Intelligence Center KPI Configuration Guide Release 10.2.1 E77501-01 June 2017 1 Oracle Communications Performance Intelligence Center KPI Configuration Guide, Release

More information

Sage 300 ERP Financial Reporter User's Guide

Sage 300 ERP Financial Reporter User's Guide Sage 300 ERP 2012 Financial Reporter User's Guide This is a publication of Sage Software, Inc. Version 2012 Copyright 2013. Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product

More information

S90. SEMOpx Transitional Registration Guide DO NOT SEND BACK. Date: 17/05/2017 Document; Revision: 1.2

S90. SEMOpx Transitional Registration Guide DO NOT SEND BACK. Date: 17/05/2017 Document; Revision: 1.2 SEMOpx Transitional Registration Guide DO NOT SEND BACK Date: 17/05/2017 Document; Revision: 1.2 SEMOpx Transitional Registration Guide This document outlines the application requirements for existing

More information

Getting Started With TPM

Getting Started With TPM Getting Started With TPM About TPM The Oracle Textura Payment Management system (TPM) is an Internet-based construction progress claim submission solution. With the TPM system: Progress claims and supporting

More information

Crisis in Recruitment

Crisis in Recruitment Are We Ready for Global Standards in Agency-based Recruitment? Mitch Leventhal, PhD mitch.leventhal@suny.edu Founding Chair & Former President, AIRC Vice Chancellor for Global Affairs, State University

More information

Compliance is, in general, the compliance of requirements with appropriate resources.

Compliance is, in general, the compliance of requirements with appropriate resources. is, in general, the compliance of requirements with appropriate resources. Definition / content Objectives Activities In the narrow sense: _ with external specifications KWG, WpHG, GWG, financial embargos,

More information

User Guide. Summary of Changes v6 Build 1503 to 1670

User Guide. Summary of Changes v6 Build 1503 to 1670 User Guide P R O D U C T O V E R V I E W Summary of Changes v6 Build 1503 to 1670 Copyright 2008, E-Z Data, Inc., All Rights Reserved No part of this documentation may be copied, reproduced, or translated

More information

Real Estate Forecast 2015

Real Estate Forecast 2015 Real Estate Forecast 2015 No Place But Up Interest Rates Rents Prices Real Estate and the Economy Ted C. Jones, PhD Chief Economist Stewart Title Guaranty Company Thank Heavens for Global Warming Think

More information

Dutch-Bangla Bank Limited

Dutch-Bangla Bank Limited Dutch-Bangla Bank Limited Bid document To purchase a centralized Sanction Screening Application (SSA) for the Anti Money Laundering Activity having interface with all the Applications that handles customer

More information

MICROSOFT Excel 2010 Advanced Self-Study

MICROSOFT Excel 2010 Advanced Self-Study MICROSOFT Excel 2010 Advanced Self-Study COPYRIGHT This manual is copyrighted: S&G Training Limited. This manual may not be copied, photocopied or reproduced in whole or in part without the written permission

More information

Standard Terms & Conditions

Standard Terms & Conditions Kent Innovation Centre, Millennium Way, Broadstairs, Kent, CT10 2QQ Telephone: 01843 609372 Email: office@broadbiz.co.uk Website: www.broadbiz.co.uk Social: www.facebook.com/broadbiz / twitter.com/broadbiz

More information

HSBC Expat Mobile Banking

HSBC Expat Mobile Banking HSBC Expat Mobile Banking Summary, App Licence Terms and Conditions and Important Information Effective from 13 June 2016 Summary of the Terms and Conditions This Summary sets out key details about the

More information

Oracle Utilities Opower Rates Engagement Cloud Service

Oracle Utilities Opower Rates Engagement Cloud Service Oracle Utilities Opower Rates Engagement Cloud Service Product Overview E87463-01 Last Updated: June 22, 2018 Oracle Utilities Rates Engagement Cloud Service Product Overview E87463-01 Copyright 2017,

More information

Consolidated Financial Results for the Second Quarter, Fiscal 2018

Consolidated Financial Results for the Second Quarter, Fiscal 2018 Consolidated Financial Results for the Second Quarter, Fiscal 2018 Ⅰ. Consolidated Financial Results for the First Half, Fiscal 2018 Consolidated Financial Results for Fiscal 2018 Ⅱ. Supplementary Data

More information

7 The Protection of Certification Marks under the Trademark Act (*)

7 The Protection of Certification Marks under the Trademark Act (*) 7 The Protection of Certification Marks under the Trademark Act (*) In this research, I examined the certification and verification business practices of certification bodies, the use of certification

More information

COMMISSION IMPLEMENTING REGULATION (EU) /... of XXX

COMMISSION IMPLEMENTING REGULATION (EU) /... of XXX COISSION IPLEENTING REGULATION (EU) /... of XXX establishing the format for registration and reporting and the frequency of reporting to the register (Text with EEA relevance) THE EUROPEAN COISSION, Having

More information

Summary of Changes v to v

Summary of Changes v to v Summary of Changes v5.1.3.6197 to v5.1.3.6279 Copyright 2007, E-Z Data, Inc., All Rights Reserved No part of this documentation may be copied, reproduced, or translated in any form without the prior written

More information

MMS DATA SUBSCRIPTION SERVICES USER INTERFACE GUIDE

MMS DATA SUBSCRIPTION SERVICES USER INTERFACE GUIDE MMS DATA SUBSCRIPTION SERVICES USER INTERFACE GUIDE VERSION: 2.01 DOCUMENT REF: PREPARED BY: MMSTDPD69 EMD DATE: 16 February 2010 Final Copyright Copyright 2012 Australian Energy Market Operator Limited

More information

Investing in Japan Speech by Shuichi Hirano Managing Director, JETRO Sydney. Copyright (C) 2015 JETRO. All rights reserved.

Investing in Japan Speech by Shuichi Hirano Managing Director, JETRO Sydney. Copyright (C) 2015 JETRO. All rights reserved. Investing in Japan Speech by Shuichi Hirano Managing Director, JETRO Sydney Copyright (C) 2015 JETRO. All rights reserved. Australian companies in Japan 2 Copyright (C) 2015 JETRO. All rights reserved.

More information

Privacy Shield Policy

Privacy Shield Policy Privacy Shield Policy Catalyst Repository Systems, Inc. (Catalyst) has adopted this Privacy Shield Policy ("Policy") to establish and maintain an adequate level of Personal Data privacy protection. This

More information

PPR TOKENS SALE PRIVACY POLICY. Last updated:

PPR TOKENS SALE PRIVACY POLICY. Last updated: PPR TOKENS SALE PRIVACY POLICY Last updated: 05.03.2018 STATUS AND ACCEPTANCE OF PRIVACY POLICY 1. This Privacy Policy (hereinafter referred to as the Policy ) sets forth the general rules of Participant

More information

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT TERMS & CONDITIONS www.karnevalkings.com (the "Site") is a website and online service owned and operated by the ViisTek Media group of companies (collectively known as "Karnevalkings.com", "we," "group",

More information

S00. SEMOpx - Registration Guide DO NOT SEND BACK. Date: 17/05/2017 Document; Revision: 1.2

S00. SEMOpx - Registration Guide DO NOT SEND BACK. Date: 17/05/2017 Document; Revision: 1.2 SEMOpx - Registration Guide DO NOT SEND BACK Date: 17/05/2017 Document; Revision: 1.2 SEMOpx - Registration Guide This document outlines the application requirements for registering with SEMOpx to trade

More information

Executive Summary of the Prepaid Rule

Executive Summary of the Prepaid Rule 1700 G Street NW, Washington, DC 20552 October 5, 2016 This summary is current as of October 5, 2016. It has not been updated to reflect final rules, guidance, or other interpretations issued after this

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

ANZ TRANSACTIVE GLOBAL REPORTING USER GUIDE

ANZ TRANSACTIVE GLOBAL REPORTING USER GUIDE ANZ TRANSACTIVE GLOBAL REPORTING USER GUIDE November 2016 CONTENTS Introduction 3 Reporting 4 Net Position... 6 Operating Accounts... 8 Transaction Search... 17 Nostro Accounts... 21 Nostro Accounts Search...

More information

These terms and conditions outline the rules and regulations for the use of Duxbury Networking's Website.

These terms and conditions outline the rules and regulations for the use of Duxbury Networking's Website. Welcome to Duxbury Networking! Introduction These terms and conditions outline the rules and regulations for the use of Duxbury Networking's Website. Duxbury Networking is located at: Block 1 Riviera Office

More information

Oracle Financial Analyzer Oracle General Ledger

Oracle Financial Analyzer Oracle General Ledger Oracle Financial Analyzer Oracle General Ledger Integrating Oracle Financial Analyzer with Oracle General Ledger Release 11i October 2000 Part No. A86564-01 Integrating Oracle Financial Analyzer with Oracle

More information

07/20/2016 Blackbaud Altru 4.91 Reports US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any

07/20/2016 Blackbaud Altru 4.91 Reports US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any Reports Guide 07/20/2016 Blackbaud Altru 4.91 Reports US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical,

More information

Investor Services Online Quick Reference Guide My Reports

Investor Services Online Quick Reference Guide My Reports The page allows you to view and manage your frequently used reports from one convenient page. You can schedule reports, enable the reports for unattended delivery through the AutoConnect and Automated

More information

[CZ01] CZ_Data Boxes. CZ_Data Boxes

[CZ01] CZ_Data Boxes. CZ_Data Boxes [CZ01] CZ_Data Boxes ID Initiative Short description Owner Contact Type Sub-Type Context Base Registry type Operating model CZ_Data Boxes Summary CZ01 Not Ava The Datove Schranky / Data boxes are an electronic

More information

Effective 1 January 2016

Effective 1 January 2016 BATS Chi-X Europe Market Data Policy Effective 1 January 2016 Published October 2015 Copyright BATS Trading Limited. No part of this material may be copied, photocopied, duplicated or published in any

More information

Networking Session - A trusted cloud ecosystem How to help SMEs innovate in the Cloud

Networking Session - A trusted cloud ecosystem How to help SMEs innovate in the Cloud Networking Session - A trusted cloud ecosystem How to help SMEs innovate in the Cloud ICT2015, 21 October 2015 Lisbon, Portugal Dr. Paolo Balboni, Partner at ICT Legal Consulting & Scientific Director

More information

amaysim Price Table Valid as of 30 November 2017 AMAYSIM PRICE TABLE

amaysim Price Table Valid as of 30 November 2017 AMAYSIM PRICE TABLE AMAYSIM PRICE TABLE Valid as of 30 November 2017 amaysim Price Table amaysim Australia Ltd, P.O. Box R567, Royal Exchange NSW 1225, Australia, ABN 65 143 613 478, ACN 143 613 478 Table of Contents 1. ABOUT

More information

Website privacy policy

Website privacy policy Website privacy policy Introduction Welcome to the Octopus Group s privacy policy ( Privacy Policy ) Octopus Group respects your privacy and is committed doing the right thing when it comes to protecting

More information

Federal Reserve Bank of Dallas

Federal Reserve Bank of Dallas ll K Federal Reserve Bank of Dallas July 12, 2000 DALLAS, TEXAS 75265-5906 Notice 2000-42 TO: The Chief Executive Officer of each financial institution and others concerned in the Eleventh Federal Reserve

More information

Delegated Entity Exclusion, Sanction & Debarment Checks. OIG/GSA database screening

Delegated Entity Exclusion, Sanction & Debarment Checks. OIG/GSA database screening Delegated Entity Exclusion, Sanction & Debarment Checks OIG/GSA database screening 2016 Contents Sanction/Exclusion/Debarment Checks... 2 Office of Inspector General (OIG)... 2 Searching for Exclusions

More information

BLOOMBERG LEGAL ENTITY IDENTIFIER (LEI) USER GUIDE

BLOOMBERG LEGAL ENTITY IDENTIFIER (LEI) USER GUIDE BLOOMBERG LEGAL ENTITY IDENTIFIER (LEI) USER GUIDE LEGAL ENTITY IDENTIFIER // 1 TABLE OF CONTENTS The Bloomberg LEI Web Portal User Guide is a step by step guide to provide you assistance when using the

More information

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

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

More information

CHIEF EXECUTIVE OFFICER/MANAGING PARTNER AND COMPLIANCE, REGULATORY, AND LEGAL DEPARTMENTS

CHIEF EXECUTIVE OFFICER/MANAGING PARTNER AND COMPLIANCE, REGULATORY, AND LEGAL DEPARTMENTS Information Memo Member Firm Regulation NYSE Regulation, Inc. 20 Broad Street New York, NY 10005 nyse.com Number 07-43 May 9, 2007 ATTENTION: TO: SUBJECT: CHIEF EXECUTIVE OFFICER/MANAGING PARTNER AND COMPLIANCE,

More information