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 ...
随机推荐
- 如何实现一个基于 jupyter 的 microservices
零.背景: 现有基于 Node.js 的项目,但需要整合 Data Science 同事的基于 python(jupyter) 的代码部分,以实现额外的数据分析功能.于是设想实现一个 microser ...
- python zeros用法实例
编程就是踩坑的过程.今天又踩了一个坑,做个积累吧. 在给数组赋初始值的时候,经常会用到0数组,而Python中,我们使用zero()函数来实现.在默认的情况下,zeros创建的数组元素类型是浮点型的, ...
- selenium之 玩转鼠标键盘操作(ActionChains)
用selenium做自动化,有时候会遇到需要模拟鼠标操作才能进行的情况,比如单击.双击.点击鼠标右键.拖拽等等.而selenium给我们提供了一个类来处理这类事件——ActionChains sele ...
- 【原创】C++之自定义高效的swap(1)
1 问题背景 当交换两个包含了指针成员的类,我们最想看到的是直接交换其指针.但是当我们调用std::swap标准库这个模板函数时,通常它都会复制3个指针指向的对象作为交换所用,缺乏效率.如下: ...
- PHP接口的思考
其中就有一个SPL(标准PHP库)的尝试,SPL中实现一些接口,其中最主要的就是Iterator迭代器接口,通过实现这个接口,就能使对象能够用于foreach结构,从而在使用形式上比较统一.比如SPL ...
- #1 Python灵活技巧
前言 Python基础系列博文已顺利结束,从这一篇开始将进入探索更加高级的Python用法,Python进阶系列文章将包含面向对象.网络编程.GUI编程.线程和进程.连接数据库等.不过在进阶之前,先来 ...
- Jenkins入门之执行定时任务
通过前面我们讲解了如何通过Jenkins执行windows command,powershell脚本,此时我们便可以开始完成一些简单任务了,然而可能看到我们都是通过手动按下Build Now按钮来执行 ...
- Pandas数据去重和对重复数据分类、求和,得到未重复和重复(求和后)的数据
人的理想志向往往和他的能力成正比. —— 约翰逊 其实整个需求呢,就是题目.2018-08-16 需求的结构图: 涉及的包有:pandas.numpy 1.导入包: import pandas as ...
- Shuffle过程
Shuffle过程 在MapReduce框架中,shuffle是连接Map和Reduce之间的桥梁,Map的输出要用到Reduce中必须经过shuffle这个环节,shuffle的性能高低直接影响了整 ...
- 另类爬虫:从PDF文件中爬取表格数据
简介 本文将展示一个稍微不一样点的爬虫. 以往我们的爬虫都是从网络上爬取数据,因为网页一般用HTML,CSS,JavaScript代码写成,因此,有大量成熟的技术来爬取网页中的各种数据.这次, ...