Order Management Defaulting Rules reduce the amount of data input required when entering orders or returns.

Size: px
Start display at page:

Download "Order Management Defaulting Rules reduce the amount of data input required when entering orders or returns."

Transcription

1 Contents Order Management Defaulting Overview... 1 Defaulting Rule Components... 1 Sequence of Initial Attribute Defaulting... 2 Include in Building Defaulting Conditions... 2 Defaulting Condition Templates... 3 Defaulting Rules Button... 3 Default Sourcing Rules Region... 3 Dependencies... 4 How to Add a PL/SQL API as Defaulting Source... 5 Generating Defaulting Packages for Rules and Conditions... 5 Profile Options... 5 Defaulting Rules Report... 6 Important Notes... 6 Enabling / Disabling Dependencies in Dependency Package... 6 Verify Seeded Dependencies... 6 How to Add a Dependency... 6 Adding a new Source Attribute... 7 Adding a new Dependent Attribute... 7 Adding or Removing Dependency... 7 How to implement a change... 8 References... 8 Order Management Defaulting Overview Order Management Defaulting Rules reduce the amount of data input required when entering orders or returns. Defaulting Rule Components 1. Defaulting Source/Value (Entity and Attribute, Source Type) Attributes and Entities are the things you default to. (A) 2. Defaulting Condition - Conditions are rules you set up that will control when a particular group of default sources will be looked at. (B) 3. Precedence of Defaulting Condition (if multiple defaulting conditions exist, precedence determines the condition to use) (C) 4. Sequence (in what order is the rule applied if multiple rules exist) (D) 5. Source Type and Defaulting Source/Value: (how the attribute value is derived) Sources are where things default from. (E)

2 Defaulting Setup Form Navigator > Setup > Rules > Defaulting A F A G B I H Sequence of Initial Attribute Defaulting (F) - The defaulting sequence decides the order in which the attributes within an entity redefaulted. When attributes have equal sequence numbers, defaulting takes place alphabetically. Attribute with identical sequence numbers are defaulted in alphabetical order. For example- If the order type has a sequence number of 1 and the price list has a sequence number of 2, then the order type defaults before the price list. Include in Building Defaulting Conditions (G) - The Include in Building Defaulting Conditions check box indicates whether an Attribute can be used in defining conditions for the entity selected. Note: The Include in Building Defaulting Conditions checkbox is for display purposes only, and is nonupdateable.

3 Defaulting Condition Templates (H) - The Defaulting Condition Templates button enables you to define defaulting template and conditions for the application\entity combination displayed on the defaulting rules setup window. Selecting this button will take you to the Defaulting Condition Validation Templates window. Defaulting conditions enable you to define conditions that can be used to dictate how and when an attribute is sourced and defaulted. A generic condition of Always is seeded for each entity. Use this condition to define generic defaulting rules. (I) - In the Group Number field: 1. For conditions that should together evaluate to TRUE (AND conditions), enter the same group number. 2. For conditions that should together evaluate to OR (OR conditions), enter a different number for each record. Defaulting Rules Button The Defaulting Rules button enables users to define defaulting rules for the attribute selected. Selecting this button will take you to the Attribute Defaulting Rules window. Enter a value in the Precedence field to determine the precedence when resolving multiple TRUE defaulting conditions. Note: If more than one defaulting condition is valid, the conflict is resolved by internally ranking conditions using the Precedence value. For example, defaulting condition Standard Order has a precedence value of two and Copied Order has a precedence value of one. If an order is standard and a copied order, then the defaulting condition with higher priority, Copied Order, is used initially. If your conditions for Copy Order do not return a default, conditions for Standard Order will be evaluated. The Always condition should be the last in this sequence as it would always evaluate to True and no other defaulting conditions would be evaluated. Default Sourcing Rules Region Defaulting Sources: A defaulting rule source is the location from which you obtain a defaulting value. Defaulting Sources include: 1. Same Record 2. Related Record 3. System Variable 4. Constant Value 5. Profile Option 6. PL/SQL API Select the priority Sequence in which you want to retrieve the default for this attribute.

4 The defaulting process searches for a default for your attribute by evaluating defaulting rules in ascending order. Select the defaulting source type. The defaulting source type determines data entry in the Default Source/Value field. C B D E Dependencies Some attributes are dependent upon the value of other attributes on the same record. Dependencies can be established only among attributes on the same entity, not across entities. The list of available Source Attribute and Dependent attributes is pre-defined; most attributes are available but some are not. If an attribute is changed, either by the user or by the system, any attributes that are dependent on it will be cleared and then redefaulted. Note: Since the initial release of Oracle Order Management, functionality for Defaulting Rules has been slightly modified. Previous versions of Order Management allowed a change for certain attributes such that if re-defaulting did not determine a default for the dependent attribute, the previous value would be retained instead of clearing the value. Attributes affected are: 1. Price List 2. Salesperson

