Copy Control settings
- Created by Rajesh Banka, last modified by Jyoti Prakash on Nov 18, 2012
Purpose
This wiki page will discuss about Copy Control in Sales and Distribution. And also, its setting & features.
Introduction
Copying Control is critical parameter in SAP Sales and Distribution. which controls data flow from source (preceeding) document to target (subsequent) documents. In other words, it enable a document to be created by referring to an existing document.
Types of Copy Control
- Sales Order to Sales Order
- Sales Order to Delivery Document
- Sales Order to Billing Document
- Delivery Document to Billing Document
- Billing Document to Sales Order
- Billing Document to Billing Document
1. Copying Control for Sales Document to Sales Document
|
TCode |
VTAA |
|---|---|
|
Source: Sales Document Type |
Quotation (QT) |
|
Target: Sales Document Type |
Sales Order (OR) |
Features
|
Header Level |
Item Level |
Schedule Line Level |
|---|---|---|
|
Copy Requirement |
Copy Requirement |
Copy Requirement |
|
Data Transfer Routine |
Data Transfer Routine |
Data Transfer Routine |
|
Copy Item no |
Copy Schedule line |
|
|
Complete Reference |
Update Document flow |
|
|
+ / - Quantity |
||
|
Copy Quantity |
||
|
Price type |
||
|
Re-explode Structure / Free Goods |
2. Copying Control for Sales Document to Delivery Document
|
TCode |
VTLA |
|---|---|
|
Source: Sales Document Type |
Sales Order (OR) |
|
Target: Delivery Document Type |
Delivery (LF) |
Features
|
Header Level |
Item Level |
|---|---|
|
Combination |
Combination requirement |
|
Copy item no |
Update Document Flow |
|
Data Transfer Routine |
+ / - Qty |
|
Item data |
|
|
Business Data |
3. Copying Control for Sales Document to Billing Document
|
TCode |
VTFA |
|---|---|
|
Source: Sales Document Type |
Sales Order (OR) |
|
Target: Billing Document Type |
Order related Billing (F1) |
Features
|
Header Level |
Item Level |
|---|---|
|
Copy Requirement |
Copy Requirement |
|
Determine export data |
Data Transfer Routine |
|
Allocation No |
Billing Qty (which qty - order / delivery) |
|
Reference no |
+ / - Qty |
|
Copy Item No |
Pricing Type (which pricing type) |
|
Price Exchange Rate Type (at what exchange rate) |
|
|
Price Source (source of price - order / delivery) |
4. Copying Control for Delivery Document to Billing Document
|
TCode |
VTFL |
|---|---|
|
Source: Delivery Document Type |
Delivery (LF) |
|
Target: Billing Document Type |
Delivery related Billing (F2) |
Features
|
Header Level |
Item Level |
|---|---|
|
Copy Requirement |
Copy Requirement |
|
Determine export data |
Data Transfer Routine |
|
Allocation No |
Billing Qty |
|
Reference no |
+ / - Qty |
|
Copy Item No |
Pricing Type |
|
Price Exchange Rate Type |
|
|
Cumulative Cost |
|
|
Price Source |
5. Copying Control for Billing Document to Sales Document
|
TCode |
VTAF |
|---|---|
|
Source: Billing Document Type |
Delivery related Billing (F2) |
|
Target: Sales Document Type |
Invoice Correction Request(RK) |
Features
|
Header Level |
Item Level |
Schedule Line Level |
|---|---|---|
|
Copy Requirement |
Copy Requirement |
Copy Requirement |
|
Data Transfer Routine |
Data Transfer Routine |
Data Transfer Routine |
|
Copy Item no |
Copy Schedule line |
|
|
Complete Reference |
Update Document flow |
|
|
+ / - Quantity |
||
|
Copy Quantity |
||
|
Price type |
||
|
2nd pricing type (only for invoice correction request) |
||
|
Campaign Deter. |
6. Copying Control for Billing Document to Billing
|
TCode |
VTFF |
|---|---|
|
Source: Billing Document Type |
Delivery related Invoice (F2) |
|
Target: Billing Document Type |
Cancellation Invoice(S1) |
Features
|
Header Level |
Item Level |
|---|---|
|
Copy Requirement |
Copy Requirement |
|
Determine export data |
Data Transfer Routine |
|
Allocation No |
Billing Qty |
|
Reference no |
+ / - Qty |
|
Price Exchange Rate Type |
|
|
Price Type |
|
|
Price Source |
Copy Control settings的更多相关文章
- [c++] Copy Control
C++ allows the programmer to define how objects are to be copied, moved, assigned and destroyed. Tog ...
- [C++] Copy Control (part 1)
Copy, Assign, and Destroy When we define a class, we specify what happens when objects of the class ...
- C/C++:copy control (拷贝控制)
前言:当定义一个类的时候,我们显示或者隐式地指定在此类型的对象拷贝,移动,赋值,销毁时做些什么,一个类通过定义五种特殊的成员函数来控制这些操作,包括拷贝构造函数,拷贝赋值运算符,移动构造函数,移动赋值 ...
- C++之拷贝控制 (Copy Control)
只有2种成员 值成员: 指针成员: 依实现可分为raw pointer / shared_ptr; 现在,仅考虑第③种:资源对象共享 角度来考虑拷贝控制 类的两种语义:值语义.似指针 编译器提供的de ...
- 【C++ 补习】Copy Control
C++ Primer 5th edition, chapter 13. The Rule of Three If a class needs a destructor, it almost surel ...
- Bug 14143011 : ORA-19606: CANNOT COPY OR RESTORE TO SNAPSHOT CONTROL FILE
Bug 14143011 : ORA-19606: CANNOT COPY OR RESTORE TO SNAPSHOT CONTROL FILE [oracle@test]$ tail -f rma ...
- A Complete ActiveX Web Control Tutorial
A Complete ActiveX Web Control Tutorial From: https://www.codeproject.com/Articles/14533/A-Complete- ...
- 解决Sublime Text 3 Package Control 问题
我使用的环境是 Mac OS X 10.11.5. 安装Packet Control之后,尝试安装插件,出现如下问题: There are no packages available for inst ...
- C++-copy constructor、copy-assignment operator、destructor
本文由@呆代待殆原创,转载请注明出处. 对于一个类来说,我们把copy constructor.copy-assignment operator.move constructor.move-assig ...
随机推荐
- rabbitmq在ios中实战采坑
1. rabbitmq在ios中实战采坑 1.1. 问题 ios使用rabbitmq连接,没过多久就断开,并报错.且用android做相同的步骤并不会报错,错误如下 Received connecti ...
- 机器学习入门07 - 验证 (Validation)
原文链接:https://developers.google.com/machine-learning/crash-course/validation/ 1- 检查直觉 将一个数据集划分为训练集和测试 ...
- C# 结合 using 语句块的三种实用方法
一.简介 阅读 Abp 源码的过程中,自己也学习到了一些之前没有接触过的知识.在这里,我在这儿针对研究学习 Abp 框架中,遇到的一些值得分享的知识写几篇文章.如果有什么疑问或者问题,欢迎大家评论指正 ...
- 一个系统部署多个tomcat实例
一.添加环境到/etc/profile. JAVA_HOME=/usr/java/jdk1.8.0_111 PATH=$JAVA_HOME/bin:$PATH CLASSPATH=.:$JAVA_HO ...
- HP-JavaUtil: xls 操作类
Written In The Font 谢谢,陈明.哈哈!共勉,努力搞定它. 路漫漫其修远兮,吾将上下而求索 Content ExportExcelAndSave( String[] header, ...
- 一致性Hash算法(分布式算法)
一致性哈希算法是分布式系统中常用的算法,为什么要用这个算法? 比如:一个分布式存储系统,要将数据存储到具体的节点(服务器)上, 在服务器数量不发生改变的情况下,如果采用普通的hash再对服务器总数量取 ...
- spring-boot-2.0.3之quartz集成,不是你想的那样哦!
前言 开心一刻 晚上回家,爸妈正在吵架,见我回来就都不说话了,看见我妈坐在那里瞪着我爸,我就问老爸“你干什么了惹我妈生这么大气?” 我爸说“没有什么啊,倒是你,这么大了还没有媳妇,要是你有媳妇给我们 ...
- python元组类型
元组类型简介 使用括号包围的数据结构是元组(tuple).例如: >>> (1,2,3) (1, 2, 3) >>> T = (1,2,3,) >>&g ...
- Linux文件权限与属性详解 之 ACL
Linux文件权限与属性详解 之 一般权限 Linux文件权限与属性详解 之 ACL Linux文件权限与属性详解 之 SUID.SGID & SBIT Linux文件权限与属性详解 之 ch ...
- spark高可用集群搭建及运行测试
文中的所有操作都是在之前的文章spark集群的搭建基础上建立的,重复操作已经简写: 之前的配置中使用了master01.slave01.slave02.slave03: 本篇文章还要添加master0 ...