FUNCTIONALITY OF ITEM CATEGORY
Item Category
Purpose
This wiki page will breify discuss about functionality of Item Category in SAP Sales and Distribution transaction.
Introduction
Item category is critical and esstential part of sales order and sales process. It generally controls the behaviour of item in a sales order, like, pricing, TOR, etc.
Functionalities of Item Category
|
Whether the item is standard or text or value item. |
|---|---|
|
The rule for establishing when a quotation or |
|
Whether business data in the item can be |
|
|
|
Items that are relevant for del will |
|
= 1 |
|
We need to check this field in item |
|
You use a delivery group to determine |
|
Indicates whether, during pricing, the system |
|
|
|
|
|
In the case of text items, however, pricing would |
Types of Item Category
The following table will discuss about different type of standard item category available:
|
Item Category |
Description |
Features |
|---|---|---|
|
BVN |
Cash Sale |
|
|
TAB |
Individual order purchase |
|
|
G2N |
Credit memo |
|
|
TAK |
Make to order |
|
|
KBN |
Consignment fill up |
|
|
KRN |
Consignment return |
|
|
TAQ |
Extent delivery- BOM |
|
|
TAS |
Third party |
|
|
REN |
Returns |
|
|
L2N |
Debit memo |
|
|
TAC |
Configurable material |
|
|
KEN |
Consignment issue |
|
|
KAN |
Consignment Pickup |
|
|
TAP |
Extent delivery higher lever item in BOM |
|
|
TAE |
Explanation - BOM |
|
|
TAW |
Value Item |
|
|
AGN |
Standard item in QT |
|
|
TAN |
Standard item in Order |
|
|
TANN |
Free of Charge Item in order |
|
|
TATX |
Text item in Order |
|
Item Category Determination
Depending on the item category group that you apply & the sales doc type you are processing the system automatically proposes an item category in the document.
|
SPRO Path |
IMG - Sales and Distribution - Sales - Sales Document - Sales Document Item - Assign Item Category |
|---|---|
|
Transaction Code |
VOV4 |
Determination Rule
|
Item Category |
= Sales Document Type |
+ Item Category Group |
+ Usage |
+ Higher Level Item Category |
|---|
Example
|
Sales Document Type |
Item Category Group |
Usage |
Higher Level Item Category |
Default Item Category |
|---|---|---|---|---|
|
OR |
NORM |
TAN |
TANN |
|
|
OR |
NORM |
TAN |
||
|
OR |
NORM |
FREE |
TAN |
TANN |
FUNCTIONALITY OF ITEM CATEGORY的更多相关文章
- One Order行项目里Item Category是怎么计算出来的
One Order的行项目里有个字段叫Item Category,我们在行项目里加入一个product后,就会自动带出Item Category来.这个值是怎么计算出来的? 检查CRMD_ORDERA ...
- Understanding Item Import and Debugging Problems with Item Import (Doc ID 268968.1)
In this Document Purpose Details Scenario 1: Testing the basic item import with minimum columns po ...
- Scrapy框架的学习(6.item介绍以及items的使用(提前定义好字段名))转载https://blog.csdn.net/wei18791957243/article/details/86259688
在Scrapy框架中的items.py的作用 1.可以预先定义好要爬取的字段 items.py import scrapy class TencentItem(scrapy.I ...
- Oracle Purchasing QUESTIONS AND ANSWERS
Topic Summary Topic: CORRECTIONS: Corrections Topic: DELIVER: Receiving Delivery Topic: DROPSHIP: Dr ...
- EBS 信用检查(二)
Credit checking feature of Oracle OM provides the ability to check that the customer has sufficient ...
- EBS 信用检查(一)
信用逻辑 This post will more focus on Technical part of credit check Functionality. You can check the fu ...
- PlainElastic.Net
PlainElastic.Net PlainElastic.Net The really plain Elastic Search .Net client. Idea Installation How ...
- ASP.NET MVC5+EF6+EasyUI 后台管理系统(63)-Excel导入和导出
系列目录 昨天文章太过仓促没有补充导出的示例源码,在者当时弄到到很晚没时间做出导出功能,对阅读理解造成影响,现补充一份示例源码,顺便补充导出的功能说明,望理解 示例代码下载 https://yun ...
- 第1章 (ASP.NET MVC简介)
一.MVC概念 MVC由三部分组成:视图(View).模型(Model).控制器(Controller)组成 二.运用VS创建MVC 1.新建一个"解决方案" 2.在"解 ...
随机推荐
- hbase概念解析
hbase是一种nosql数据库.是一个高可靠,高性能,面向列,可伸缩,实时读取的分布式数据库. hbase一般由行键,时间戳,列族,列,表格单元,行组成. 行一般由一个行键和一个或多个具有关联关系值 ...
- PHP的会话控制
页面数据的作用域: 当前页共享数据:变量.常量 两个页面间传递数据:get,post 跟踪用户的多页面数据共享(会话):session.cookie 全局数据共享:文件.数据库.memcached C ...
- js动态创建表单数据
var formData = new FormData(); formData.append("file",fileList[i]); formData.append(" ...
- Win3内存管理之私有内存跟共享内存的申请与释放
Win3内存管理之私有内存跟共享内存的申请与释放 一丶内存简介私有内存申请 通过上一篇文章.我们理解了虚拟内存与物理内存的区别. 那么我们有API事专门申请虚拟内存与物理内存的. 有私有内存跟共享内存 ...
- Webpack编译结果浅析
如今Webpack已经是一个不可或缺的前端构建工具,借助这个构建工具,我们可以使用比较新的技术(浏览器不能直接支持)来开发. 你是否好奇你写的代码经过Webpack构建之后会生成什么东西?是否有时调试 ...
- Hive基础之Hive数据类型
Hive数据类型 参考:中文博客:http://www.cnblogs.com/ggjucheng/archive/2013/01/03/2843448.html 英文:https: ...
- Perl面向对象(1):从代码复用开始
官方手册:http://perldoc.perl.org/perlobj.html 本系列: Perl面向对象(1):从代码复用开始 Perl面向对象(2):对象 Perl面向对象(3):解构--对象 ...
- Go基础系列:Go接口
接口用法简介 接口(interface)是一种类型,用来定义行为(方法). type Namer interface { my_method1() my_method2(para) my_method ...
- JavaScript 系列博客(七)
JavaScript 系列博客(七) 前言 本篇博客介绍页面节点概念.文档结构以及如何使用 js 操作文档节点还有事件 target 以及 BOM 操作. 节点 dom与dom属性 // DOM: 文 ...
- synchronized和ReentrantLock的区别
synchronized和ReentrantLock的区别 synchronized是和if.else.for.while一样的关键字,ReentrantLock是类,这是二者的本质区别. 代写 既然 ...