5 3. Customer PO Number 4. Order Type For example- the Salesperson for the Header Entity is dependent on Header Customer. If the Header Customer is changed, the Salesperson for the Header entity will be cleared and defaulting rules re-applied. Within previous releases, if the new Customer entered does not have a value for Salesperson, the old value was retained. In this release and within future releases, Order Management will leave the field Salesperson NULL if a default is not available. How to Add a PL/SQL API as Defaulting Source Create a function with the signature as described in the example below. FUNCTION <<My Function>> ( p_database_object_name IN VARCHAR2,p_attribute_code IN VARCHAR2) RETURN VARCHAR2 IS <<declare Local Variables>> BEGIN <<My Code to get the Value>> RETURN <<l_value>> EXCEPTION WHEN OTHERS THEN IF OE_MSG_PUB.Check_Msg_Level (OE_MSG_PUB.G_MSG_LVL_UNEXP_ERROR) THEN OE_MSG_PUB.Add_Exc_Msg ( G_PKG_NAME, '<<My Function>>' ); END IF; RAISE FND_API.G_EXC_UNEXPECTED_ERROR; END; Generating Defaulting Packages for Rules and Conditions To generate or update defaulting rules or defaulting conditions, you must submit the Defaulting Generator concurrent program. When you submit the Defaulting Generator concurrent program, a defaulting handler package is generated for each attribute on each entity. The creation of new rules or conditions, as well as modified rules and conditions are not effective until the defaulting package for the attribute is successfully generated. Profile Options The profile option OE_CONC_LOG_DIRECTORY determines the location where all the defaulting files are output when the concurrent program to re-generate defaulting packages is run. This directory should be included in the UTL_FILE_DIR parameter for the database.

6 Defaulting Rules Report There is a report in Order Management that lists the Defaulting Rules you have set up. The report is called Defaulting Rules Listing, and it has parameters to allow you to limit the listing to a specific object (entity), attribute or condition. Important Notes 1. If the Attribute name is the same on both the Order and the Line, you can initially default the value from the Header to the Line. For example, you can default Purchase Order at the Header to Purchase Order at the Line when you first create a PO number. The initial value will default, but if you change the PO the new value will not default automatically from the header to the line. 2. Defaulting conditions created for an Entity must be based on attributes within that Entity. For example, within the Lines Entity, you cannot use the attribute Order Type because Order Type is a attribute within the Header Entity. 3. you might define a sourcing rule that says default attribute A on the line from attribute B on the same line. In this case, you need to ensure that the Attribute B is defaulted before A is defaulted, or the rule may not work as you expect. 4. You can t default things from just anywhere. The data type has to match that of the attribute you are defaulting, and the source relationship has to be pre-defined. 5. You cannot change seeded defaulting rules but you can disable the defaulting rule's condition 6. When the Sequence in which the attributes within an entity are defaulted is changed, we must run the defaulting generator concurrent program from Resquest->Submit (and not from Forms->Menu->Tools). Don t provide value for the parameter attribute, leave it NULL. Enabling / Disabling Dependencies in Dependency Package Verify Seeded Dependencies Check Dependencies in package OE_Dependencies (file OEXUDEPB.pls) under PROCEDURE Load_Entity_Attributes. This procedure will show the seeded Dependencies. How to Add a Dependency Add the following code in OEXEDEPB.pls:

7 x_extn_dep_tbl(l_index).source_attribute := <Name of Source Attbiute> x_extn_dep_tbl(l_index).dependent_attribute := <Name of Dependent attribute> x_extn_dep_tbl(l_index).enabled_flag := 'Y'; l_index := l_index + 1; Here the name of source attribute and the dependent attribute are those listed in OEXEDEPB.pls If, on the other hand, you want to create a dependency for a source or a dependent attribute that is not listed in OEXEDEPB.pls, you have to do a little more. Adding a new Source Attribute Add the following statement in OE_<ENTITY>_Util.Clear_Dependent_Attr Eg- Add the following statement in OE_Header_Util.Clear_Dependent_Attr (file: OEXUHDRB.pls). So that the attribute is added to table IF NOT OE_GLOBALS.Equal(p_x_header_rec.shipment_priority_code,p_old_header_rec.shipment_priority_code) THEN l_index := l_index + 1.0; l_src_attr_tbl(l_index) := OE_HEADER_UTIL.G_SHIPMENT_PRIORITY; END IF Adding a new Dependent Attribute First, add a sub-procedure <attribute> in PROCEDURE OE_<ENTITY>_Util.Clear_Dependents. This sub procedure should set the Atribute to G_MISS. You also need to add a statement in the big IF loop in the main procedure OE_<ENTITY>_Util.Clear_Dependents to call this new sub-procedure < attribute > Adding or Removing Dependency Modification is needed to be done in PACKAGE BODY OE_Dependencies_Extn file OEXEDEPB.pls In order to start using the package modifications: A) Increase the version number in the header line to a high value, for example Header: OEXEDEPB.pls This would prevent patches from over-writing this package in the future. B) Included are some examples on how to enable/disable dependencies please use these guidelines to edit dependencies as per your defaulting rules. Please note that: i) List of attributes is restricted to those in the earlier comments in this file. ii) Source attribute and dependent attribute should belong to the same entity! Example: -- Dependencies for Order Header Entity

8 IF p_entity_code = OE_GLOBALS.G_ENTITY_HEADER THEN null; --Sample Code for disabling dependency of Invoice To on Ship To x_extn_dep_tbl(l_index).source_attribute := OE_HEADER_UTIL.G_SHIP_TO_ORG; x_extn_dep_tbl(l_index).dependent_attribute := OE_HEADER_UTIL.G_INVOICE_TO_ORG; x_extn_dep_tbl(l_index).enabled_flag := 'N'; l_index := l_index + 1; This API does not support dependencies across entities i.e. Changing an attribute on order header will not result in a change to attributes on order line. How to implement a change 1. Take a backup of current OEXEDEPB.pls file 2. Now copy the original file and name the coped file as OEXEDEPB_1.pls 3. Make the changes to the file. Save it. 4. Run the file in sqlplus as apps user: a. SQL>@ OEXEDEPB_1.pls 5. Log into the application and run the Defaulting Generator program. 6. Retest the issue in sales order form. 7. In case you want to revert the changes back run the back file: a. SQL>@ OEXEDEPB.pls 8. Log into the application and run the Defaulting Generator program. References 1. OM User Guide 2. OM Suite Implementation Guide 3. White Paper- Using Defaulting Rules in Oracle Order Management, Doc ID Using Defaulting Rules in Oracle Order Management, Doc ID How does one add a dependency between the field Sales person and Whse in OEXEDEPB.pls?, Doc ID

