博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SAP SD定价技术分析
阅读量:2032 次
发布时间:2019-04-28

本文共 2749 字,大约阅读时间需要 9 分钟。

定价技术一直是SAP引以为豪的一个设计。设计也很复杂。

基础的IMG设定有(定价表/访问顺序/定价类型/定价过程)等;
的定价逻辑如下:

1) 定价程序

FunctionPool: SAPLV61A
Function Name: Pricing

2) 变量说明

XKOMV 记录系统定价结果(Item Level)
TKOMV 记录系统定价结果(Doc. Level)
KOMT1 定价过程
KOMT2 访问顺序
KOMK 定价关键字(表头)
KOMP 定价关键字(行)

3) 程序处理逻辑

A) 整理 KOMK / KOMP 的值 (SAP提供接口做增强,SO/DN/BILLING)
SO:
Program: MV45AFZZ
User Exit: userexit_pricing_prepare_tkomk / userexit_pricing_prepare_tkomp
DN:
BADI: LE_SHP_PRICING
Method: CHANGE_INPUT_HEADER_AND_ITEMS
BILLING:
Program: RV60AFZZ
User Exit: USEREXIT_PRICING_PREPARE_TKOMK / USEREXIT_PRICING_PREPARE_TKOMP

B) 抓取定价IMG的相关设定

Program: LV61AA12
FORM: KONDITIONSVORSTEP
* --> KOMK header communication structure *
* <-- KOMT1 table of pricing procedure *
* <-- KOMT2 table of condition access sequences *

C) 根据定价设定,整理定价过程结果内表

Program: LV61AA67
FORM: XKOMV_AUFBAUEN_AUS_KOMT1

* Build XKOMV from KOMT1 derived from T683S *

* --> KOMK header communication structure *

* --> KOMP item communication structure *
* --> KOMT1 pricing procedure *
* --> KOMT2 accesses *
* <-- XKOMV internal table of conditions *

定价过程中的"需求"将在这里被处理. 如果检查通过的话,改定价类型将会被记录在XKOMV里面.
价格主档的数据也会在这里被处理,

D) 根据TKOMV整理XKOMV定价过程结果内表

Program: LV61AA58
FORM: XKOMV_AUFBAUEN_AUS_TKOMV

* Build XKOMV from TKOMV *

* --> KOMT1 pricing procedure *

* --> TKOMV complete table of conditions *
* <-- XKOMV internal table of conditions *

E) 定价过程内表的计算(处理Formula,subtotal,base value ...)
Program: LV61AA55
FORM: XKOMV_BEWERTEN

* Calculate on internal table of conditions *

* --> PREISFINDUNGSART pricing type *

* --> KOMK header communication structure *
* <-> KOMP item communication structure *
* <-> XKOMV internal table of conditions *
* <-> GKOMV table of group conditions pricing type F only *
* --> GKOMZ table of group cond indeces pricing type F only *

小计/计算类型/基础类型 在这里被处理. 可参考 NOTES: 900089,有详细描述处理逻辑.

F) 根据表T684的记录,执行定价排斥

Program: LV61AA56
FORM: XKOMV_AUSSCHLUSS
可参考 NOTES: 836243

G) 将XKOMV的结果整理到TKOMV

Program: LV61AA42
FORM: XKOMV_UEBERTRAGEN_NACH_TKOMV

* Transfer XKOMV to TKOMV *

* --> XKOMV table document conditions *

* <-- TKOMV table all document conditions *

4) 有关定价的一些NOTES.
1165078 Authorization check for conditions or subtotals
1007110 How is the KWERT determined in a subtotal?
836243 How condition exclusion works in R/3
791944 How is the KBETR determined in a subtotal?
485740 Conditions with fixed amount in copy activities
201830 Calculation of the net price of an item
154529 Pricing in the delivery
130417 Pricing preparation in billing document (user exit)
92090 Exclusion indicator KZNEP
67958 Mode of operation of the condition exclusion
41490 Condition exclusion (KZNEP)
24832 Pricing rules / TVCPF
18173 Minimum order value
900089 Pricing: Processing steps FORM XKOMV_BEWERTEN
363212 'Pricing analysis' mode of operation

转载地址:http://jsaaf.baihongyu.com/

你可能感兴趣的文章
Zookeeper实现哨兵机制
查看>>
大数据学习笔记之初识Hadoop
查看>>
Docker(三):Docker入门教程-CentOS Docker 安装
查看>>
Spring Cloud(1)相关概念
查看>>
JConsole和VisualVM远程访问JMX
查看>>
Spring Cloud(2)主要组件应用实例
查看>>
Linux kswapd0 进程CPU占用过高
查看>>
JSON Web Token
查看>>
CentOS搭建NodeJs服务器—Mongodb安装
查看>>
CentOS7 yum 安装git
查看>>
Docker(五):Dockerfile
查看>>
Docker(四):Docker常用命令
查看>>
Nginx静态文件服务器配置方法
查看>>
Spring Boot Starters 究竟是怎么回事
查看>>
MySQL——复制(Replication)
查看>>
tomcat中server.xml配置详解
查看>>
Lock的await/singal 和 Object的wait/notify 的区别
查看>>
JVM调优总结(三)——分代垃圾回收详述
查看>>
Java并发编程:volatile关键字解析
查看>>
Java生产者消费者模型
查看>>