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 ...
随机推荐
- python 中几种基本的矩阵操作应用
在图像处理中,python 的矩阵运算经常会用到一些简单的操作,可是,由于好久没用,很多东西还是忘记了,这里做个备忘: #-*-coding:utf-8-*- import numpy as np a ...
- 通过Microsoft Learn进行学习以提升技能
通过 Microsoft Learn,可以免费而且轻松有趣地学习 Microsoft 技术. Microsoft Learn的与众不同 借助 Microsoft Learn,任何人都能按自己的学习计划 ...
- 小程序this.setData
data: { isChecked: [ { key: true },{ key: true },{ key: true} ]} 如上,如果我想动态修改isChecked里面指定某个下标的值怎么办? ...
- leetcode — set-matrix-zeroes
import java.util.Arrays; /** * Source : https://oj.leetcode.com/problems/set-matrix-zeroes/ * * * Gi ...
- shell编程基础(三): 位置参数与shell脚本的输入输出
一.位置参数和特殊变量 有很多特殊变量是被Shell自动赋值的,我们已经遇到了$?和$1,现在总结一下: 常用的位置参数和特殊变量: $0 相当于C语言main函数的argv[0] $1.$2... ...
- TensorFlow.js入门(一)一维向量的学习
TensorFlow的介绍 TensorFlow是谷歌基于DistBelief进行研发的第二代人工智能学习系统,其命名来源于本身的运行原理.Tensor(张量)意味着N维数组,Flow(流)意味着 ...
- 【转载】访问IIS中网站出现 403.14 - Forbidden报错信息
将网站发布后部署到IIS后,配置完应用程序池以及相关设置项后,在浏览器中访问设置好的网站,出现403.14 - Forbidden的错误信息,从错误信息的提示来看,应该是IIS服务器此网站目录的内容被 ...
- 【转载】Centos系统采用NVM安装Node.js环境
Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行环境,用来方便地搭建快速的易于扩展的网络应用.Node.js 使用了一个事件驱动.非阻塞式 I/O 的模型,使其轻量又 ...
- C# 中 FindControl 方法及使用
FindControl 的使用方法 FindControl (String id): 在页命名容器中搜索带指定标识符的服务器控件.(有点类似javascript中的getElementById(st ...
- Java_Collections工具类
Collections 工具类 * Collection与Collections区别 Collection 接口,(大部分集合类的实现接口) Collections 工具类(针对列表) * Colle ...