Audit History in Order Management. An Oracle WhitePaper

Audit History in Order Management. An Oracle WhitePaper Audit History in Order Management An Oracle WhitePaper November 2010 Oracle Order Management enables you to audit the changes in order attributes from the Sales Orders, Quick Sales Order, Order Organizer,

More information

Oracle Depot Repair. Implementing Oracle Depot Repair. Implementation Guide

Oracle Depot Repair. Implementing Oracle Depot Repair. Implementation Guide Oracle Depot Repair Implementation Guide Release 11i November 2000 Part No. A87337-01 Implementing Oracle Depot Repair This document provides descriptions of the setup and configuration tasks required

More information

Welcome to the Cub Cadet Dealer Community. Any questions please

Welcome to the Cub Cadet Dealer Community. Any questions please Welcome to the Cub Cadet Dealer Community Any questions please email dealercommunitysupport@cubcadet.com Go to www.mtdcommunity.com Initial Log In - Enter User ID & Password you received in the email -

More information

Shopping Basket and Order Requirements

Shopping Basket and Order Requirements Page 1 of 41 Page 2 of 41 1. The user can browse the site and select the product items to be added to the Shopping basket. Use the Catalog link to search and add products to the shopping basket or click

More information

PROFILE OPTIONS FOR CONCURRENT MANAGER(CM)

PROFILE OPTIONS FOR CONCURRENT MANAGER(CM) PROFILE OPTIONS FOR CONCURRENT MANAGER(CM) This document describes list of profile options available for CM in Oracle Apps. 1. Concurrent: Active Request Limit This profile options will restrict the number

More information

Genesis Advantage. Version 7

Genesis Advantage. Version 7 Welcome to Genesis Advantage version 7! We have packed many new features and enhancements into this release. Most of these features were suggested by our clients and we appreciate your input. We have included

More information

Oracle Fusion Procurement, Supplier Contracts and Agreements Guide. 11g Release 1 (11.1.3) Part Number E

Oracle Fusion Procurement, Supplier Contracts and Agreements Guide. 11g Release 1 (11.1.3) Part Number E Oracle Fusion Procurement, Supplier Contracts and Agreements Guide 11g Release 1 (11.1.3) Part Number E22850-03 December 2011 Oracle Fusion Procurement, Supplier Contracts and Agreements Guide Part Number

More information

Real Application Security Administration

Real Application Security Administration Oracle Database Real Application Security Administration Console (RASADM) User s Guide 12c Release 2 (12.2) E85615-01 June 2017 Real Application Security Administration Oracle Database Real Application

More information

Huawei Enterprise USA Basic Warranty

Huawei Enterprise USA Basic Warranty Huawei Enterprise USA Basic Warranty Issue 1.6 Date 2016-10-14 2016-10-14 Copyright Huawei 2014. Page 1 of 5 Dear customer, Thank you for choosing the products and services of Huawei. To ensure that Huawei

More information

Myridas Sales Navigator User Guide

Myridas Sales Navigator User Guide Myridas Sales Navigator User Guide Version 12 for Dynamics GP 2013 Document version: 1.0 Date: 31 st March 2013 CONTENTS Contents CONTENTS... 2 SALES NAVIGATOR... 3 SETUP... 4 1. SALES SEARCH DEFAULT SITE

More information

LEARN TO DEVELOP A LIVE PROJECT AS PER IT STANDARDS. Module 1: What we are going to Learn. Prerequisites

LEARN TO DEVELOP A LIVE PROJECT AS PER IT STANDARDS. Module 1: What we are going to Learn. Prerequisites LEARN TO DEVELOP A LIVE PROJECT AS PER IT STANDARDS Module 1: What we are going to Learn Here we will explain you everything you are going to learn in this course. This module contains an introduction

More information

Customer Relationship Management Software Version 1.0. Administrator Guide Guide Version ITarian 1255 Broad Street Clifton, NJ 07013

Customer Relationship Management Software Version 1.0. Administrator Guide Guide Version ITarian 1255 Broad Street Clifton, NJ 07013 Customer Relationship Management Software Version 1.0 Administrator Guide Guide Version 1.0.111218 ITarian 1255 Broad Street Clifton, NJ 07013 Table of Contents 1. Introduction to CRM...5 1.1.Open the

More information

AppsRules Suite. Patch Installation Guide. Software Version 6.5

AppsRules Suite. Patch Installation Guide. Software Version 6.5 AppsRules Suite Patch Installation Guide Software Version 6.5 2005 Logical Apps All rights reserved. Printed in USA. Restricted Rights Legend This software and associated documentation contain proprietary

More information

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS

RESOLV EDI CONTROL. User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS RESOLV EDI CONTROL User Guide Version 9.2 for HANA PRESENTED BY ACHIEVE IT SOLUTIONS Copyright 2011-2016 by Achieve IT Solutions These materials are subject to change without notice. These materials are

More information

This is a known issue (SVA-700) that will be resolved in a future release IMPORTANT NOTE CONCERNING A VBASE RESTORE ISSUE

This is a known issue (SVA-700) that will be resolved in a future release IMPORTANT NOTE CONCERNING A VBASE RESTORE ISSUE SureView Analytics 6.1.1 Release Notes ================================= --------- IMPORTANT NOTE REGARDING DOCUMENTATION --------- The Installation guides, Quick Start Guide, and Help for this release

More information

Dynamics 365 for Customer Service - User's Guide

