应付分配集 Distribution Sets
(N) AP > Setup > Invoice > Distribution Sets (定义分配集)
You can use a Distribution Set to automatically enter distributions for an invoice when you are
not matching it to a purchase order. For example, you can create for an advertising supplier a
Distribution Set that allocates advertising expense on an invoice to four advertising departments.
You can assign a default Distribution Set to a supplier site so Payables will use it for every invoice
you enter for that supplier site. If you do not assign a default Distribution Set to a supplier site,
you can always assign a Distribution Set to an invoice when you enter it.
Use Full Distribution Sets to create distributions with set percentage amounts, or use Skeleton
Distribution Sets to create distributions with no set distribution amounts. For example, a Full
Distribution Set for a rent invoice assigns 70% of the invoice amount to the Sales facility expense
account and 30% to the Administration facility expense account. A Skeleton Distribution Set for
the same invoice would create one distribution for the Sales facility expense account and one
distribution for the Administration facility expense account, leaving the amounts zero. You could
then enter amounts during invoice entry depending on variables such as that month's headcount
for each group.
If you enable and use a descriptive flexfield with your distribution set lines, the data in the
flexfield will be copied to the invoice distributions created by the Distribution Set.
Creating Distribution Sets
To create a Full Distribution Set:
1. In the Distribution Sets window, enter the Name and Description of the Distribution Set
you are creating. Enter an Inactive On date to specify when this distribution set is no
longer available.
2. Enter the Account and Description for each distribution and enter the Percentage of the
invoice amount that you want to distribute to the Account. You can enter positive and
negative percentages. Create as many distributions as you need. The sum of the
distribution percentages must equal 100.
If you are creating a Distribution Set for a federally reportable supplier, optionally enter an
Income Tax Type.
3. Save your work. Payables automatically assigns type Full to your Distribution Set.
To create a Skeleton Distribution Set:
1. In the Distribution Sets window enter the Name and Description of the Distribution Set
you are creating. Enter an Inactive On date to specify when this distribution set is no
longer available.
Suggestion: If you create a skeleton Distribution Set, include skeleton in the name to remind you
to enter the line amounts.
2. Enter the Account and Description for each distribution and leave the Percentage at zero.
Create as many distributions as you need.
If you are creating a Distribution Set for a federally reportable supplier, optionally enter an
Income Tax Type.
3. Save your work. Payables automatically assigns type Skeleton to your Distribution Set.
Creating a Project Related Distribution Set
If you have Oracle Projects installed, you can associate a distribution with a project by entering
project information on invoice distributions. The system uses the project information to build the
distribution accounts. If you use a project related distribution set, Payables automatically enters
the project information on the distribution for you. You can override the project fields on the
distribution. The Account Generator will then create accounts based on the new information.
Prerequisite
• Oracle Project Costing is installed.
To create a project related Distribution Set:
1. Enter either a Skeleton or Full Distribution Set in the Distribution Sets window.
2. If a distribution is project related, check Project Related.
Enter the Project, Task, Expenditure Type, and Organization.
If you use Oracle Grants Accounting, you can enter a value for Award Number, to record the
award associated with the project.
3. Save your work
应付分配集 Distribution Sets的更多相关文章
- 并查集 (Union-Find Sets)及其应用
定义 并查集是一种树型的数据结构,用于处理一些不相交集合(Disjoint Sets)的合并及查询问题.常常在使用中以森林来表示. 集就是让每个元素构成一个单元素的集合,也就是按一定顺序将属于同一组的 ...
- 数据结构之并查集Union-Find Sets
1. 概述 并查集(Disjoint set或者Union-find set)是一种树型的数据结构,常用于处理一些不相交集合(Disjoint Sets)的合并及查询问题. 2. 基本操作 并查集 ...
- 并查集(union-find sets)
一.并查集及其优化 - 并查集:由若干不相交集合组成,是一种简单但是很好用的数据结构,拥有优越的时空复杂性,一般用于处理一些不相交集合的查询和合并问题. - 三种操作: 1.Make_Set(x) 初 ...
- TSQL 分组集(Grouping Sets)
分组集(Grouping Sets)是多个分组的并集,用于在一个查询中,按照不同的分组列对集合进行聚合运算,等价于对单个分组使用“union all”,计算多个结果集的并集.使用分组集的聚合查询,返回 ...
- Redis源码阅读(四)集群-请求分配
Redis源码阅读(四)集群-请求分配 集群搭建好之后,用户发送的命令请求可以被分配到不同的节点去处理.那Redis对命令请求分配的依据是什么?如果节点数量有变动,命令又是如何重新分配的,重分配的过程 ...
- 应付系统选项 Payables Options
(N) AP > Setup > Options > Payables Options应付系统选项设置整个应付系统使用的控制项和默认值.我们可以在此窗口中设置默认值,从而简化供应商输 ...
- EBS业务学习之应付INVOICE类型
INVOICE类型 类 型 描 述 标准INVOICE 是指由于采购货物或接受劳务,从供应商处取得的INVOICE (标准INVOICE,既可以和订单匹配,也可以不匹配) ...
- Elasticsearch 教程--分布式集群
集群 补充章节 正如前文提到的,这就是第个补充的章节,这里会介绍 Elasticsearch 如何在分布式环境中运行. 本章解释了常用术语,比如 集群 (cluster), 节点 (node) 以及 ...
- ElasticSearch之二——集群
ElasticSearch 集群 首先看下ElasticSearch(ES)的架构: 术语解释: cluster:代表一个集群,集群中有多个节点,其中有一个master节点,master通过选举自动产 ...
随机推荐
- VS2010 VS2012 如何连接Oracle 11g数据库
oracle是开发者常用的数据库,在做.NET开发是,由于Vs自带的驱动只能连接oracle 10g及以下版本,那么如何连接oracle 11g呢? 工具/原料 事先安装VS2010或者VS201 ...
- 杂技之sharpdevelop调试aps.net
背景: 本人笔记本电脑不给力,vs打开实在太慢,因此考虑使用sharpdevelop,但sharpdevelop有点麻烦事,就是不支持asp.net的调试,为解决此问题,本人在此杂技一把了 方案一: ...
- [译]CSS content
原文地址:http://css-tricks.com/css-content/ CSS中有一个属性content,只能和伪元素:before和:after一起使用,他们的写法像伪类选择器(前面有冒号) ...
- JavaScript中关于创建对象的笔记
1,最基本的两种创建对象的方式:构造函数|| 字面量 构造函数: var person = new Object(); person.name = "chen1zee1"; per ...
- Java实战之02Hibernate-03Session中的常用方法
九.Session中的常用方法 1.save方法 都是临时态————>持久态 2.persist方法 作用: 持久化临时态对象. 与save方法的区别: 开始了事务:persist和save没有 ...
- [Guava官方文档翻译] 6. 用Guava辅助Throwable异常处理 (Throwables Explained)
我的技术博客经常被流氓网站恶意爬取转载.请移步原文:http://www.cnblogs.com/hamhog/p/3537508.html ,享受整齐的排版.有效的链接.正确的代码缩进.更好的阅读体 ...
- CentOS7 安装LAMP环境
1.使用yum安装 yum -y install httpd mysql mysql-server php php-mysql postgresql postgresql-server php-pos ...
- fuser 命令概述
fuser 概述 fuser命令是用来显示所有正在使用着指定的file, file system 或者 sockets的进程信息. 例一: #fuser –m –u /mnt/usb1 /mnt/us ...
- svn 相关
// svn相关内容,windows下的可以根据网上的,安装客户端和服务器端安装成功后,可以在服务器端中的 Repositories中建立相关的项目库文件夹,右键相应的文件夹可以复制相关的 url,一 ...
- 解决MySQL查询不区分大小写
需要设置collate(校对) . collate规则: *_bin: 表示的是binary case sensitive collation,也就是说是区分大小写的 *_cs: case sensi ...