Skip to end of metadata

 

Go to start of metadata

 

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

  1. Sales Order to Sales Order
  2. Sales Order to Delivery Document
  3. Sales Order to Billing Document
  4. Delivery Document to Billing Document
  5. Billing Document to Sales Order
  6. 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的更多相关文章

  1. [c++] Copy Control

    C++ allows the programmer to define how objects are to be copied, moved, assigned and destroyed. Tog ...

  2. [C++] Copy Control (part 1)

    Copy, Assign, and Destroy When we define a class, we specify what happens when objects of the class ...

  3. C/C++:copy control (拷贝控制)

    前言:当定义一个类的时候,我们显示或者隐式地指定在此类型的对象拷贝,移动,赋值,销毁时做些什么,一个类通过定义五种特殊的成员函数来控制这些操作,包括拷贝构造函数,拷贝赋值运算符,移动构造函数,移动赋值 ...

  4. C++之拷贝控制 (Copy Control)

    只有2种成员 值成员: 指针成员: 依实现可分为raw pointer / shared_ptr; 现在,仅考虑第③种:资源对象共享 角度来考虑拷贝控制 类的两种语义:值语义.似指针 编译器提供的de ...

  5. 【C++ 补习】Copy Control

    C++ Primer 5th edition, chapter 13. The Rule of Three If a class needs a destructor, it almost surel ...

  6. 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 ...

  7. A Complete ActiveX Web Control Tutorial

    A Complete ActiveX Web Control Tutorial From: https://www.codeproject.com/Articles/14533/A-Complete- ...

  8. 解决Sublime Text 3 Package Control 问题

    我使用的环境是 Mac OS X 10.11.5. 安装Packet Control之后,尝试安装插件,出现如下问题: There are no packages available for inst ...

  9. C++-copy constructor、copy-assignment operator、destructor

    本文由@呆代待殆原创,转载请注明出处. 对于一个类来说,我们把copy constructor.copy-assignment operator.move constructor.move-assig ...

随机推荐

  1. 和我一起熟悉caffe2

    caffe2 是一个深度学习架构,它提供了一种简易快速的方法为让你能否迅速接触深度学习并能为社区贡献新的算法和模型.你可以把作品部署到有很强计算能力的GPU上,也可以把作品部署到有caffe2交叉编译 ...

  2. rgba()和opacity之间的区别(面试题)

    rgba()和opacity之间的区别: 相同点:rgba()和opacity都能实现透明效果: 不同点:opacity作用于元素,以及元素中所有的内容: rgba()只用于于元素的颜色,及背景色: ...

  3. jquery获取radio选中值及遍历

    使用jquery获取radio的值,最重要的是掌握jquery选择器的使用,在一个表单中我们通常是要获取被选中的那个radio项的值,所以要加checked来筛选,比如有以下的一些radio项:1.& ...

  4. 在 .NET Core 下的 Swagger UI 自定义操作

    1.Swagger UI 是什么? Swagger UI 是一个在线的 API 文档生成与测试工具,你可以将其集成在你的 API 项目当中. 支持 API 自动同步生成文档 高度自定义,可以自己扩展功 ...

  5. Flume的各种类型的组件介绍

    1.   Source NetCat Source:绑定的端口(tcp.udp),将流经端口的每一个文本行数据作为Event输入: type:source的类型,必须是netcat. bind:要监听 ...

  6. Java核心技术及面试指南面试题,基本数据类型、封装类和运算操作的面试题

    2.1.5.1说说&和&&的区别,以及|与||的区别. &和|是位运算符,不怎么用,而&&和||是逻辑运算符,一般用在if,while,for等条件判断 ...

  7. 部署 YApi 接口管理服务

    安装 Node curl -sL https://rpm.nodesource.com/setup_8.x | bash - yum install -y nodejs 安装 MongoDB vi / ...

  8. Python快速学习03:运算 & 缩进和选择

    前言 系列文章:[传送门] 这篇昨晚本来要出的,去搭了帐篷,在学校的屋顶上. 运算 运算,不得不说的是运算符. 数学 +, -, *, /, **, %,// 判断 ==, !=, >, > ...

  9. 简易远程消息交换协议SRMP

    一.SRMP目标定位 经过十多年实战经验积累以及多方共同讨论,新生命团队(https://github.com/newlifex)制订了一种简单而又具有较好扩展性的RPC(Remote Procedu ...

  10. 分布式系统监视zabbix讲解九之使用snmp监控windows--技术流ken

    前言 使用zabbix监控windows主要有两种方法,一种是在windows端安装zabbix-agent客户端工具,安装麻烦.另外一种是使用snmp协议,配置简单快捷.两种配置都可以实现同样的效果 ...