Dynamics 365 for Customer Service - User's Guide Dynamics 365 for Customer Service - User's Guide 1 2 Contents Dynamics 365 for Customer Service - User's Guide...9 Improve customer service with better automation and tracking...9 Create queue and route

More information

RESPONSIVE SOLUTIONS, INC. CUSTOMER+ ADMIN MANUAL

RESPONSIVE SOLUTIONS, INC. CUSTOMER+ ADMIN MANUAL RESPONSIVE SOLUTIONS, INC. ADMIN MANUAL Version 5.5 2011 3 USER MANAGEMENT: Administration > User Management User Management is where you will add, edit, activate and deactivate users, as well as import

More information

Oracle Order Capture. Dependencies. Related Documentation and Resources. Implementation Guide

Oracle Order Capture. Dependencies. Related Documentation and Resources. Implementation Guide Oracle Order Capture Implementation Guide Release 11i August 2000 Part No. A86137-01 This topic group provides general descriptions of the set up and configuration tasks required to implement the application

More information

IDYNAMICS INCIDENT MANAGEMENT USER S GUIDE

IDYNAMICS INCIDENT MANAGEMENT USER S GUIDE IDYNAMICS INCIDENT MANAGEMENT USER S GUIDE idynamics Incident Management info@aitana.es www.aitana.es +34 902 500 358 INDEX IDYNAMICS INCIDENT MANAGEMENT... 3 INTRODUCTION... 3 SETUP... 4 CATEGORY AND

More information

9. CREATING PURCHASE ORDERS ONLINE

9. CREATING PURCHASE ORDERS ONLINE 9. CREATING PURCHASE ORDERS ONLINE Overview: This document will demonstrate how to create purchase orders online in PeopleSoft 8.9. A PO consists of four basic components: header, line(s), schedule(s),

More information

1. About AP Invoice Wizard

1. About AP Invoice Wizard 1. About AP Invoice Wizard Welcome to AP Invoice Wizard. We have developed this tool in response to demand from Oracle Payables users for a user friendly and robust spreadsheet tool to load AP Invoices

More information

Kintana Object*Migrator System Administration Guide. Version 5.1 Publication Number: OMSysAdmin-1203A

Kintana Object*Migrator System Administration Guide. Version 5.1 Publication Number: OMSysAdmin-1203A Kintana Object*Migrator System Administration Guide Version 5.1 Publication Number: OMSysAdmin-1203A Kintana Object*Migrator, Version 5.1 This manual, and the accompanying software and other documentation,

More information

BuycPanel.com Licensing Addon Module v5.3

BuycPanel.com Licensing Addon Module v5.3 BuycPanel.com Licensing Addon Module v5.3 Prerequisites Before you start you will require: Your BuycPanel.com login email address, (i.e. xxx@xxx.com) Your BuycPanel.com API Key, this is available by logging

More information

CS Exam 1 Review Suggestions - Spring 2017

CS Exam 1 Review Suggestions - Spring 2017 CS 328 - Exam 1 Review Suggestions p. 1 CS 328 - Exam 1 Review Suggestions - Spring 2017 last modified: 2017-02-16 You are responsible for material covered in class sessions and homeworks; but, here's

More information

Customer Relationship Management Software Version 1.0

Customer Relationship Management Software Version 1.0 Customer Relationship Management Software Version 1.0 Administrator Guide Guide Version 1.0.111218 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1. Introduction to CRM...5

More information

eadvice Communications and Follow-Ups 33 Communication and follow-up context 33 Communication 34 Follow-up 35

eadvice Communications and Follow-Ups 33 Communication and follow-up context 33 Communication 34 Follow-up 35 Star System Solutions Pty Ltd eadvice User Guide eadvice About This Guide 2 Before you begin 3 Configuration 5 Attachment Printer 16 System Test 17 Maintain Contact Codes 18 Maintain Advice Forms 19 Contacts

More information

Release Features CASH v2018.3

Release Features CASH v2018.3 Release Features CASH v2018.3 Document issue history Date Issue 01/10/2018 Draft 1.0 C J M Farrar Page 1 of 16 Table of Contents 1 Global... 3 1.1 CASH Launcher... 3 1.1.1 CF29004920 Changes to the Cashforwindows.exe

More information

LowesLink Spend Management (SM)

LowesLink Spend Management (SM) LowesLink Spend Management (SM) Review Purchase Orders Effective Date: June 26, 2017 Lowe s Logo and LowesLink are registered trademarks of LF, LLC. All Rights Reserved. 1 Agenda Slides Expectations 3

More information

Purchase Order Processor

Purchase Order Processor Purchase Order Processor Last Update: 6/26/13 Digital Gateway, Inc. All rights reserved ii Table of Contents PO PROCESSOR... 1 SETUP... 5 CONNECTION SETTINGS... 5 Overview... 5 PO Processor Settings Manager...

More information

Creating databases using SQL Server Management Studio Express

Creating databases using SQL Server Management Studio Express Creating databases using SQL Server Management Studio Express With the release of SQL Server 2005 Express Edition, TI students and professionals began to have an efficient, professional and cheap solution

More information

PROCEDURAL DATABASE PROGRAMMING ( PL/SQL AND T-SQL)

PROCEDURAL DATABASE PROGRAMMING ( PL/SQL AND T-SQL) Technology & Information Management Instructor: Michael Kremer, Ph.D. Class 4 Database Programming PROCEDURAL DATABASE PROGRAMMING ( PL/SQL AND T-SQL) AGENDA 6. Stored Functions Procedural Database Programming

More information

Upgrading to Priority 16

Upgrading to Priority 16 Upgrading to Priority 16 Priority Software is pleased to announce the release of Priority Version 16. This upgrade will install all of the latest developments and fixes to Priority, based on the version

More information

Quick Start Guide for Kwik Quotation System

Quick Start Guide for Kwik Quotation System Quick Start Guide for Kwik Quotation System >> After login Kwik Order, access Go To Quotation System >> Below is the Kwik Quotation home page. Initial Setup >> Access Contact Setup and click Add New Contact

More information

Administration of Users, Roles and Responsibilities in Release 12 When Technologies Collide. Chuck Kennedy Susan Behn Brian Bent April 15, 2008

Administration of Users, Roles and Responsibilities in Release 12 When Technologies Collide. Chuck Kennedy Susan Behn Brian Bent April 15, 2008 Administration of Users, Roles and Responsibilities in Release 12 When Technologies Collide Chuck Kennedy Susan Behn Brian Bent April 15, 2008 Role Based Access Control (RBAC) 2 What is RBAC? Role Based

More information

AppsAudit. User s Guide. Software Version 6.5.6

AppsAudit. User s Guide. Software Version 6.5.6 AppsAudit User s Guide Software Version 6.5.6 2006 LogicalApps All rights reserved. Printed in USA. Restricted Rights Legend This software and associated documentation contain proprietary information of

More information

ebusiness Suite goes SOA

ebusiness Suite goes SOA ebusiness Suite goes SOA Ulrich Janke Oracle Consulting Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not

More information

An Oracle White Paper March How to Define an Importer Returning Error Messages to the Oracle Web Applications Desktop Integrator Document

An Oracle White Paper March How to Define an Importer Returning Error Messages to the Oracle Web Applications Desktop Integrator Document An Oracle White Paper March 2012 How to Define an Importer Returning Error Messages to the Oracle Web Applications Desktop Integrator Document Disclaimer The following is intended to outline our general

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

User Guide. Document Version: 1.0. Solution Version: 365_102017_3_4

User Guide. Document Version: 1.0. Solution Version: 365_102017_3_4 User Guide Document Version: 1.0 Solution Version: 365_102017_3_4 Table of Contents How to Install Purchase Manager in your Dynamics 365?... 3 How to Configure Purchase Manager Security Roles in your Dynamics

More information

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2)

Oracle SQL. murach s. and PL/SQL TRAINING & REFERENCE. (Chapter 2) TRAINING & REFERENCE murach s Oracle SQL and PL/SQL (Chapter 2) works with all versions through 11g Thanks for reviewing this chapter from Murach s Oracle SQL and PL/SQL. To see the expanded table of contents

More information

Sostenuto 4.1 title page. System Management User s Guide

Sostenuto 4.1 title page. System Management User s Guide Sostenuto 4.1 title page System Management User s Guide Date: November 2013 All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means, or stored in any

More information

SYRACUSE GLASS COMPANY WEB CENTER SETUP MANUAL. There are several required and optional features to be setup before using Web Center.

SYRACUSE GLASS COMPANY WEB CENTER SETUP MANUAL. There are several required and optional features to be setup before using Web Center. Setup There are several required and optional features to be setup before using Web Center. The top portion of the Dashboard contains navigation menus and links described below: The above navigation menu

More information

1 COLOR SCHEMES Themes & Independent Color Control R2 Themes... 1

1 COLOR SCHEMES Themes & Independent Color Control R2 Themes... 1 R2: Misc TABLE OF CONTENTS 1 COLOR SCHEMES... 1 1.1 Themes & Independent Color Control... 1 1.2 R2 Themes... 1 1.2.1 R2... 1 1.2.2 METAL... 2 1.2.3 MOTIF... 2 1.2.4 R2XP... 3 1.2.5 WINDOWS... 3 1.2.6 CUSTOM...

More information

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites

Oracle Database. Installation and Configuration of Real Application Security Administration (RASADM) Prerequisites Oracle Database Real Application Security Administration 12c Release 1 (12.1) E61899-04 May 2015 Oracle Database Real Application Security Administration (RASADM) lets you create Real Application Security

More information

Comodo Customer Relationship Management Software Version 1.0

Comodo Customer Relationship Management Software Version 1.0 Comodo Customer Relationship Management Software Version 1.0 Administrator Guide Guide Version 1.0.082417 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1. Introduction

More information

DuPont Direct Next Generation User Interface

DuPont Direct Next Generation User Interface DuPont Direct Next Generation User Interface October 22, 2009 Agenda Welcome What has not changed What has changed Examples Copyright 2009 DuPont. All rights reserved. The DuPont Oval Logo, DuPont, The

More information

STEP BY STEP GUIDE TO TENCEL BRANDING

STEP BY STEP GUIDE TO TENCEL BRANDING STEP BY STEP GUIDE TO TENCEL BRANDING Most of KenDor s Lyocell fabrications are made from Lenzing certified yarns and therefore qualify for to be branded Lenzing proprietary Tencel marketing including

More information

MOBILE DATABASE VIEWER PLUS USER GUIDE

MOBILE DATABASE VIEWER PLUS USER GUIDE MOBILE DATABASE VIEWER PLUS USER GUIDE PRODUCT VERSION: 4.0 Mobile Database Viewer Plus Page 1 CONTENTS 1 INTRODUCTION...5 1.1 FEATURES...5 2 INSTALLATION...6 2.1 DESKTOP INSTALLATION...6 2.2 DEVICE INSTALLATION...6

More information

An Oracle White Paper September 2014 (updated) Use of Oracle Business Rules (OBR) to Tailor Order Fulfillment for DOO

An Oracle White Paper September 2014 (updated) Use of Oracle Business Rules (OBR) to Tailor Order Fulfillment for DOO An Oracle White Paper September 2014 (updated) Use of Oracle Business Rules (OBR) to Tailor Order Fulfillment for DOO Introduction... 1 Oracle Business Rules Basics... 2 OBR Components... 4 OBR Use in

More information

Use this procedure to submit an invoice for services provided to OPG.

Use this procedure to submit an invoice for services provided to OPG. Purpose Use this procedure to submit an invoice for services provided to OPG. Helpful Hints Ariba support is available at all times to help assist when any difficulties are encountered or to answer any

More information

Activant Prophet 21. Using Fast Edits on Your Database

Activant Prophet 21. Using Fast Edits on Your Database Activant Prophet 21 Using Fast Edits on Your Database This class is designed for Prophet 21 users who are involved with any type of data entry Objectives Identify the fast edits that are available Select

More information

USER MANUAL. SuitePort - SuiteCRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 2.5.0

USER MANUAL. SuitePort - SuiteCRM Customer Portal for WordPress TABLE OF CONTENTS. Version: 2.5.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 SuiteCRM Plug-in Installation... 2 WordPress Manual Plug-in installation... 3 Plug-in

More information

iforms Migration Workbook iforms 1 to iforms 2

iforms Migration Workbook iforms 1 to iforms 2 iforms iforms 1 to iforms 2 RJS Software Systems 2970 Judicial Road, Suite 100 Burnsville, MN 55337 Phone: 952-736-5800 Fax: 952-736-5801 Sales email: sales@rjssoftware.com Support email: support@rjssoftware.com

More information

Related Documentation and Resources

Related Documentation and Resources Oracle Order Capture Implementation Guide Release 11i January 2001 Part No. A86137-02 This document provides general descriptions of the set up and configuration tasks required to implement the Oracle

More information

Financial Services Training Guide. PeopleSoft (9.1): Introduction to Electronic Purchase Orders

Financial Services Training Guide. PeopleSoft (9.1): Introduction to Electronic Purchase Orders Financial Services Training Guide PeopleSoft (9.1): Introduction to Electronic Purchase Orders Page 1 24 May 2016 Table of Contents 1 Create a Purchase Order... 3 2 Switching off GST... 12 3 Search for

More information

The Buyers Work Centre: Searching

The Buyers Work Centre: Searching The Detailed Procedure The Buyers Work Centre (BWC) has replaced the Purchase Order Summary Screen. It provides more flexibility when searching (whether orders, requisitions, suppliers), running and printing

More information

User Guide. Nexmo SMS Notification Extension for Magento by Azaleasoft. Support: (

User Guide. Nexmo SMS Notification Extension for Magento by Azaleasoft. Support: ( Nexmo SMS Notification Extension for Magento by Azaleasoft User Guide Copyright 2016-2017 azaleasoft.com. 1 Table of Contents 1.Installation Process... 3 2.How to use... 4 2.1 Create Nexmo Account... 4

More information

Improved Import / Export Magento 2 Extension Manual. Manual for Improved Import / Export extension for Magento 2

Improved Import / Export Magento 2 Extension Manual. Manual for Improved Import / Export extension for Magento 2 Improved Import / Export Magento 2 Extension Manual February 24, 2017 - Magento 2, Our extensions Manual for Improved Import / Export extension for Magento 2 Improved Import and Export extension allows

More information

iforms Migration Workbook Electronic Forms to iforms 2

iforms Migration Workbook Electronic Forms to iforms 2 iforms Electronic Forms to iforms 2 RJS Software Systems 2970 Judicial Road, Suite 100 Burnsville, MN 55337 Phone: 952-736-5800 Fax: 952-736-5801 Sales email: sales@rjssoftware.com Support email: support@rjssoftware.com

More information

Oracle APEX 5.2 / The Golden Nuggets. Dietmar Aust Opal-Consulting, Köln

Oracle APEX 5.2 / The Golden Nuggets. Dietmar Aust Opal-Consulting, Köln 1 Oracle APEX 5.2 / 18.1 - The Golden Nuggets Dietmar Aust Opal-Consulting, Köln www.opal-consulting.de About Dietmar. 2 Dipl.-Inform. Dietmar Aust, Freelance Consultant Master's Degree in Computer Science

More information

USER MANUAL. SugarPort - SugarCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0

USER MANUAL. SugarPort - SugarCRM Customer Portal for Drupal TABLE OF CONTENTS. Version: 1.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Installation... 2 Drupal Manual Plug-in installation... 2 Plug-in Configuration... 4 Drupal Configuration Settings... 4

More information

What s New in Autodesk Constructware 2013 Release

What s New in Autodesk Constructware 2013 Release Autodesk Constructware 2013 What s New in Autodesk Constructware 2013 Release Figure 1. Autodesk Constructware 2013 Autodesk Constructware web-based project management software enables construction firms

More information

Oracle APEX 18.1 (aka 5.2) The Golden Nuggets. Dietmar Aust Opal-Consulting, Köln

Oracle APEX 18.1 (aka 5.2) The Golden Nuggets. Dietmar Aust Opal-Consulting, Köln 1 Oracle APEX 18.1 (aka 5.2) The Golden Nuggets Dietmar Aust Opal-Consulting, Köln www.opal-consulting.de About Dietmar. 2 Dipl.-Inform. Dietmar Aust, Freelance Consultant Master's Degree in Computer Science

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop I Release 2 course explores the fundamentals of basic database

More information

Sage 300. Sage CRM 7.3 Integration Upgrade Guide

Sage 300. Sage CRM 7.3 Integration Upgrade Guide Sage 300 Sage CRM 7.3 Integration Upgrade Guide This is a publication of Sage Software, Inc. Copyright 2015. Sage Software, Inc. All rights reserved. Sage, the Sage logos, and the Sage product and service

More information

Request for Credit in Accounts Payable

Request for Credit in Accounts Payable App Number: 010045 Request for Credit in Accounts Payable Last Updated 28 September 2016 Powered by: AppsForGreentree.com 2014 1 Table of Contents Features... 3 Detailed Features... 3 Important Notes...

More information

Governance, Risk, and Compliance Controls Suite. Preventive Controls Governor Audit Rules User s Guide. Software Version

Governance, Risk, and Compliance Controls Suite. Preventive Controls Governor Audit Rules User s Guide. Software Version Governance, Risk, and Compliance Controls Suite Preventive Controls Governor Audit Rules User s Guide Software Version 7.2.2.1 Preventive Conrols Governor: Audit Rules User s Guide Part No. AR002-7221A

More information

Using Oracle Designer 6i to Configuration Management Internet Platform Applications. An Oracle Technical White Paper October 2000

Using Oracle Designer 6i to Configuration Management Internet Platform Applications. An Oracle Technical White Paper October 2000 Using Oracle Designer 6i to Configuration Management Internet Platform Applications An Oracle Technical White Paper INTRODUCTION Configuration Management does not normally become an issue within a software

More information

Creating a Non-Catalog Order for an Exception Item in eprocurement

Creating a Non-Catalog Order for an Exception Item in eprocurement Creating a Non-Catalog Order for an Exception Item in eprocurement For this demonstration we will place a Non-Catalog Order for a one-time purchase of bagels and bagel condiments (cream cheese, etc.) for

More information

Release Notes. ESN Build 1018, 1011, 992, 959, 948, 937, 844. Copyright 2017 ECi Software Solutions Page 1 All rights reserved

Release Notes. ESN Build 1018, 1011, 992, 959, 948, 937, 844. Copyright 2017 ECi Software Solutions Page 1 All rights reserved Release Notes ESN Build 1018, 1011, 992, 959, 948, 937, 844 Copyright 2017 ECi Software Solutions Page 1 Release Notes ESN Build 1018 Release contains maintenance patch to address specific issue related

More information

Unacknowledged/Late Delivery Web Tool

Unacknowledged/Late Delivery Web Tool Table of Contents Register:... 2 Log on to Web Site:... 2 Logoff Web Site:... 3 List PO s Page:... 4 To Acknowledge PO or Change PO date.... 5 To Mark a PO Shipped.... 6 To Change the Price.... 6 Send

More information

Navigating the New Airgas Punchout Site Personalized

Navigating the New Airgas Punchout Site Personalized Navigating the New Airgas Punchout Site Personalized Table of Contents Getting Started... 3 Getting to Airgas Punchout site... 3 Main Navigation Menu... 3 Account Dashboard... 4 My Lists... 4 My Items...

More information

BIG-IP Access Policy Manager : Portal Access. Version 12.1

BIG-IP Access Policy Manager : Portal Access. Version 12.1 BIG-IP Access Policy Manager : Portal Access Version 12.1 Table of Contents Table of Contents Overview of Portal Access...7 Overview: What is portal access?...7 About portal access configuration elements...7

More information

Using the navigation path > Order Management

Using the navigation path > Order Management Oracle 11i Receivables Implementation Primer Editor s Note: The implementation of Oracle 11i Receivables does not have to be riddled with showstopper issues and numerous open TARs. With a little forward

More information

AppsAudit. User s Guide. Software Version 7.0

AppsAudit. User s Guide. Software Version 7.0 AppsAudit User s Guide Software Version 7.0 2005 Logical Apps All rights reserved. Printed in USA. Restricted Rights Legend This software and associated documentation contain proprietary information of

More information

ThingWorx Relational Databases Connectors Extension User Guide

ThingWorx Relational Databases Connectors Extension User Guide ThingWorx Relational Databases Connectors Extension User Guide Version 1.0 Software Change Log... 2 Introduction and Installation... 2 About the Relational Databases Connectors Extension... 2 Installing

More information

Unicenter Asset Portfolio Management. r11 Migration Highlights. Date: April 2008 Version: 4.1

Unicenter Asset Portfolio Management. r11 Migration Highlights. Date: April 2008 Version: 4.1 Unicenter Asset Portfolio Management r11 Migration Highlights Date: April 2008 Version: 4.1 Author: John Fulton Index 1 Introduction 3 2 UAPM r11 Migration Process - High Level Outline 3 3 Items to address

More information

Cisco Service Contract Center Q4FY13

Cisco Service Contract Center Q4FY13 Cisco Service Contract Center Q4FY13 Release Update Training for 2TNG Distributor May 19 th 2013 2013 Cisco and/or its affiliates. All rights reserved. Cisco Public 1 General Enhancements Quoting & Ordering

More information

ARIBA BPO PROCESS FOR CCA SUPPLIERS

ARIBA BPO PROCESS FOR CCA SUPPLIERS CONTENTS ARIBA BPO PROCESS FOR CCA SUPPLIERS Introduction to Ariba Light 1 Ariba Light Workflow 2 Processing and Managing the Blanket Purchase Order 3 Processing the Invoice 4 Ariba Light -Interactive

More information

E-IT Look-up Tools and Reports

E-IT Look-up Tools and Reports This manual will demonstrate how to look up and open current and past E-ITs and will also show how an IT initiator can run a formatted report for individual ITs Look-up Tools Default Org Approvers, Plus

More information

Contents OVERVIEW... 3

Contents OVERVIEW... 3 Contents OVERVIEW... 3 Feature Summary... 3 CONFIGURATION... 4 System Requirements... 4 ConnectWise Manage Configuration... 4 Configuration of Manage Login... 4 Configuration of Integrator Login... 5 Option

More information

Known Issue: KI9.2-73_EX Creating Travel Authorization from a Template Causes Accounting Details to be Blank

Known Issue: KI9.2-73_EX Creating Travel Authorization from a Template Causes Accounting Details to be Blank Known Issue: KI9.2-73_EX Creating Travel Authorization from a Template Causes Accounting Details to be Blank UPDATED: December 1, 2018 STATUS: RESOLVED IMPACT: As of Release 5.40, dated December 1, 2018,

More information

ROCHE DIAGNOSTICS INDIA PVT LTD. WEB ORDERING MANUAL

ROCHE DIAGNOSTICS INDIA PVT LTD. WEB ORDERING MANUAL ROCHE DIAGNOSTICS INDIA PVT LTD. WEB ORDERING MANUAL Home Page In a glance you can see a summary of all the activities going on in the website. You can search a desired product item directly from the home

More information

Data Protection Using Premium Features

Data Protection Using Premium Features Data Protection Using Premium Features A Dell Technical White Paper PowerVault MD3200 and MD3200i Series Storage Arrays www.dell.com/md3200 www.dell.com/md3200i THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES

More information

User Documentation. t-commerce User s Guide

User Documentation. t-commerce User s Guide User Documentation t-commerce User s Guide TRIBUTE INC. USER DOCUMENTATION t-commerce User s Guide Copyright Notice and Trademarks 2000-2007 Tribute, Inc. All rights reserved t-commerce is a registered

More information

UNIT 2 Set Operators

UNIT 2 Set Operators Course Title: Database Systems ( M.C.A 1 st Semester ) (Evening Batch) UNIT 2 Set Operators Set operators are used to join the results of two (or more) SELECT statements.the SET operators available in

More information

OVERVIEW OF THE TYPES OF PL/SQL BLOCKS:

OVERVIEW OF THE TYPES OF PL/SQL BLOCKS: OVERVIEW OF THE TYPES OF PL/SQL BLOCKS: The P/L SQL blocks can be divided into two broad categories: Anonymous Block: The anonymous block is the simplest unit in PL/SQL. It is called anonymous block because

More information

Upgrading to CounterPoint

Upgrading to CounterPoint 1 Installation and Configuration: Getting Started Upgrading to CounterPoint Overview This document provides instructions for upgrading your data to CounterPoint from earlier versions of SYNCHRONICS software

More information

R12.x Oracle Order Management Fundamentals Student Guide

R12.x Oracle Order Management Fundamentals Student Guide R12.x Oracle Order Management Fundamentals Student Guide D60267GC10 Edition 1.0 May 2010 D66322 Copyright 2010, Oracle. All rights reserved. Disclaimer This document contains proprietary information and

More information

Extend EBS Using Applications Express

Extend EBS Using Applications Express Extend EBS Using Applications Express John Peters JRPJR, Inc. Abstract Few people know about Oracle Applications Express (APEX) an actual free Oracle Tool included with your Oracle DB Licenses. How many

More information

De La Salle University Information Technology Center. Microsoft Windows SharePoint Services and SharePoint Portal Server 2003

De La Salle University Information Technology Center. Microsoft Windows SharePoint Services and SharePoint Portal Server 2003 De La Salle University Information Technology Center Microsoft Windows SharePoint Services and SharePoint Portal Server 2003 WEB DESIGNER / ADMINISTRATOR User s Guide 2 Table Of Contents I. What is Microsoft

More information

User Guide. Twilio SMS Notification. Extension for Magento by Azaleasoft. Support: (

User Guide. Twilio SMS Notification. Extension for Magento by Azaleasoft. Support: ( Twilio SMS Notification Extension for Magento by Azaleasoft User Guide Copyright 2016-2017 azaleasoft.com. 1 Table of Contents 1.Installation Process 3 2.How to use 4 2.1 Create Twilio Account 4 2.2 Admin

More information

KwikTag T3 Release Notes

KwikTag T3 Release Notes KwikTag T3 Release Notes The KwikTag T3 release is a major release with many great new features and improvements to quality and performance. KwikTag T3 was released on 01/23/2012 with a customer compatibility

More information

Register for a New Account

Register for a New Account Contents What is QuoteFast?...1 Register for a New Account...2 Workflow & Functionality...3 Create a BOM...6 Search for a BOM...7 Copy from Existing BOMs...8 Add Catalog Items to BOM...9 Add Configured

More information

Invoice QuickStart Guide

Invoice QuickStart Guide Invoice QuickStart Guide Table of Contents Working with Payment Requests Manually Creating a Payment Request from an Existing Vendor Creating a Recurring Payment Request Adding Distributions to a Payment

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: 55-800-891-6502 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This course is designed to give you a firm foundation in basic

More information

Integrations. Help Documentation

Integrations. Help Documentation Help Documentation This document was auto-created from web content and is subject to change at any time. Copyright (c) 2018 SmarterTools Inc. Integrations Base WHMCS SmarterMail Provisioning Module Package

More information

Visual Workflow Implementation Guide

Visual Workflow Implementation Guide Version 30.0: Spring 14 Visual Workflow Implementation Guide Note: Any unreleased services or features referenced in this or other press releases or public statements are not currently available and may

More information

ORACLE DATABASE 12C INTRODUCTION

ORACLE DATABASE 12C INTRODUCTION SECTOR / IT NON-TECHNICAL & CERTIFIED TRAINING COURSE In this training course, you gain the skills to unleash the power and flexibility of Oracle Database 12c, while gaining a solid foundation of database

More information

Ordering Instructions

Ordering Instructions Ordering Instructions MRO18 Facilities Maintenance and Repair & Operations (MRO) and Industrial Supplies Ordering Requirements Any Agency may order Facilities MRO and Industrial Supplies from the vendor

More information