Explain System and User Status in Production Order
Explain System and User Status in Production Order
This LSMW shows how to mass load material master characteristics. The LSMW used is exactly
the same as what was used to load release procedure values. Input file is obviously different.
Material Master classification can be used to store additional information against a material
master. Example: if it is finished products you may want to store: brand, pack, etc. If it is
maintenance materials, you may want to store: size of item, grouping, etc.
Before loading the values (per material), you first need to create the fields (characteristics) and
group them together in a class. This is done with following transaction codes:
No screen shots about CL02 and CT04 – you should be be able to get that right.
If the material numbers is numeric (example '123') then add leading zero's (as in my sample
input file). This is not required for alpha material numbers (example if material number is
'A123C').
The last line can be deleted – it was added to show a deliberate error when all the data was
loaded.
So in this case
It is a lot easier and quicker to load material masters using the Standard Direct Input object in
LSMW rather than with a recording of transaction mm01 or mm02. (To learn more about loading
data using recording, see this post)
One input file can be used to create all the views of the material master. For all the material
types. Even if different views and fields are used for the different materials.
Steps to take
All steps are discussed in this post. A sample data file and LSMW Project can also be found in
attachment (end of post).
Please take note that my project and input file will need slight modification to work fully on your
SAP system. You will have different material types, number ranges, field selections, etc. To get
going, use my LSMW Project and data file and make changes as required to get a simple dataset
loaded.
The most difficult bit in loading materials is getting the input file correct. I suggest you create the
file from a database (SQL) or programmatically. Excel does work but it sometimes convert
numbers / strings (example 0100 becomes 100). More notes about this at the end of this post.
Let’s first go through LSMW steps – then look at the input file.
LSMW
You can either create the LSMW project manually or load my project, see attachment at end of
post.
Import Project
Define here all the fields that will be in your input file (text file with data). As a rule, keep the
field names the same as in SAP. This way mapping can be done automatically.
The order of the fields is not important. For simplicity, make field size bigger than required, in this
case mostly 40.
Here you map the one input file to structures that was selected in step one (direct input objects).
To get an idea what material master field can be loaded – click on the structure. Example for
BMMH1
You will see BMM00 is to select the Views and BMMH1 contains bulk of the material fields.
The fields can also be viewed via ABAP Dictionary (se11 /se12) and display the database table
BGR00, BMM00, BMMH1, BMMH2 (or other).
Map field in input file to fields in SAP Material master. If your fieldnames in file is same as in SAP,
then you can map them automatically by selecting Menu: Extras > Auto-Field Mapping
Not all fields need to be mapped, only those that you are loading (as defined in input file). Don’t
worry to much about the warning that “Source field is longer than target file” just make sure your
input data is correct. Example material type must be 4 characters.
Specify source file (on your PC) and what the files will be called on the SAP server.
Also indicate how your input file will look. Example, TAB delimited and Field names in first row.
Step 8: Assign Files
At this point your input file must be ready. More about the input file later. You may want to use
sample file attached to this post as a start.
Note you don’t need to specify path / filename. This was done is step above.
For big files – many thousand of records this might take a while.
The input file is now on the SAP server and can be displayed.
Click on line to see the details
Step 11: Convert Data
We now need to convert the data to format so that SAP can process.
Step 12: Display Converted Data
You can display converted data to ensure that all is ok so far before creating the materials.
First run it in test mode (not creating material) by selecting the “Check data, do not update”
option
You might get a view messages – just press OK. In my case I got NO errors.
I now run it without the test option. same as above but “untick” the “Check data, do not update”
option
Materials were successfully created.
At this point you may still have errors. Either your input data is incorrect, you may have fields as
mandatory that was not in your input fields, different material types, etc. etc.
INPUT FILE
In step 7 above we have indicated that we are using TAB delimited files.
TIP: if you will be working with LSMW files a lot, get a decent text editor. Some suggestions are:
UltraEdit or Crimson Editor (if you want a good free one).
This is how my input file looks (via Crimson Editor). The funny “>>” fields are TAB’s. My editor is
set up to show TAB characters.
Or in Excel (importing the tab delimited file)
Note that the material number field (MATNR) is blank for first line and 0 (zero) for subsequent
lines. This is the way to specify that internal numbering will be used. And 0 (zero) indicates that
material being created will be extended. Fields to be ignored are marked with "/". For more about
format of file, see notes in SAP Help file.
In my file, every line is unique material / plant / sloc. The input file can be prepared using
database, spreadsheet or other program. In my case I generated the tab delimited file directly
from database program.
I find the easiest way is to prepare the material master data is using a SQL database. I used
MySQL. That way a sql script can be created that implement all the conversion rules.
This sample file used in this post was created directly from the database program. Below is the
SQL statement (used in MySQL) that created the final data file. The header (field names) was
added in another step.
Code:
SELECT
If above code is meaningless to you. Don't stress, you don't need to use any of this in LSMW.
(But I do suggest you buddy up with someone who knows SQL ).
Very detail help is available in SAP Help Files. For SAP Help files, goto http://help.sap.com/
Cross Application Components > CA Data Transfer > Data Transfer Objects > LO logistics General
> Material Master
This post was prepared using SAP R/3 Enterprise (and LSMW version 4.0.0)
With this sample and reading the SAP Help files, I hope you are in a position to load your own
materials.
Was this helpful to you? Do you require more information?
Legacy System Migration Workbench or LSMW is SAP standard program that can be used to easily
load / change master data or transactions in SAP without any programming at all. It canbe used
to upload data at cutover, such as: open orders, contracts, materials, vendors, stock on hand,
....... It can also be used in a production system to make changes to existing data. Very limited
authorisation checks are available on the transaction, so the use of it must be very well
controlled.
The functionality is very well documented in the SAP help files. Below is a simple example where
vendor masters are loaded using recording in LSMW.
(For an example on how to load materials using Direct Input method in LSMW, see this post)
Various methods can be used to load the file (BAPI, ALE, recording ….). We will be using a
recorded transaction. To record the transaction, we give the recording a name and type in the
transaction code that will be used.
Step through the screens as you would have done it manually.
A screen will be shown with all the fields that was recorded. Every field needs a name. To keep it
simple, allocate the default SAP name to the fields. Make sure all the fields you want to
load/change are in the list. If not, re-record the transaction and ensure you do a dropdown or
type in values in the correct field.
Here is a list of all the process steps that available. In our example, not all will be used. Those to
be used in example are mark with a red dot. So, we will be using Process Step 1, 3, 4, 5, 7, 8, 9,
11, 12, 13.
The next screens are the process steps as in screen above.
NB: Every time you select a process step, you will be in display mode -- first thing to do for every
step is to switch to change mode by clicking the "Display<->Change" button.
Back in LSMW, the fields in external file is defined, so make them the same as in txt file.
Process Step 4 - Maintain Structure Relationship
Link between recorded fields and external fields.
Process Step 5 - Maintain Field Mapping and Conversion Rules
In this step the rule on where the value of the recorded fields will come from is spesified.
Example: values can come from an external file or a constant can be defined (for fields that will
not change).
Vendor account group will not be read from external file. Lets make the field a constant value of
LIEF..
Process Step 7 - Specify Files
Before loading the file from PC, one specifies the structure. In this case comma delimited were
used (although, tab delimited are more common). Also that the first row contains the header.
Process Step 9 - Read Data
Load the file into SAP from your PC.
To confirm that the data was loaded correctly, verify that vendors were loaded correctly.
SAP version used for this post: SAP ECC (ERP Central Component) 5.0
LSMW version used: version 4.0.0 of the LSM Workbench from 31.08.2004 (Menu: Extras >
Display Display version)
SAP version used in this post: SAP ERP Central Component (ECC) 5.0
Hint: Use transaction search_sap_menu to find menu path (if in menu) of any SAP transaction.
Introduction
SAP transactions can be executed either from the SAP Menu or by using a transaction code. This
post explain how to find the menu path if you have the transaction code.
Example
You use the transaction LT03 (Create Transfer Order) but don't know where to find it in the SAP
Menu. Execute transaction: search_sap_menu
Enter
The result is the menu paths of all the places where the transaction can be found.
In this case, the same transaction can be found at a few places in the SAP Menu. Read entries
from the bottom up. Example, the menu path of first entry is: Logistics > Sales & Distribution >
Shipping and Transportation > Picking > Create Transfer Order > Single
Change SAP documents -- tables CDHDR and CDPOS
This notes relates to SAP ECC (ERP Central Component) 5.0
Changes to a lot of SAP documents are stored in table CDHDR and table CDPOS. This include changes such
as: change data in Material Master, changes to Purchase Req (PR), Purch Orders, Contracts, Sales Orders,
and many more.
The change information can be see in Purchase Order. Menu: Environment > Item Changes
This changed information are stored in table CDHDR and table CDPOS. Lets see if we can find it by displaying
the table using transaction se16 (display table):
The detail of what was changed is in table CDPOS. The link is via the document number, field CHANGENR.
Lets look at table CDPOS
These tables contains not just PO changes but changes to most SAP documents (accross all functional areas).
So, as you can imagine these tables get huge. Entries in tables are grouped by Object Class (field
OBJECTCLAS -- Change doc object). Some of these options include:
• ADRESSE - xk01
• ADRESSE3 - su01
• BANF - me54n
• BELEG - vf21
• BETRIEB - vd02
• COND_A - me31k
• DEBI - xd02
• EINKBELEG - me22n <<< example above
• ENTRYSHEET - ml85
• FEATURE - ct04
• INCOMINGINVOICE - mrbr
• INFOSATZ - me13
• KLASSE - cl02
• KRED - xk02
• LIEFERUNG - vl03n
• MATERIAL - mm01
• MM_SERVICE - me22n
• MRP_AREA - mm01
• NRINTERVAL - omh6
• PFCG - pfcg
• REVISION - me32k
• SACH - fs00
• SPEC_TMP - ml10
• STLV - ml02
• VASMD - ac03
• VERKBELEG - va02
• .... etc
Mass maintenance is used to make make mass changes to master data such as materials,
vendors, purchase orders, purchase requisitions, etc.
For example: for all materials of type RAW1, make the material group 1012. Lets step through
this example to show you how easy it is to use.
SAP Menu: Logistics > Central Functions > Mass Maintenance > Mass Maintenance > Dialog
Processing
Transaction MASS
Select the tables for the selection screen. In our case, material type = MARA.
The materials selected will be listed.
Now indicate which field must be change. In our example the material group field.
Enter what the new value (Material Group) must be.
Select the column and copy to all the materials listed below. If you don't want to change all
objects -- unselect them at this point
Hit Save -- this will start the action to change the object (material)
Q: Why use Enterprise Buyer and not just purchasing in SAP MM?
A: Main reason for using Enterprise Buyer is the ability for users to easily select products and
services from a catalogue.
Purchase Requisition, Purchase Order and Goods Receipt (in SAP MM)
Shopping Cart, Purchase Order, Confirmation (in Enterprise Buyer)
Material Groups, Material Types, classification in material master (in SAP MM)
Products Categories (in Enterprise Buyer)
Q: What data reside in Enterprise Buyer and what reside in SAP R/3?
A: This depends on the setup (also known as technical Scenario) being used. To determine what
technical scenario are being used – ask these questions?
• Are you using a purchasing back end (example R/3) system?
• Where are the main Purchase orders stored (Enterprise Buyer or R/3)
Very good out of the box integration between SAP R/3 and Enterprise Buyer. Data exchange
mainly by using following methods:
• RFC / qRFC / BAPI’s (calls between systems)
• Idocs (ALE) (sending documents between systems)
Doc Type, Item category & Schedule Line Category in a Sales Order
SAP version used in this post: SAP ERP Central Component (ECC) 5.0
• Header
• Item
• Schedule line
Within these three levels the main indicator that describes the behaviour of the Sales Order is
the:
Lets create a very basic sales order and have a look at these three levels and indicators.
Menu: Logistics > SD > Sales > Order > Create - VA01
Lets look at the Sales document using Sales Order Change - VA02
Lets first look at the Header to verify our Sales Document Type.
Menu: Goto > Header > Sales
Note the Sales Document Type (OR)
Menu: Goto > Item > Schedule Lines
Note the Item category (TAN) and Schedule Line Category (CV).
---------------------END--------------------
If you don't know what a Sales Document Item Category is, you may want to start here first.
Item category is determined automatically by the system based on the following criteria:
Item category = Sales Document type + Item category group (in material master) + Usage
indicator (ABAP) + High Level I.Cat
0001 - Requisition
AEN - Qtn from Serv. Order
AES - Qtn from Serv. Order
AFC - Configuration
AFN - Inquiry Item
AFNN - Free of Charge Item
AFTX - Text Item
AFX - Inquiry Item
AGC - Config.at Mat.Level
AGE - Service Quotation
AGM - Config.at Comp.Level
AGN - Standard Item
AGNN - Free of Charge Item
AGR - Repair Quotation
AGTX - Text Item
AGX - Quotation Item
ALEN - ALE Standard Order
ALES - ALE Third Party
APX - Quotation Item Proj.
APXS - Quotation Item Stat.
AVC - Configuration
AVN - Standard Item
B1E - Reb.Credit Memo Req.
B1N - Reb.Credit Memo Req.
BI1 - Indirect Item Rebate
BI2 - Indir.Returns Rebate
BVN - Cash Sales
BVNN - Cash Sales:FreeofCh.
CH00 - Request Rent D
CH01 - Cancel.Rent Req. D
CH02 - Request Admin.Cost D
CH03 - Cancel.AdmCo Req. D
CH04 - IEA Request D
CH05 - Cancel.IEA Request D
CH06 - IEA Intern. Deb
CH07 - Cancel.IEA Intern. D
CH08 - Request Rent D Pr.
CH09 - Cancel.Rent P.Req.D
CH10 - IEA Pr. Req. D
CH11 - CancelIEA Pr. Req. D
CH12 - IEA pr. Int. Deb.
CH13 - Cancel. IEA Pr. Int.
CH14 - IE Sett.Req D
CH15 - Cancel.IE Sett.Req D
CH16 - CreditMemo IE Sett.D
CH17 - C.CreMemo IE Sett. D
CH18 - IE Sett. Intern D
CH19 - Canc.IE Sett. Int. D
CH20 - IE Sett.Req D
CH21 - Cancel.IE Sett.Req D
CH22 - CreditMemo IE Sett.D
CH23 - C.CreMemo IE Sett. D
CH24 - IE Sett. Intern D
CH25 - Canc.IE Sett. Int. D
CH26 - Request Sec. Dep. D
CH27 - Cancel.Sec.Dep.Req D
CH28 - Sec.Dep. Statement D
CH29 - Cancel.Sec.Dep.Sta D
CH30 - Sec.Dep.Inter.Sta D
CH31 - Cancel.S.D.Int.Sta D
CH32 - Sec.Dep.Res. Req. D
CH33 - Ca.Sec.Dep.Res.Req.D
CH34 - Sec.Dep.Res. Sta.D
CH35 - Ca.Sec.Dep.Res.Req.D
CH36 - Sec.Dep.Inter.Req D
CH37 - Ca.Sec.Dep.Int.Req.D
CHA0 - Payment Statement D
CHA1 - Cancel.Payment Sta D
CHA2 - Request Payment D
CHA3 - RequestCanc.Paymnt D
CHB0 - Depreciation D
CHB1 - C Depriaition D
CHBA - Rebate
CHBB - Rebate Cancellation
CHBV - Clearing
CHBW - Clearing Bonus
CHK0 - Payment Sta. C
CHK1 - Cancel.Payment Sta D
CHK2 - Payment Req. C
CHK3 - Cancel.Payment Req C
CHT0 - Repayment Sta D
CHT1 - Cancel.Repay.Sta D
CHT2 - Request Repayment D
CHT3 - Cancel.Repay.Req. D
CHV0 - Request Refund D
CHV1 - Cancel.Req. Refund D
CHZ0 - Interest Res. D
CHZ1 - Canc.Interest Res. D
CHZ2 - Request Interest D
CHZ3 - Cancel. Inter.Req. D
DIGN - Goods Mov-Inb. Dely
DLN - Stndard Itm w/o Ord.
DLN2 - DFPS Normal Item
DLP - Items from Projects
DLTX - Text Item
DLW - Value Item
DLX - Non-stock item
DOGN - Goods Mov-Outb. Dely
DSI - CMS Stdrd Indiv.Part
DSTP - TransfPostItemCentr
EDK - ExtAgtCorrectionItem
EDK1 - Neg.Correct-Ext Agt
EGN - Rough Goods Receipt
EGSH - Rough GR:SLSMainItem
EGSU - Rough GR:SLS SubItem
ELN - Inbound Delivery
ELP - Inb. Delvy Packaging
ELSH - Inb. Dely SLS MItem
ELSU - Inb.Dely SLS Subitem
G2N - Request
G2S - Statistical Request
G2TX - Text Item
G2W - Request
G2WT - Val. Item for SBWAP
GFN - Request Billing Plan
HIDN - SH - Item
HODN - Goods Issue - Item
HSTP - TransferPostingItem
HUPM - Additionals Item
IRAL - Repaired Goods Del.
IRAT - Repairs Exchange
IRGN - Repairs Credit Memo
IRIN - DynItems for BillDoc
IRLA - Pickup Replacement
IRLB - Send Replacement
IRLN - Repairs Debit Memo
IRNI - Statist. Dyn. Items
IRPA - Fixed Rate Repairs
IRRA - Repair Costs
IRRE - Return for Repairs
IRRP - Repair
IRRS - Rep. Serv. Resources
IRVE - Scrap Goods
KAN - Consignment Pick-up
KBN - Consignment Fill-up
KEN - Consignment Issue
KLN - Free of Charge Item
KLS - F.O.C Non-stock Item
KLX - Free of Charge Item
KMN - Qty Contract Item
KRN - Consignment Returns
L2DM - Request
L2DP - Request
L2N - Request
L2S - Statistical Request
L2W - Request
L2WT - Val. Item for SBWAP
LAN - Ret.Packaging Pickup
LBN - Mat. Provided Item
LBR - PM Item for Reserv.
LFN - Request Billing Plan
LKN - SchedAgr w.ExtAgent
LNN - Ret.Packaging Issue
LPN - Sched.Agreement Item
LZMA - Dlv. SchedAgree Item
LZN - Sched.Agreement Item
LZSN - SAIt-SelfBill w/Inv.
MAK - Dlv.-Pos. Correction
MAK1 - Dlv.-Neg. Correction
MVN - Lease Item
NCRG - IntCo. Full Good Ret
NCRN - InterCo.StTR-Returns
NCRZ - InterCo.Empties Retn
NKN - TF Consgmt Lending
NKR - TR consgmt ret. del.
NLC - InterCo Stock Tr.Itm
NLCG - IComp-StTr-FullGoods
NLCU - IC-StTr-Empt(untied)
NLCZ - IC-StTr-Empty (tied)
NLN - StandStockTransItem
NLNG - Full Prod. Stock Tr.
NLNZ - EmptStockTran.(tied)
NLRG - FullGood ST Ret.Item
NLRN - Return StockTransItm
NLRZ - ST Empties Ret(tied)
NLSH - STrans.SLS Main Item
NLSU - STrans.SLS Sub-Item
PLPA - Pendulum List Req.
PLPN - Pend.List Zero Qty
PLPR - Pendulum List Ret.
PLPS - Pendulum List Cancel
PLPX - Pendulum List Revenu
PVN - Item Proposal
REN - Standard Item
RENN - Free Goods Item
REQ - Full Product Returns
RETX - Text Item
REU - EmptReturns unlinked
REX - Non-stock Item
REZ - Empties (linked)
RLLN - Return Delivery Item
RLN - Returns Order
RLNG - Full Gds Return Dely
RLNZ - Empt.ret. dely(link)
TAB - Indiv.Purchase Order
TAC - Config.at Mat.Level
TAD - Service
TADC - Configurable Service
TAE - Explanation
TAF - Configurable Service
TAG - Generic Article
TAL - Ret.Packag.Shipment
TALS - Standard Item: SLS
TAM - Config.at Comp.Level
TAMA - Delivery Order Item
TAN - Standard Item
TANN - Free of Charge Item
TAO - Milestone-Bill.Plan
TAP - Pric.at Item Level
TAPA - Standard Sourcing
TAPN - Free of Ch. Sourcing
TAPS - Standard Item (PS)
TAQ - Pric.at Header Level
TAS - Third Party Item
TASG - 3rd Pty Credit Memo
TATX - Text Item
TAU - Empties (unlinked)
TAUL - Sub-item: SLS
TAW - Value Item
TAX - Non-stock Item
TAZ - Empties (linked)
ULN - StandStockTransItem
WAC - Con. ValContract Rel
WAN - Release Item ValCont
WIDN - WMS Inbound Delivery
WIGN - Other WMS Inb. Dely
WKC - ValContrItem-Config.
WKN - Value Contract Item
WMPP - Deliv. WM->PP
WNLN - Replenishment WMS
WODD - Service
WODN - WMS Outbound Dely
WODS - Non-stock Item
WODW - Value Item
WODX - Text Item
WOGN - Other WMS Outb. Dely
WRDN - WMS Customer Returns
WSTP - TransfPostItemDec
WVC -
WVN - Maint.Contract Item
If you don't know what a Sales Document Type is, you may want to start here first.
Order Types represent business scenarios and are mostly selected by the user when creating the
sales document.
01 - Cust.Independent Req
AA - Promotion Order
AE - Qtn from Serv. Order
IN - Inquiry
QT - Quotation
AP - Project Quotation
AR - Repair Quotation
AS - Service Quotation
SI - Sales Information
AV - Quotation f.Contract
B1 - Reb.Credit Memo Req.
B1E - Exptd RebateCredMemo
B2 - Rebate Correctn Rqst
B3 - PartRebSettl.Request
B3E - Exp.PartRebSettl.Req
B4 - Reb.Req.f.Man.Accrls
BIND - Indir. Sales Rebate
BK1 - Agrmt Cred.Memo Req.
BK3 - Agrmt Cred.Memo Req.
BM1 - Agrmnt Deb.Memo Req.
BM3 - Agrmnt Deb.Memo Req.
BV - Cash Sale
CH - Contract Handling
DHU - SlsDocTypeDelyHUmvmt
DL - Order Type Sched.Ag.
DLR - Ord.Type Returns Del
DZL - Dec. Dely Order Type
ED - Issue by Ext. Agent
EDKO - Correction f.ExtAgnt
CR - Credit Memo Request
G2WT - Credit Memo Req. Val
GK - Master Contract
KA - Consignment Pick-up
KAZU - ConsignPick-up CompS
KB - Consignment Fill-up
KE - Consignment Issue
FD - Deliv.Free of Charge
CQ - Quantity Contract
SD - Subs.Dlv.Free of Ch.
KR - Consignment Returns
KRZU - ConsignReturn CompS
DR - Debit Memo Request
L2DM - Expense DebitMemoReq
L2DP - Expense:Payment Req.
L2WT - Debit Memo Req Value
LA - Ret.Packaging Pickup
LK - Sched.Agreement ExAg
LN - Ret.Packaging Issue
LP - Scheduling Agreement
LV - Deb.MemoReq. f.Ctrct
LZ - Sched. Agr. w/ Rel.
LZM - SchedAgrt w/Dly Ord.
LZS - SA:Self-bill w/Inv.
MAKO - Dely Order Correctn
MV - Rental Contract
NL - Replenishment Dlv.
PLPA - Pendulum List Req.
PLPR - Pendulum List Ret.
PLPS - Pendulum List Cancel
PV - Item Proposal
RA - Repair Request
RAS - Repairs / Service
RE - Returns
RK - Invoice Correct. Req
RM - Delvy Order Returns
RZ - Returns Sched.Agrmnt
SO - Rush Order
OR - Standard Order
TAF - Standard Order (FPl)
TAM - Delivery Order
TAV - Standard Order (VMI)
TSA - Telesales
WA - Rel. to Value Contr.
WK1 - Value Contract- Gen.
WK2 - Matl-rel. Value Cont
WMPP - WM Prod.Supply
WV - Service and Maint.
Notes:
Doc Type, Item category & Schedule Line Category in a Sales Order
SAP version used in this post: SAP ERP Central Component (ECC) 5.0
• Header
• Item
• Schedule line
Within these three levels the main indicator that describes the behaviour of the Sales Order is
the:
Lets create a very basic sales order and have a look at these three levels and indicators.
Menu: Logistics > SD > Sales > Order > Create - VA01
The Order Type is selected by the user, we take OR
OR is a order type available in standard SAP system.
We now need to enter the customer that we sell the goods to and the material that we sell. This
master data was created beforehand. In our case, the customer (Sold-to party) is AA1122 and
material being sold (material master) is 77. Also type in quantity, in our case it is 1. And press
SAVE. You will get a Sales Order number, number 318 in our case.
Lets look at the Sales document using Sales Order Change - VA02
Lets first look at the Header to verify our Sales Document Type.
Menu: Goto > Header > Sales
Note the Sales Document Type (OR)
Menu: Goto > Item > Schedule Lines
Note the Item category (TAN) and Schedule Line Category (CV).
For more detail on these indicators, see posts on:
- Document Type
- Item category
- Schedule Line Category
---------------------END--------------------
As a SAP consultant, you must be able to draw and explain the basic T-accounts and know how to
set up all the GL accounts in customizing.
Business process
Let’s take a simple business process:
• Company sells goods and create a Sales Order for 2,200 dollars
(Selling price is 2,000 dollars plus 200 dollars sales tax)
• Create delivery document that starts the delivery process
• Process Goods Issue (GI) when goods leave the warehouse
• Billing customer (Billing document)
• Accounts Receivable or Clearing (get money from customer)
The material is valued at 1,000 dollars (the price in material master > accounting view)
The yellow blocks are those transactions that will create FI documents (accounting entries).
GL account postings
SAP SD Tables
Customers
Materials
MAST - Material
EQST - Equipment
KDST – Sales Order
DOST - Document
STST - Standard Object
TPST – Functional location
STKO – BOM: Header
STZU – STL data
STAS – BOM: Item selection
STOP – BOM: Item data
STPU – BOM: Sub items
General
Firstly -- SAP External Service Management (ESM) must not be confused with SAP Service
Management (SM). ESM is the procurement of services. SM is to provide services to a client.
With External Services, you have a PO for services with Goods Receipt taking place. The Goods
Receipt is called Service Entries. In contrast with goods (stock or non stock) where receiving is
typically done by the inventory management group, the Service Entries are done by business
themselves. The logic is that the business generated the request for the service, that is where it
was done, it will be best if they do confirmation that service took place.
Lets look at the traditional SAP purchasing cycle vs SAP purchasing cycle for External Services.
The big difference is that the item category is D (services) is used. For the item, detail Service to
be performed can be specified. The receiving is a 2 step process. Create and then Accept Service
Entry Sheet
Lets step through the process and look at the documents. The steps are
What makes the PR a ESM PR is the Item category. For goods it is blank. For ESM it is D
(Service). if the item category D is selected, it is mandatory to provide the account assignment.
Step 2 - Convert to Purchase Order
The PR is converted to a PO. If me59 (automatic creation of PO) is used, the Material Group must
also be entered in the selection criteria, otherwise it doesn't work.
This is the equivalent of a Goods Receipt. The result of accepting a SES will be a material
document with movement type 101 (GR against PO). Depending of process the SES can be
created and Accepted by different people. Typically the acceptance is done by a more senior
person.
Service Outlines
The services in the PR / PO can be specified in a hierarchy. See this post for more information on
this.
Account Assignment U
Under special cases (if allowed), an account assignment U (Unknown) can be selected when
creating the PR / PO. In this case the correct account assignment category must be provided
when the service entry sheet is created.
Configuration
The focus on this post is to introduce the concept, so no configuration options are discussed. See
below for config options related to this functionality. Config Menu: IMG > Materials Management
> External Services Management
Transactions
The following transactions were used for above screens:
ME51N - Create PR
ME21N - Display PO
ML81N - Create Service Entry Sheet
ML82N - Change Service Entry Sheet (Acceptance)
AC03 - Maintain Service Master
Blanket Purchase Orders
In SAP, Blanket Purchase Orders refer to the business process where you have a Purchase Order
with a validity period (start / end date) and a limit on the item. No Goods Receipt takes place.
Payment is triggered by Invoice.
Multiple invoices can be processed. Main point is that invoices must be processed within the
validity period spesified in PO. The total value of invoices must also not exceed the limit spesified
in PO item. The validity period is spesified on PO Header Level, while the Limit is on Item level.
The creation of Purchase requisition is Optional.
Purchase Requisitions doesn't have validity period fields, although the limit can be spesified on
item level. So if users create PR's then they could type the validity period simply as text in one of
the long text fields.
During invoicing, if the date is outside validity period or the amount is bigger, either a Warning or
Error will occur. This setting is done in customising.
Examples on where this business process can be used include: Services: example buying flowers,
travel. Perticular if the receipt process is not very formalised. It is also sometimes used for
utilities (water, electricity...).
Look at processes where Financial invoices (no PO) are used. To improve control, a lot of vendor
invoices could be moved to Blanket Order process.
The Overall Limit is the value that will be used to in the check during invoicing. If Commitment is
switched on in Costing, the Expected value is the value of the commitment against in this case
the Cost Centre. The actual will be posted during invoicing.
Account assignment is mandatory, so this process is non stock purposes only. Stock can not be
procured using this method (For stock a GR is required).
Because no Goods Receipt (GR) will take place, the GR indicator is switched off when the item
category is selected.
Default GL account in account assigned Purchase Requisition
SAP version used for this post: SAP ECC (ERP Central Component) 5.0
IMG: MM > Purchasing > Material master > Entry Aids for Items without an material master
The GL account itself is link to the Valuation class in T030 (tcode omwb)
If the Entry Aids (default valuation class per material group) are not found, one can also set a
default GL account in T030 by leaving the Valuation class blank. (First row in above example).
Prerequisites:
• Configuration of both material types must be similar (see transaction OMS2 - Material
Type configuration)
• There should be no open PO’s against this material
• There should be no valuated stock against this material
• There should be no open line items against vendors for this material (see transaction
FBL1N - Vendor Line Item display)
A message will indicate if it was successfull or not. And if not why. For example here it failed due
to valuated stock and open purchase orders that exists.
Material Master: Material Type configuration
SAP version used for this post: SAP ECC (ERP Central Component) 5.0
• Number range of material master and if it is internal (system allocated) or external (user
allocate number)
• Which fields in material are mandatory / read only / optional
• User departments (Views in material)
• Purchase Orders allowed
• Valid valuation classes
• Quantity and Value update (does it update stock qty and value)
• Is it a pipeline material or not
• .... and many more
ABF - Waste
CH00 - CH Contract Handling
CONT - Kanban Container
COUP - Coupons
DIEN - Service
ERSA - Spare Parts
FERT - Finished Product
FGTR - Beverages
FHMI - Production Resource/Tool
FOOD - Foods (excl. perishables)
FRIP - Perishables
HALB - Semifinished Product
HAWA - Trading Goods
HERS - Manufacturer Part
HIBE - Operating supplies
IBAU - Maintenance assemblies
INTR - Intra materials
KMAT - Configurable materials
LEER - Empties
LEIH - Returnable packaging
LGUT - Empties (retail)
MODE - Apparel (seasonal)
NLAG - Non-stock materials
NOF1 - Nonfoods
PIPE - Pipeline materials
PLAN - Trading goods (planned)
PROC - Process materials
PROD - Product groups
ROH - Raw materials
UNBW - Nonvaluated materials
VERP - Packaging
VKHM - Additionals
VOLL - Full products
WERB - Product catalogs
WERT - Value-only materials
WETT - Competitor products
Config Menu > Materials Management > Inventory Management > Reporting > Define Field
Selection for Material Document List
Last edited by SAPman : 12-13-2006 at 07:30 PM.
Example: Let’s assume stock is moving from Plant A (Storage Location 0001) to Plant B (storage
location 0002).
Two step means that two transactions will be used to move the stock. After the first transaction,
stock has left plant A but it is not yet available at Plant B. Only after the second transaction is it
available for use in Plant B.
Steps:
• Create a Stock Transport Order (ME21N, Purchase Order doc type UB)
• Process Goods Issue against STO (MIGO > Goods Issue > PO) – movement type 351
• Process Goods Receipt against STO (MIGO > Goods Receipt > PO) – movement type 101
• Process a Transfer Posting (MIGO > Transfer Posting) – movement type 303
• Process a Transfer Posting (MIGO > Transfer Posting) – movement type 305
The Transfer Posting can be done with reference to a Reservation. Although this is not used a lot.
Similarities between Stock Transport Orders (STO) and Transfer Postings (TP)
Differences between Stock Transport Orders (STO) and Transfer Postings (TP)
Config: MM > Purchasing > Purchase Order > Set up Stock Transport Order > Assign Document
Type, One-Step Procedure, Underdelivery Tolerance
In SAP Vendor Evaluation, the Automatic calculation of points for price based sub criteria compare the Market
Price with Actual price in Purchase Order. In standard SAP, Market price is per Purchase Org + Info Rec
Category + Material.
Split Valuation
This notes relates to SAP ECC (ERP Central Component) 5.0
A material is activated by entering the valuation type in the accounting view of the material
master.
Steps to set it up
CONFIGURATION
1. Activate Valuation
2. Create Valuation Category
3. Create Valuation Types
4. Link Categories > Types
5. Link valid Valuation Categories to Plant
MASTER DATA
-------------DETAIL------------------
In this example we want to group material in the same plant based on AGE (valuation category).
We will have two "groups" (valuation types): OLD and NEW.
Configuration
IMG: Material Management > Valuation > Split Valuation
The Ext Mandatory option will force users to enter a valuation type in purchase orders.
Select: Create (to save)
3. Create Valuation Types
Select: Global Types > Create
The Purchase Orders attributes option indicate if PO's are allowed or not.
1 - Not allowed
2 - Allowed but with warning
3 - Allowed
The account category reference determines what GL valuation classes will be allowed.
NOTE: It is only possble to change a material (valuation category) if no stock and PO were
created. So it is not something that get changed at will. It needs to be decided on creation of
material.
SAP MM Tables
Materials
Vendors
Purchasing
Inventory Management
Invoice Verification
• Company (FI)
• Plant
• Storage Location
• Purchase Organisation
(the red crosses indicate links that are not allowed -- see notes below)
To keep it simple you want minimum amount of SAP Hierarchy objects (companies, plants,
storage locations, ...). Example: Don't just create a lot of plants -- always ask why, why, why?
Company Code
Plant
• Where are the physical places (storage locations, distibution centres, ..) where materials
are handled?
• If using SAP PP, where are all the factories?
• How does the valuation (prices) of material differ between all these places?
• Reporting and authorisation requirements?
Storage Locations
• Where are all the physical storage places (warehouses, tanks, ...)
Purchase Organisation
Plants can also be linked to a default Purchase Organisation. This is used for example in "Auto PO
create (when doing GR)" functionality, so that the system knows what P.Org to use. This link is
only required if these functionalies are used.
CONFIGURATION IN SAP
It can also be link to a company code (this only takes place if the P.Org will be used plants linked
to this company code).
T his post is for some of you who have never done a MRP run on SAP and want to get a very
simple example going.
Simple steps
Ensure that material is created with at least the following views: Basic data, purchasing, MRP 1,
Storage, Accounting. Enter Plant / Sloc as required.
The key information for this demo is the MRP screen. Here is the one that I created.
The key MRP parameters are the MRP Type and Lot Size.
MRP Type - Defines when the rule used to determine WHEN the PR or Planned Order will be be
created.
Lot size - Determine calculation to be used to determine the QUANTITY in the PR or Planned
Order
For my simple demo I will use standard SAP MRP type = V1 and Lot size = HB
For HB (Replenish to maximum stock level) a maximum level must be spesified, make Max value
= 1000.
Do a single item run. Use transaction MD02 (Single Item, Multi Level MRP run). The Single Item
means for one material only. Multi Level refer to all levels of Bill of Material (BOM). This is not
relevant in our example.
Step 4 -- Lets evaluate results of MRP run.
You should now have a Purchase Requisition or Planned Order for a quantity to take stock up to
maximum level (as was spesified in material master).
Configuration related to MRP
As mentioned -- main MRP parameters are MRP type and Lot Size.
By using MRP areas – specific storage locations can be grouped together and planning take place
on that grouping (the MRP Area).
Example: Plant 3200 / Sloc 50 and Plant 3200 / sloc 51 in one MRP Area
This is done in Configuration.
When activated, materials can now be planned (MRP types, Lot size, etc…..) per MRP Area. And
MRP runs can also be done on MRP Area.
When creating / changing materials – you will see MRP Areas in MRP1 view
Material data fields on MRP Area level
How to use MRP Areas – Running MRP
When you run MRP, you can run it either for PLANT or MRP AREA.
If we run MRP for Plant 3200, SAP creates a PR of qty 300 (because ROP = 300).
If we run MRP for MRP Area 3200_1, SAP creates a PR of qty 100 (because ROP = 100)
Consumption History
Consumption History is stored on the lowest level either Plant or MRP Area level.
Steps to follow:
Program: RMDBVM00
Step 2 Activate requirements planning for MRP areas
Step 3 Define MRP Areas
The Receiving storage location is the default sloc that will be in PR that was created by MRP.
A MRP area consists of one or more storage locations. This is where they are defined.
Regeneration of LIS for Inventory Management
Regeneration of Logistics information Structures (LIS) for Inventory Management
Question: How do I know if there is a problem with Logistics information Structures (LIS) for
Inventory Management?
Answer: To be sure, run tcode MB5L to get total value of stock. Then run one of the LIS reports
such as MC.1 to get total value from LIS. If the two values are not the same – you have a
problem! Keep the printouts of above two reports for audit purposes.
Below is example of MB5L -- the stock value is 100,000. This should be the same as from MC.1
else there is a problem.
HOW TO FIX IT – REGENERATE LIS
If values from MB5L and MC.1 and not the same (and assuming the results from MB5L are
correct), you need to re-generate the LIS. Firstly search on SAPNET. There are quite a lot of notes
on the subject.
Example, note 453420. If required, implement. This might ensure that you don’t do this exercise
soon again.
To regenerate LIS – see note 79083 (and others). Below is summary of main steps.
Steps:
Firstly, I used version “&(6” as temporary version – you could use any other name.
1. Delete version “&(6” ofr S031, S032, S033, S034, S035 (if they exists) -- tcode olix
2. Get material documents data for “&(6” – again S031, S032, S033, S034, S035 -- tcode
oli1
3. Get invoices data for “&(6” – again S031, S032, S033, S034, S035 -- tcode oliz
4. Stock values for “&(6” – again S031, S032, S033, S034, S035 -- tcode oli2
5. Delete version “000” (the main version) of S031, S032, S033, S034, S035 -- tcode olix
6. Copy data in version “&(6” to version “000” for S031, S032, S033, S034, S035 -- tcode
olix
If using BW, you also may need to regenerate S197 (RMCBS197) and S198 (RMCBS198)
Serialization is a way to keep track of individual items (material masters). When processing
transactions, example Goods Receipt, Physical Inventory, etc.. you don't just type in material and
quantity but also the serial numbers of the individual items. Serial numbers is a unique number
that identify an item. Example if quantity is 2, one need to indicate serial numbers of the two
items. A report is available to show all movements for a spesific serial number.
A material is activated in Plant / Data Storage 2 view of material master. Field MARC-SERNP .The
options (serialization profiles) are set up in configuration and define how it will be used (see
below).
Using it in transactions
Lets look an an Inventory Management transaction for this material, transaction MI10 to do a
stock adjustment and see where the serial numbers are used.
For this material, serialization is active, so the system force you to enter the serial numbers of
the items, in this case the quantity was 2, therefore 2 serial numbers
Lets look at stock overview -- tcode mmbe and see if the serial numbers are visible.
Double clicking on the serial number take you to transaction IQ03 -- serial number per material.
History of all inventory management transactions related to this serial number are visible by
hitting the 'History' button
Setting up -- Configuration
IMG Menu: Sales and Distribution > Basic Functions > Serial Numbers > Determine Serial
Number Profile - tcode OIS2
For every profile, one needs to specify the area in SAP where it will be used and how it will be
used.
Serial number usage:
01 - None
02 - Optional
03 - Obligatory
04 - Automatic
SAP version used for this post: SAP ECC (ERP Central Component) 5.0
Firstly -- SAP External Service Management (ESM) must not be confused with SAP Service
Management (SM). ESM is the procurement of services. SM is to provide services to a client.
With External Services, you have a PO for services with Goods Receipt taking place. The Goods
Receipt is called Service Entries. In contrast with goods (stock or non stock) where receiving is
typically done by the inventory management group, the Service Entries are done by business
themselves. The logic is that the business generated the request for the service, that is where it
was done, it will be best if they do confirmation that service took place.
Lets look at the traditional SAP purchasing cycle vs SAP purchasing cycle for External Services.
The big difference is that the item category is D (services) is used. For the item, detail Service to
be performed can be specified. The receiving is a 2 step process. Create and then Accept Service
Entry Sheet
Lets step through the process and look at the documents. The steps are
What makes the PR a ESM PR is the Item category. For goods it is blank. For ESM it is D
(Service). if the item category D is selected, it is mandatory to provide the account assignment.
Step 2 - Convert to Purchase Order
The PR is converted to a PO. If me59 (automatic creation of PO) is used, the Material Group must
also be entered in the selection criteria, otherwise it doesn't work.
This is the equivalent of a Goods Receipt. The result of accepting a SES will be a material
document with movement type 101 (GR against PO). Depending of process the SES can be
created and Accepted by different people. Typically the acceptance is done by a more senior
person.
Service Outlines
The services in the PR / PO can be specified in a hierarchy. See this post for more information on
this.
Account Assignment U
Under special cases (if allowed), an account assignment U (Unknown) can be selected when
creating the PR / PO. In this case the correct account assignment category must be provided
when the service entry sheet is created.
Configuration
The focus on this post is to introduce the concept, so no configuration options are discussed. See
below for config options related to this functionality. Config Menu: IMG > Materials Management
> External Services Management
Transactions
The following transactions were used for above screens:
ME51N - Create PR
ME21N - Display PO
ML81N - Create Service Entry Sheet
ML82N - Change Service Entry Sheet (Acceptance)
AC03 - Maintain Service Master
BADI for transaction MIGO
Many companies require some sort of a check (and even possbly a message to uer) during
processing of transaction MIGO (Goods Receipt, Goods Issue, Transfer Posting ....).
This post doesn't show the detail on how to do it but just an overview on where to start. If you
need to add custom ABAP code during transaction MIGO -- show this to your ABAP team, they
would now what to do.
The exact "method" depends if you want to show the message at end (when pressing Save),
early on (after PO was typed in). Generally easier to show just before SAVE.
You can activate any number of statuses in a production order. It is possible for a production order to
be simultaneously "released", "pre-costed", "printed" and "confirmed".
To Develop Enhancements for Purchasing In this step, you develop enhancements for Purchasing.
1. Either create a new project or use an existing one and then enter the enhancement.
2. Activate the project - Your enhancement will only become effective after activation.
In contrast to modifications, enhancements are basically release-insensitive since they are not
implemented in the SAP original but in a name range that is reserved for the customer. If you want to
display the documentation for an enhancement, choose Goto -> Documentation in the enhancement
transaction.
The following SAP enhancements are available for the Purchasing area:
AMPL0001 - User subscreen for additional AMPL data (manufacturer part number)
LMELA002 - Adoption of batch number from shipping notification at time of posting of a goods
receipt
MEFLD004 - Determination of earliest delivery date for checking at time of goods receipt (PO only)
MM06E001 - User exits for inbound EDI messages and outbound purchasing documents
LWBON003 - Change settlement data for end-of-period rebate settlement before creation of settlement
documents
LMEKO002 - Enhance communication structure KOMP for price determination *-- Pandey
Ajai
1) You should understand which targeted group for the end-user training is for. Do they have any
computer background or not.
2) In what way they are going to make use of the manuals supplied to them during the course of
training.
In the client side , End Users are not permanent. If they get any better job outside they will resign and
go out. Even if you train them well, again the end-user team disappears after some time. That is why
implementing company( Client ) expects SAP Consultants to prepare documents which are self
explanatory (even to a layman in SAP) and study themselves and use the sap easy access very
comfortably.
Hence we should prepare a document which explains the following things comfortably:
A) All the buttons and Screens we have in sap and its importance for an end-user.
C) The STEP by STEP usage methodology with screen shots and explanatory foot notes for each
Transaction code.
D) Prepare a book a table and columns which should have the following information:
- Sl.NO.
- Transaction Code
- Navigation path
- Use of the Code
- Expected Result
- Achieved Result
- Remarks/Any Comment
E) Highlight the common troubles during the usage of SAP by an end- user and give the solutions
(ready to use)
These problems you can come across while giving the in house training for the end-users. You just
place them at one place and publish it for their usage in future for any of their new joinees as an end-
user.
F) Every consultant is aware that the entire Organsiational Management is with end user only. Means
consultant should train the end user in entire OM.
G) We should inform the importance of info types and usage for our purposes at expert mode, PA30,
PA40 etc.,
H) Each field in the international infotypes should be explained very clearly and ensure that they are
comfortable with the fields of infotypes which have been configured for their company.
For example : info type 0001 Org Assignment insists about the three structures of the HR. We should
explain each sub field like Emp Group, Emp Sub Group, Personnel Area and Sub Area and its
importance and relevance to their company so as to understand while processing them from the end-
user point of view .
When an employee is hired into the company , now the end-user in a position to understand which
employee group and subgroup, Personnel Area And Sub Area etc., should allotted..
Like this whatever comes across in SAP Easy Access should be insisted through the training of end
users.
J) Glossary of terms and expansion of Acronyms, Abbreviations should be given. Like this each
consultant should focus on end user training and prepare the documents. *-- Somasekhar
SAP consultant role is to build the system, changes & modification/updation in currently installed SAP
system for the end users.
SAP End user only use the SAP system just to fetch some info, or to create new thing. So a end user is
just using the final product which it is meant for and consultnat design the product/updation and
modification.
The roles and responsibilities of end users is working in easy access menu they will not have
authorizations of using img settings if they get doubt they will send query to the implemented
company and just entering day to day transactions.
Using the software at the end or after the implementation is an End User.
In sap HR , we do come across entire Org Management creation by an end user after the Personnel
strucutre is created. OM objects like creation of Org Unit means functional area or dpt , creation Job
and Position and its occupancy is with in the limits of an enduser. Initiallly the OM is created by sap
consultant . In course of time a new department has appeared in the company of the client .. this has to
be created by the enduser rather than depending up on the implementor... similarly new job and
position..like this small things are always done by the enduser.
After from this running periodical payroll and Ensuring of the Time schedules ( Work Schedules) of
each employee is done from sap easy access by an enduser and the show run of payroll everymonth is
by the enduser only. Like this lot of roles are there for an end user.
Whatever the problems come across during the enduser utilisation of sap ...that will reach as ticket to
the support team
Tips
Testing : the core team members along with endusers will test whether the postings done in SAP is
resulting as per the requirements of the organisation. They will test whether the output documents
such as purchase order, invoice document are printed in the required format and showing the correct
data.
Unit testing is refer to the module which are going to implement. SD, MM, FICO etc. there will be test
script based on that testing will be performed.
Integration testing will be cross the modules. MM-SD-FICO for example. Integration testing is also
called SIT ( System integration testing)
Unit testing is done in bit and pieces. Like e.g. in SD standard order cycle; we do have 1-create order,
then 2-delivery, then 3-transfer order, then 4-PGI and then 5-Invoice. So we will be testing 1,2,3,4 and
5 seperately alone one by one using test cases and test data. We will not be looking and
checking/testing any integration between order and delivery; delivery and TO; TO and PGI and then
invoice.
Whrereas System testing you will be testing the full cycle with it's integration, and you will be testing
using test cases which give a full cyclic test from order to invoice.
Security testing you will be testing different roles and functionalities and will check and signoff.
Performance testing is refered to as how much time / second will take to perform some actions, like
e.g. PGI. If BPP defination says 5 seconds for PGI then it should be 5 and not 6 second. Usually it is
done using software.
Regression testing is reffered to a test which verfies that some new configuration doesnot adversly
impact existing functionality. This will be done on each phase of testing.
User Acceptance Testing: Refers to Customer testing. The UAT will be performed through the
execution of predefined business scenarios, which combine various business processes. The user test
model is comprised of a sub-set of system integration test cases.
Test Director: which is used to record requirement, preparing test plan and then recording the
progress. We will be incorporating defects that are coming during these testings using different test
cases.
Mercury Load Runner: is used for performance testing. This is an automatic tool.
Technical Unit Testing= Test of some technical development such as a user exit, custom program, or
interface. the test usually consists of a test data set that is processed according to the new program. A
successful test only proves the developed code works and that it performed the process as as designed.
Functional Unit Testing= Test of configuration, system settings or a custom development (it may
follow the technical unit testing) These usually use actual data or data that is masked but essentially
the same as a real data set. A successful test shows that the development or configuration works as
designed and the data is accurate as a result.
IntegrationTesting= Testing a process, development or configuration within the context of any other
functions that the process, development or functionality will touch or integrate . The test should
examine all data involved across all modules and any data indirectly affected. A successful test
indicates that the processes work as designed and integrate with other functions without causing any
problems in any integrated areas.
Volume Testing= testing a full data set that is either actual or masked to insure that the entire volume
does cause system problems such as network transmission problems, system resources issues, or any
systemic problem, A successful test indicates that the processes will not slow or crash the system due
to a full data set being utilized.
Parallel Testing= Testing the new system or processes with a complete data set while running the same
processes in the legacy system. A successful test will show identical results when both the legacy
system and new system results are compared.
I would also note that when a new implementation is being done you will want to conduct at least one
cut over test from the old system to the new and you should probably do several.
What kind of testings that are carried out in testing server?
2. Integration testing (where a process is tested that cuts across all areas of SAP).
3. Stress testing (where lots of transactions are run to see if the system can handle the data)
The main job of the supporting consultant is to provide assistance on line to the customer or the
organisation where SAP is already implemented for which the person should be very strong in the
subject and the process which are implemented in SAP at the client side to understand,to analyse,to
actuate and to give the right solution in right time.This is the job of the support consultant.
The issues or the tickets(problems) which are arised is taken care of on priority basis by the support
team consultants.
The work process in support projects are given below for your reference.
1. The customer or the end user logs a call through any tool or by mail (RADIX).
3. Whenever a customer logs a call he /she has to mention to which work group (by name).
4. Once the calls came to the work group the support consultant or the team need to send an IR (Initial
Response) to the user depending upon the priority of the calls. (Top,High,Med,Low,None)
5. Then the error is fixed, debugged by the support consultant or the team. Then after testing properly
by generating TR(Transport Request through the basis admin)
6. Then it is informed to the end user/customer/super user about the changes which have moved to the
production server by CTS process.
These are the process. In summary, what I understand is that if any configuration or customization is
required to solve the issue, then the consultant have to work on DEV Client, then the end user will test
it in the QA client and after approval the BASIS consultant has to transport it to the PRODUCTION
client.
An example:
Tickets in SD can be considered as the problems which the end user or the employee in the company
face while working on R/3. Tickets usually occur during the implementation or after
theimplementation of the project. There can be numerous problem which can occur in the production
support and a person who is working in the support has to resolve those tickets in the limited duration,
every ticket has the particular deadline alert so your responsibility is to finish it before that deadline.
To begin with , we should give "TICKET" to you for not knowing it.
Now you need to solve this ticket. You would analyze the problem and identify that the SP
configuration has to be done for the new plant.
You would request a transport for DEV CLIENT to BASIS. You do the change and Request one more
Transport to BASIS for QA client. The End user will test the same by creating a sales order for the
new plant and approve it.
Finally, you request a transport to move the changes to PRODUCTION. Once the change is deployed
in production the TICKET is closed. What I have given is a small example. You would get some real
issues with severity HIGH in your day-day support.
The Functional Specification describes the features of the desired functinality.. It describes the
product's features as seen by the stake holders,and contains the technical information and the data
needed for the design and developement.
The Functional Specification defines what the functionality will be of a particulat area that is to be
precise a transaction in SAP terminology.
The Functional Specification document to create a detailed design document that explains in detail
how the software will be designed and developed.
The functional specification translates the Software Requirements template into a technical description
which
a) Ensures that the product feature requirements are correctly understood before moving into the next
step, that is detchnical developement process.
b) Clearly and unambiguously provides all the information necessary for the technical consultants to
develop the objects.
At the consultant level the functional spects are preapred by functinal consultants on any functionality
for the purpose of getting the same functinality designed by the technical pepole as most of the times
the functionalities according to the requirements of the clients are not available on ready made basis.
Let me throw some light on documentation which is prepared before and in a project:
1) Templates
2) Heat Analysis -
3) Fit Gap or Gap Analysis
4) Business Process Design
5) Business Process Model
6) Business Change & Impact
7) Configuration Design, which is just 5 % of Total SAP- have different names -
8) Future Impact & Change Assessement
9) Functional Design (Module Wise)
10) Risk Assessement
11) Process Metrics and Many More-- Which has impact on Business and its work flow
Note * This documents are preapared in Vanilla SAP Standards -- Things differ from one
implementation to another, and it always depends on the type of business which is opting for SAP.
- Primarily responsible for Handling tickets and application support to the endusers
- When an issue comes diagnose, analyse and solve the issue
- Responsible for any enhancements
- Writing functional specs and interacting with Abapers to develop any user exits
- Training the end users and preparing end user training material *-- Sistla
For those who wished to know the role of a functional consultant. Below is one view:
A functional consultant evaluates the demands in talking with the customer's representatives,
transforms the essence into an abstract and algorithmic business model. Hence, he identifies the use
cases and transforms them into logical and technical views.
Then the main task starts: customizing the respective business area and making sure the system reacts
in the manner according to the constraints of the requested use case.
The consultant documents the settings and prepares proper guidelines that allow other consultants to
do further changes or repairs with due efforts.
The consultant takes care that proper training is given to the users and that the system is usable,
performing appropriately and the business flow is complete and correct.
During go live he assists the technical staff by testing the behaviour of the system.
After go live he guarantees that the procedures remain usable and consistent in real live situation and
proposes enhancements.
The main duty of a consultant is to transfer external know-how to the client. It is not manpower that
counts but intelligence, understanding of processes, a feeling for defects and general a common sense.
When you talk about the role of a Functional consultant in an end to end implementation, I think it
won't be possible for me or anybody to define everything but I will try to summarize it:
1. Functional consultant is expected to generate knowledge about the current business process, design
current business flows, study current business processes and its complication, in all we can say getting
through with current business setup. Flow diagrams and DFD are prepared, most of the time in Vision
format, all this forms the part of AS IS document.
2. Everything configured has to be documented as per their categories in the form of predefined
templates, these have to be then approved by the team leads or who ever the consultant is reporting to.
3. Mapping and GAP analysis is done for each module, I have seen people defining integration after
mapping, gap analysis and configuration is done, but as per my experience in implementation, it is a
simultaneous process.
4. Before starting configuring future business processes in SAP, the DFD/ERD are prepared, this
documentation is called TO BE, which can be also siad as the result of mapping and gap analysis.
5. Sometimes Functional consultants are also expected to prepare test scripts for testing the configured
scenarios.
6. End user manual and user training is also expected from F.Consultants.
The project normally starts off with a Kick off meeting in which the team size, team members,
reporting system, responsibilities, duties, methodlogy, dates and schedules, working hours which have
been predicided are formally defined.
ASAP, it won't be possible for me to explain it here, but all I can tell you about it is that it is SAP
standard implementation methodology, which SAP prescribes but is not mandatory for any company to
follow, such as IBM follow some blue Methodlogy, some companies follow typical SDLC steps,
ASAP stands for Accerlated SAP, you can find all the steps on SAP site, through google, reading it
from there won't give you a great knowledge about ASAP but will obviously get you to know the
definitions of various term.
User exits :
1. Introduction
2. How to find user exits
3. Using Project management of SAP Enhancements
1. Introduction:
User exits (Function module exits) are exits developed by SAP. The exit is implementerd as a call to a
functionmodule. The code for the function module is writeen by the developer. You are not writing the
code directly in the function module, but in the include that is implemented in the function module.
Example:
Display the program where you are searching for and exit and search for CALL CUSTOMER-EXIT
Choose menu Utillities->SAP Enhancements. Enter the exit name and press enter.
You will now come to a screen that shows the function module exits for the exit.
- Go to transaction CMOD
- Create a project called ZVA01
- Choose the Enhancement assign radio button and press the Change button
In the first column enter V45A0002 Predefine sold-to party in sales document.
Note that an enhancement can only be used in 1 project. If the enhancement is already in use, and error
message will be displayed
Press Save
Press Components. You can now see that enhancement uses user exit EXIT_SAPMV45A_002. Double
click on the exit.
Now the function module is displayed. Double click on include ZXVVAU04 in the function module
Activate the include program. Go back to CMOD and activate the project.
User exit - A user exit is a three character code that instructs the system to access a program during
system processing.
SXX: S is for standard exits that are delivered by SAP. XX represents the 2-digit exit number.
UXX: U is for user exits that are defined by the user. XX represents the 2-digit exit number
Customer exit - The R/3 enhancement concept allows you to add your own functionality to SAP’s
standard business applications without having to modify the original applications. SAP creates
customer exits for specific programs, screens, and menus within standard R/3 applications. These exits
do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-
on functionality onto these hooks. *-- Mani
The R/3 enhancement concept allows you to add your own functionality to SAP’s standard business
applications without having to modify the original applications.
SAP creates user exits for specific programs, screens, and menus within standard R/3 applications.
These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang
your own add-on functionality onto these hooks.
Types of Exits
There are several different types of user exits. Each of these exits acts as hooks where you can attach
or "hang" your own add-ons.
Menu Exits
Menu exits add items to the pulldown menus in standard SAP applications. You can use these menu
items to call up your own screens or to trigger entire add-on applications.
SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have
function codes that begin with "+" (a plus sign). You specify the menu item’s text when activating the
item in an add-on project.
Screen Exits
Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special
subscreen areas on a standard R/3 screen and calling a customer subscreen from the standard screen’s
flow logic.
Function Module Exits
Function module exits add functions to R/3 applications. Function module exits play a role in both
menu and screen exits.
When you add a new menu item to a standard pull down menu, you use a function module exit to
define the actions that should take place once your menu is activated.
Function module exits also control the data flow between standard programs and screen exit fields.
SAP application developers create function module exits by writing calls to customer functions into
the source code of standard R/3 programs.
Field Exits
Field exits allow you to create your own programming logic for any data element in the Dictionary.
You can use this logic to carry out checks, conversions, or business-related processing for any screen
field. Example: The data element BBBNR identifies a company’s international location number. You
might want to set up your R/3 System so that all international location numbers are larger than 100.
The field exit concept lets you create a special function module that contains this logic.
You assign the special function module to the data element BBBNR. You then assign the module to
any programs and screens in which users can add new international location numbers. When you
activate your field exit, the system automatically triggers your special routine whenever a user enters a
company location number.
User exits (Function module exits) are exits developed by SAP. The exit is implementerd as a call to a
function module. The code for the function module is written by the developer. You are not writing the
code directly in the function module, but in the include that is implemented in the function module.
The naming standard of function modules for function module exits is:
EXIT_<program name><3 digit suffix>
For Example:
1. If you search for CALL CUSTOMER-FUNCTION program SAPMV45A you will find ( Among
other user exits):
Display the program where you are searching for and exit and search for CALL CUSTOMER-EXIT
If you know the Exit name, go to transaction CMOD. Choose menu Utillities->SAP Enhancements.
Enter the exit name and press enter.
You will now come to a screen that shows the function module exits for the exit.
- Go to transaction CMOD
- Create a project called ZVA01
- Choose the Enhancement assign radio button and press the Change button
In the first column enter V45A0002 Predefine sold-to party in sales document . Note that an
enhancement can only be used for 1 project. If the enhancement is allready in use, and error message
will be displayed
- Press Save
- Press Components. You can now see that enhancement uses user exit EXIT_SAPMV45A_002.
- Double Click on the exit.
Now the function module is displayed. Double click on include ZXVVAU04 in the function module
Insert the following code into the include: E_KUNNR = '2155'.
Activate the include program. Go back to CMOD and activate the project.
Goto transaction VA01 and create a salesorder. Note that Sold-to-party now automatically is "2155"
- Since the field exit is not processed until PAI, an action must be triggered on the screen (Return,
Save, ...).
- After activating the function module FIELD_EXIT... and the field exit, leave the transaction on
whose screen the field exit is to be executed. The screen is not generated until the transaction is
started.
- Do not work on different application servers since there may be some delay before the field exit is
activated.
- The profile parameter must be set on all or none of the application servers.
- If the field exit is to only be active on specific screens, check whether you chose the correct program
and the correct screen
number (take care with subscreens).
- Using SE51 -> Field list, check that the screen field does have a reference to a data element. In the
name of the field exit use the name of the data element and not the field name.
- After transport, field exits are marked as active but will not be processed.
Tip: First try deactivating the field exit once more and then afterwards, activate it again.
- If a screen is generated and the profile parameter is set, a check is run on 2 tables (TDDIR, TDDIRS)
to see whether a field exit must be generated for the respective field. In practice, the screen load is not
generated until the screen is selected after an
update. The user should not notice any difference because screen generation is very fast.
3. Can you read the contents of other screen fields in the field exit?
- In principle, every field exit can store its value in the global variables of the function group (TOP)
and hence make them
available to other field exits. Note here that field exits are always called and not only if an entry is
made in the field or if the field is empty. In addition, it is not possible to make any assumptions about
the order in which the field exits will be called in the future.
- After the user has entered data, the field exit is called in PAI as often as there are visible fields in the
step loop. The system
variable SY-STEPL is incremented each time. If a new value is assigned to the field, it is displayed in
the module between LOOP and ENDLOOP. This module is also called once for each visible step loop
line.
- No. Field exits must be tested separately in the ABAP/4 Development Workbench. For errors which
only occur in the screen environment, it is helpful to write interesting variable to the file system using
TRANSFER... . These can then be analysed there.
6. What can you do if the field contents are no longer transported to to ABAP/4.
8. Although a global field exit is inactive, a function module is called which does not exist (for
example FIELD_EXIT_PROGRAMM_@)
- This is an error in the kernel which no longer occurs as of 3.0C. As a temporary measure, it is useful
to assign a program and a screen which do not exist to the field exit and then activate the field exit.
- If you want to create a field exit for a data element, a function module is proposed with the name
FIELD_EXIT_. This
function module must exist for the field exit to work. If you do not create this function module, but do
create one with a suffix,
the data element is not displayed in CMOD.
- Fields which do not have the 'Input field' attribute usually do not trigger a field exit. The field exit is
designed to allow an
extended input check. It is therefore only called for input fields - even if they are not ready for input at
runtime of the application by LOOP AT SCREEN.
This rule does not apply, however, if the field is located within a steploop. Here the field will be
always activated, even if it is
invisible.
- Field exits can only be executed for fields that are directly related tothe dictionary. If the relation is
indirect, i.e. via an ABAP declaration ( LIKE ), no field exit can be executed.
- Field exits are only intended for input fields. As check buttons count as graphical elements, you
cannot install field exits on
them.
at line-selection.
get cursor field field1.
check field1(4) eq 'JTAB'.
set parameter id 'MON' field sy-lisel+1(10).
call transaction 'SMOD' and skip first screen.
*---End of Program
Difference Between BADI and User Exits
Business Add-Ins are a new SAP enhancement technique based on ABAP Objects. They can be
inserted into the SAP System to accommodate user requirements too specific to be included in the
standard delivery. Since specific industries often require special functions, SAP allows you to
predefine these points in your software.
In the definition view, an application programmer predefines exit points in a source that allow specific
industry sectors, partners, and customers to attach additional software to standard SAP source code
without having to modify the original object.
In the implementation view, the users of Business Add-Ins can customize the logic they need or use a
standard logic if one is available.
In contrast to customer exits, Business Add-Ins no longer assume a two-level infrastructure (SAP and
customer solutions), but instead allow for a multi-level system landscape (SAP, partner, and customer
solutions, as well as country versions, industry solutions, and the like). Definitions and
implementations of Business Add-Ins can be created at each level within such a system infrastructure.
SAP guarantees the upward compatibility of all Business Add-In interfaces. Release upgrades do not
affect enhancement calls from within the standard software nor do they affect the validity of call
interfaces. You do not have to register Business Add-Ins in SSCR.
The Business Add-In enhancement technique differentiates between enhancements that can only be
implemented once and enhancements that can be used actively by any number of customers at the
same time. In addition, Business Add-Ins can be defined according to filter values. This allows you to
control add-in implementation and make it dependent on specific criteria (on a specific Country value,
for example).
All ABAP sources, screens, GUIs, and table interfaces created using this enhancement technique are
defined in a manner that allows customers to include their own enhancements in the standard. A single
Business Add-In contains all of the interfaces necessary to implement a specific task.
The actual program code is enhanced using ABAP Objects. In order to better understand the
programming techniques behind the Business Add-In enhancement concept, SAP recommends reading
the section on ABAP Objects.
I have another doubt in BDC IN BDC WE HAVE MSEGCALL (i did not remember the >
correct name) where the error logs are stored, MSEGCALL is a table or structure.
Go to SM36,
- Start Condition
- Select the Date/Time
- Enter the Start date and Time (Time at which the job has to be processed background automatically)
- Go to the Steps
- Go to SM37.
For scheduling, the system converts all the on-hold maintenance calls, with a date that satisfies the call
horizon , into a maintenance call object (for example, maintenance order)
The system also performs a complete rescheduling of the maintenance plan , and ensures that
maintenance calls exist for the next n days (field Scheduling period in the Scheduling parameters
screen). The system always generates at least one on-hold maintenance
call. *-- Mallik
This is only possible provided that no purchase order have been assigned. If po has been created, you
can only Flag for Deletion.
To delete the pr, select the line(s) you wish to delete and then click on the dustbin icon.
How to delete the purchase requisitions created through MRP?
Normally, the deletion of such MRP run PRs can be done in the next MRP run as soon as there is any
MRP-relevant changes in the stock status of your related material.
It is not necessarily require to make any setting in MRP Group as this setting will be used in case you
would like to make a more detailed control of your MRP run process.
The setting of Plant parameters via Transaction OMI8 represents the combination of various settings
under Consumption-Based Planning (for instance, the setting of MRP Controller in OMI8 is exactly
the same as in Transaction OMD0).
Therefore, if you have already set such parameters in other transactions, then you don't need to
perform again in OMI8 Transaction.
If you want the system to take the price from the last Purchase Order, then do not maintain the
conditions in the info record because it has precedence over the last PO. This means that the netprice
field in the info record should be left blank.
In the case when you have already maintained the conditions in the info record (or netprice), try to
delete them or make them invalid by changing the validity date.
Even though no price was maintained, the info record will still keep track of the Order price history.
To check the Order price history, go into the material info record and click Environment -> Order
price history
If we want the system to take price from Purchase Requisition, what need to be done?
System can default PR price to PO. Please do the following steps.
1). System setting. Click System --> User profile --> Own Data.
Click Parameters tab.
Key in EFB and hit Enter.
Then Save.
2). To Customize Personal setting in PR so that the PR net price will be populated to PO whenever a
PO is created.
A). Run tcode ME51N.
Click Personal Setting.
B). Click Default Values tab.
Click more fields button.
C). Highlight Purchase Order Price on the right box and click left single arrow.
D). Click copy at bottom screen.
E). At default values tab the PO price field, pull down the list and click 2 As net price.
Click save at bottom screen.
You are done. *-- Ryan Tai
What is CIN?
CIN Means Country India Version
In Indian Taxing procedure, Excise Duty plays a vital role in manufacturing cenario’s. Excise related
configuration is known as CIN configuration. CIN Configuration is a topic in itself.
Some info on CIN Configuration (it may not appear as understandable below, but if you check on
screen, it will be understood better)
CIN: IMG > Logistics - General > Tax on Goods Movement > India > Basic Settings > Maintain
Excise Registrations
In this IMG activity, you maintain the data relating to your excise registrations.
- Enter each of your excise registrations, specifying a four-character code for each Excise Registration
Ids
In this activity, you maintain excise registration IDs. You create one ID for each of your business's
excise registrations.
- For each excise registration in your business create a registration ID, and state:
- Which taxes the registration covers (additional excise duty, special excise duty, and cess) Fields for
any taxes that are not covered will be hidden in transactions involving excise duty.
- The maximum number of items to be printed on each excise invoice
- Whether you are allowed partial CENVAT credits
Similarly for SED CESS Number of Items in Excise Invoice Shows the maximum number of line
items that the authorities allow per excise invoice.
Dependencies - This information is used when you create an excise invoice in Sales and Distribution
(SD) for factory sales and for other movements. This information is used to split the transfer postings'
items into multiple subcontracting challans.
Partial CENVAT Credit: Indicates that the excise registration ID is allowed to credit only a portion of
its input excise duty to its CENVAT account
Dependencies - When you post a goods receipt, the system splits the input excise duty on the material
into its deductible and nondeductible amounts. It posts the deductible duty to the appropriate CENVAT
account, and adds the nondeductible duty to the material value.
This information is also shown when you post the vendor's excise invoice.
Automatic balance Indicator - Excise year start month. The calendar month marking the beginning of
the excise year. This start month represents the month for the start of the excise invoice number range.
The month 04 is entered here indicating April of the calendar year as the start month for excise
invoices. Any change by the Excise authorities regarding start month should be taken care of by an
entry in this field and initialization.
Excise invoice selection procedure :Excise invoice selection type. To indicate the method opted by the
company for selecting the excise invoice. It can be either earliest or latest invoices that were received.
Number of excise invoices to be selected Indicates the number of excise invoices that needs to be
selected in the excise invoice selection.
Days to be considered for excise invoice selection Number of days from document date for excise
invoice selection.
Example - If the value of this field is 20 and today is 28-03-97. The excise invoice selection will show
the related invoices only for the period 08-03-97 to 28-03-97.
Document type for TDS FI posting: Financial accounting document type for TDS posting.
Document type for FI posting on Utilisation Financial accounting document type for TDS posting.
Indicator for item level excise duty round off - This indicator is to be used for deciding whether Item
level excise
duty amount rounding off is required during procurement cycle. If marked 'X' then the excise duty
amount will be rounded off to the nearest rupee at the Purchase order level. This will not round off the
CENVAT credit to be taken. If the duty amount is less than one rupee then no rounding is done
Rounding off of Excise duty for outgoing excise invoice - You can round off the Excise amount to be
paid during an outgoing
Excise invoice by marking this indicator as 'X'. The rounding is done at the item level for each item
where the amount is greater than 1 Rupee.
Immediate Credit on Capital Goods - Instructs the system, when you verify a goods receipt for capital
goods, to immediately post half of the input excise duty to the appropriate CENVAT accounts. The
rest is posted the CENVAT on hold account, for use in the following year.
CVD Clearing Account - Specifies which G/L account the system credits when you take a CENVAT
credit on countervailing duty in the Incoming Excise Invoices transaction.
Exchange rate type - Key representing a type of exchange rate in the system.
- You enter the exchange rate type to store different exchange rates. Example - You can use the
exchange rate type to define a buying rate, selling rate, or average rate for translating foreign currency
amounts. You can use the average rate for the currency translation, and the bank buying and selling
rates for valuation of foreign currency amounts.
Exchange rate type to be used for Export excise duty converts - When you are creating an Excise
invoice for export sales then the exchange rate for duty calculation will be picked up using this
Exchange rate type.
Maintain Plant Settings - In this IMG activity, you maintain excise information relating to your plants.
Plant Settings - In this activity, you maintain excise information relating to your plants.
For each plant:
- Specify whether it is a manufacturing site or a depot.
- Assign it an excise registration ID. - You can assign the same ID to more than one plant, if required.
Depot - Indicates that the plant in question is a depot. - Depots are required to prepare register RG
23D, and follow different procedures for goods receipt and invoice generation.
- Number of goods receipt per excise invoice.
- Multiple GR for one excise invoice, Single credit
- Multiple GR for one excise invoice, multiple credit
Maintain Excise Groups - In this IMG activity, you define your excise groups. For each excise group,
you can also control how various excise invoice transactions will work.
Excise Groups - In this activity, you define excise groups. An excise group allows you to maintain a
separate set of excise registers and excise accounts. The RG 23A, RG 23C and PLA serial numbers are
created for an excise group.
Recommendation - Under normal circumstances, excise authorities require every business to maintain
only one set of excise registers and one set of accounts. But through exemption from the authorities,
multiple books can be maintained.
If your company has only one set of excise registers, then you need to maintain only one excise group.
1. Create one excise group for each set of registers that you need to keep.
2. Assign the excise groups to plants.
3. Maintain whether this Excise group is for a depot or not.
If you receive only one consignment for an Excise challan then you can leave GR's per EI as blank. If
you receive multiple GR's for a given Excise challan and would like to avail multiple credit mark the
GRs per EI as 'Multiple GR's for one excise invoice, multiple credit'. Alternatively if you want to
availa the credit only after all the goods receipts have been made mark it as ' Multiple GR for one
excise invoice, single credit'.
4. If you want to automatically create Excise invoice during Sales cycle at the time of billing the tick
the indicator 'Create EI'
5. During depot sales if you do not want to do RG23D selection and posting separately and would like
to complete RG23D selection in one step mark the indicator 'RG23D Auto post'. This will post the
selected records into RG23D automatically. You cannot cancel the selection later.
6. If the indicator 'Default GR qty' is marked system will default the Excise challan quantity on to the
Goods receipt if the Excise invoice number is given in the pop-up.
7. If the indicator 'Folio no create' is marked system will generate Folio numbers for RG23D during
receipt of excise invoice into depot.
8. 'Automatic posting' when ticked will post the Excise invoice other movements automatically along
with creation in single step.
9. 'Create Part1 for Block Stock' when marked will create a Part1 during the receipt of material into
Blocked stock .
10. 'Create Part1 for STO' when marked will create a Part1 during the receipt of material through inter
plant transfers.
11. 'Create Part1 for consumption stock' when marked will create a Part1 during the receipt of material
into consumption stock. Excise Group Governs which set of excise registers a business transaction will
be included in.
Following is the relation between excise group, plant and registration. - In define excise groups in
Customizing.
Then, in transactions involving excise duty, for example, when you post a vendor's excise invoice, you
specify which excise group you are using. This information tells the system which G/L accounts to
post the excise to. At the end of the period, when you come to prepare your excise registers, you
create different sets for each excise group.
Indicates that the plant in question is a depot. - Depots are required to prepare register RG 23D, and
follow different procedures for goods receipt and invoice generation.
- GR Per Excise Invoice
- Multiple GR for one excise invoice , Multiple credit
- Multiple GR for one excise invoice , Single Credit
Create Excise Invoice Automatically - Instructs the system to automatically create a Sales and
Distribution (SD) excise invoice immediately you create a commercial invoice or a pro forma invoice.
The excise invoice is created in the background. - If you want to make use of this function, you must
also define the
default plant, excise group, and series groups in Customizing for Sales and Distribution (SD), by
choosing Excise Group - Series Group Determination.
RG23D Sales Creation and posting option - RG23D Automatic Option if selected will create Depot
excise invoice by posting the selection of excise invoices in single step. If this is not selected then
you need to separately do RG23D selection
followed by PGI and then RG23D verification and posting. If you need automatic posting of RG23D
selection then the Post Goods Issue should have been completed before running RG23D selection.
Default excise qty in GR - If this indicator is ticked then while doing Goods Receipt using 'MB01'
system will default the excise invoice quantity on to the Goods receipt document.
Folio number for depo Posting - If this indicator is marked then while creating Excise invoice for other
movements system automatically does the Verify and Post. You need not separately Post the excise
invoice
Maintain Series Group - In this IMG activity, you define the different excise series groups within your
company. Series groups allow you to maintain multiple number ranges for the outgoing excise
documents. Based on excise regulations and exemptions from the authorities you can maintain
multiple number series for outgoing documents. But each of these series has to be declared to the
excise authorities.
Immediate Utilization of CENVAT - Specifies that when you create an excise invoice, the system
immediately pays the amount from CENVAT and creates the Part II entry. Such invoices will not be
listed for fortnightly utilization.
If you have both fortnightly and immediate utilization for the same excise group, the account
determination within CIN IMG should point to the ED interim account.
Account determination for immediate payment will be done exactly the same as being done for
fortnightly utilization program.
Maintain Excise Duty Indicators - In this IMG activity, you maintain the excise duty indicators.
IMG > Logistics - General > Tax On Goods Movement > India > Basic Settings > Determination of
Excise Duty > Select Tax Calculation Procedure
In this IMG activity, you specify which tax procedure you want to use for determining excise duties
and sales taxes on input materials in India.
- If you use condition-based excise determination, use a copy of the tax procedure TAXINN.
- If you use formula-based excise determination, use a copy of the tax procedure TAXINJ.
This tax procedure also supports condition-based excise determination, so that you can work with both
concurrently.
We strongly recommend that new customers use condition-based excise determination. Note that once
you have started using a tax procedure, you cannot switch to another one, otherwise you will not be
able to display old documents.
Maintain Excise Defaults - In this IMG activity, you define which tax procedure and pricing condition
types are used in calculating excise taxes using formula-based excise determination.
If you use condition-based excise determination, fill out the CVD cond. field and leave all the others
blank.
If you use formula-based excise determination, fill out all of the fields as follows:
- Enter the tax procedure and the pricing conditions that are relevant for excise tax processing.
- Specify the purchasing and sales conditions types used for basic excise duty, additional excise duty,
special excise duty, and cess.
- Specify the conditions in the sales order that are used for excise rates.
Landscape is like a server system or like a layout of the servers or some may even call it the
architecture of the servers viz. SAP is divided into three different lanscape DEV, QAS and PROD.
- DEV would have multiple clients for ex: 190- Sandbox, 100- Golden, 180- Unit Test.
- QAS may again have mutiple clients for ex: 300- Integration Test, 700 to 710 Training.
- PROD may have something like a 200 Production.
These names and numbers are the implementer's discreet on how they want it or they have been using
in their previous implementations or how is the client's business scenario.
Now whatever you do in the Sandbox doesn't affect the other servers or clients. Whenever you think
you are satisfied with your configuration and you think you can use it moving forward, you RE-DO it
in the golden client (remember, this is a very neat and clean client and you cannot use it for rough
usage). As you re-do everything that you had thought was important and usable, you get a transport
request pop up upon saving everytime. You save it under a transport request and give your description
to it. Thus the configuration is transported to the Unit Test client (180 in this example).
You don't run any transaction or even use the SAP Easy Access screen on the 100 (golden) client. This
is a configuration only client. Now upon a successful tranport by the Basis guy, you have all the
configuration in the Testing client, just as it is in the Golden client. The configuration remains in sync
between these two clients.
But in the Testing client you can not even access SPRO (Display IMG) screen. It's a transaction only
client where you perform the unit test. Upon a satisfactory unit test, you move the good configuration
to the next SERVER (DEV). The incorrect or unsatisfactory configuration is corrected in Golden (may
again as well be practised in the sandbox prior to Golden) and accordingly transported back to 180
(Unit Test) until the unit test affected by that particular config is satisfactory.
The Golden client remains the 'database' (if you wanna call it that) or you may rather call it the
'ultimate' reference client for all the good, complete and final configuration that is being used in the
implementation.
In summary:
Landscape : is the arrangement for the servers
IDES : is purely for education purpose and is NOT INCLUDED in the landscape.
DEVELOPMENT : is where the the consultants do the customization as per the company's
requirement.
QUALITY : is where the core team members and other members test the customization.
1. Sandbox server: In the initial stages of any implementation project, You are given a sandbox server
where you do all the configuration/customization as per the companies business process.
2. Development Server: - Once the BBP gets signed off, the configuration is done is development
server and saved in workbench requests, to be transported to Production server.
3. Production Server: This is the last/ most refined client where the user will work after project GO
LIVE. Any changes/ new develpoment is done is development client and the request is transported to
production.
These three are landscape of any Company. They organised their office in these three way. Developer
develop their program in Development server and then transport it to test server. In testing server tester
check/test the program and then transport it to Production Server. Later it will deploy to client from
production server.
R/3 stands for realtime three tier architecture. This is the kind of architrecture SAP R/3 system has.
R/3 means three layers are installed in Different system/server and they are connected with each other.
1) Presentation
2) Application
3) Database Find the list of SAP Transaction codes
Where I can find the list of transaction codes and their usage, I heard that there is some table
which contains all the transaction codes with their descriptions.
Does anyone know about the Table that consist all the T-Code?
Listed here are the various ways you can find the list of transaction codes and their usage:
Fill in the Database table name and click the Display button.
- TSTC table will contain all the Tcodes and
- TSTCT table will contain all the Tcodes with Texts.
Once you entered the screen, click in Top Menu - Utilities - Table contents - Display
If you want to display all the transaction code (total - 57,048) you have to change the Fields:
Maximum number of hits to 99999 (default 500).
or
Simply goto transaction SM01, although this tcode is to Lock/Unlock any transaction code, you can
also view all the tcode available in the R/3 system from here.
or
There are two ways where you can find the list of transaction codes in SE93.
Method 1:
You must be familiar with the starting characters strings for each of the R/3 application modules.
Assuming you know that most Materials Management transaction codes start with MM.
In the Fields: Transaction code, type in MM* and press the function key F4
Method 2:
On the Top Menu, click Utilities - Find - Execute and the first 500 transaction will be display.
If want to display all the tcodes, make sure you remembered to change the Fields: Maximum no. of
hits right at the bottom of the screen.
I know a particular T Code and can enter and work on it. How do I know what is the menu path
for that T Code?
Enter Search_SAP_Menu in the command box and when the pop box appears enter, the Tcode and it
will give the nodes and menu path.
This is helpful only in case of SAP Menu not in case of SPRO - ie IMG.....
You can combine several maintenance notifications that refer to a particular object in a single
maintenance order. This could be the case if, for example, several defects are to be repaired at the
object on one maintenance date.
When planning concrete tasks in an order, you can make reference to several maintenance notifications
or technical objects. For this purpose you can use object lists, which contain all relevant maintenance
notifications and technical objects.
The default G/L can be changed for a material requisition on the purchasing data screen.
Currently, the only way to do it is doing a manual goods issue, without using the reservation.
In this way you can, of course, change the default G/L account.
Deletion and control of materials Reservations (PM order)
How can we delete PM materials Reservations in the MM module?
Without using the PM order, can we limit the no. of days to permit the GOODS ISSUE of the PM
materials Reservations.
As I'm sure you've found, SAP does not allow manual change to reservations created automatically
(e.g.. by PM).
This is to ensure that all the work done by the planners is not simply ignored by the people in the
stores. If they want a reservation to be canceled they should call the PM planners who can change the
PM order.
You can usually limit the validity period of the reservation in configuration to, for example, 5 days of
planned GI date.
In this case, if 5 days have gone by past the planned issue date the deletion flag is automatically set on
the reservation. This applies to reservations created by PM.
Note that when the PM order is set TECO that the reservations will automatically be deleted.
PM - SM notifications
In 3.1f Notifications, there is option to create special Notification or Activity or Request.
Request displays all Catalogs codes, Sales Organization, DC, Division, Maintenance Plant etc.
whereas Notification does not ask for these details.
This is not from 3.0f client, it is from 4.5A but the concept is still the same.
1. Reporting defects
2. Reporting previously carried out work
3. Requesting work.
In 4.5A these are called Problem Notification, Activity Report and Service Request.
You can create your own types and mix and match the initial screens and defaulted catalog types, but
these three are the ones from the menu path you quoted. Also, the initial screens and defaulted catalogs
for these 3 types are also configurable.
If you don't use Notifications (in general) then you miss out on catalog reporting, breakdown
reporting, downtime and most of the functionality in the SMIS.
The type to use? That depends on the industry and your company's needs.
In SAP the order is the planning tool and the collector and distributor of costs.
SAP has created the functionality for Notification Tasks for the planning of work, but there is no cost
planning or allocations.
Depending upon the size of the job depends whether an order is created to plan the work and/or
capture the costs.
Activity Reports are normally created to save the administration of an Order. i.e. No significant costs,
but you wish to record some technical history after the event. They can also be created from a
Preventive type maintenance Order (created automatically from a Maintenance Plan) for technical
reporting.
Service request. Typically a Service is required, not a defect or problem.
Recommendation: Use which is right for you, but you can report across all the Notification types.
1.While creation of material master, tick the 'Post to insp. stock' box in the Purchasing Tab.
2. If we do not want a task list / Result recording oriented inspection, in Quality tab, choose
appropriate selections,
4. Maint. person can check it and transfer the stock to "Unrestricted Stock" through MB1B via 261
movement, giving a reason as Accepted after Inspection or Rejected.
In the SAP standard business model, if the user technically completes the works order, the following
consequences occur:
1. Any reservations for which goods issues have physically been completed, but which have not
applied in the SAP system, are deleted. There is then no way of recording the consumption of spares
against the appropriate works order.
2. Any purchase requisitions that have not been converted into purchase orders are deleted.
The system does not provide any warning that these deletions have taken place. Furthermore, since the
system permits simultaneous completion of multiple works orders (via IW38) there is a tendency to
blindly close these works orders without adequate reviewing.
Block technical completion where there is any work planned and this has not been progressed to a
point of final confirmation completeness; this process can be further enhanced by checking that key
details on the related Breakdown/Unplanned Notification are complete.
This can be achieved by user exit "exit_saplcoih_004" when trying to do the TECO via IW38, which
broadly proceeds as follows.
1. Evaluate the works order plan against actual confirmations, and determine if the activity is
complete in quantity or by explicit completed flag.
2. Check the required fields on the breakdown/unplanned or call-out/after hours notification.
3. Confirm that no part of the tests in 1 and 2 failed. Where the works order and notification have
failed, a report can then be generated explicitly defining all activity and information that must be
completed in order to achieve technical completion.
4. If the user is allowed to override this block block, and elects to do so, then the order is closed
according to the SAP standard method. This method clears open reservations and any purchase
requisitions which have not been converted to purchase orders. I suggest a separate authorisation for
the override so that you can still achieve control via segregation of duties.
The following Business rules need to be met for successful technical completion and should to be
coded into the user-exit via your ABAP developers:
To help your developers, the following tables will need to be accessed while processing the user-exit:
AFKO PP order header
T430 Operation/Activity control key
AFKO PP order header
AFVC Operation within an order
AFRU Operation confirmations
VIAUFKS PM Order Selection View
MSEG Document Segment: Material
RESB Reservations
AFVV Operation times.
AUFM Material movements for order.
EBAN Requisition items
EBKN Requisition items Account Assi
EKPO Purchase order
EKBE Purchase order history
EKKN Purchase order Account assign
JEST Object status
QMMA Quality notification activities
QMEL Quality notification
QMFE Quality notification items
QMUR Quality notification causes
QMIH Quality message maintenance data excerpt
IFLOT Functional Location
EQKT Equipment short texts
Business closing means all the costs are posted and you dont expect any more cost posting. This
business closing is a requirment of CO. If you don't do business closing and leave the order at TECH ,
the cost will recide in the order itself. As per the settlement rule , the cost should get transfer to the
cost centre you have defined. But in TECH stage the cost is still in Order. Once you do a KO88 and
then a business closing, the cost get transferred to a cost centre..
You need to make sure that all financial postings hav ben completed before doing a business
completion.
You can use transaction CO99 to Business Complete your orders. Using this transaction allows you to
select the number of days an order has been TECO'd before you business complete it. E.g if you are
confident that all financial postings will be complete within 60 days, you cal select 60 days as the
retention period. This means that orders have to be TECO'd for a period of 60 days before the system
will select them for completion.
Batch completion PM orders is done with transaction CO99.
As a consequence, orders are completed if:
- Not yet administrative completed
- Technical completed longer than “a number of days” ago
- No open liabilities (open purchase orders – not yet invoiced purchase orders)
If work is compleated 100% in one instant we will do the settlement rule in full, other wise if work is
compleated half we will go for PER and remaining activity may be settelment rule other PER.
Maintenance Order settlement rule having 2 lines that is Per & Ful. Peroidic Settlement- in this
settlement rule system settle whatever cost occurs upto today & suppose in future if you want to
charge some more cost on the same Maint. Order then system will accept it. And when ful or Final
settlement runs the rest of the cost will settle to the cost receiver.
But if you run final settlement then in future you will not able to chargeany cost to the same maint.
order.
Does this means everytime when we are completing the Order we have deleted one of these two
lines.
You need not to delete any line whether this is PER or FUL.
Its depends upon the settlement job which is done manually or schedule batch job. Suppose you has
created schedule batch job for PER and FUL both. And the schedule frequency of PER is weekly and
schedule frequency of FUL is monthly.
Just think that you have created one planned maint order on 2nd of December. And this job will start
on 12th of December to 13th December and you have mentioned spares, internal manpower & contract
in the maint order.
Now stores deliver the required spares on 10th of December and its cost is 10 lacks. Your internal
manpower cost is 10,000/= INR and it is booked through IW41 on 13th of December. External /
contractor cost is nearly 1 lacks and for this S. E. Sheet created on 20th December and accepted on
23rd of December.
Suppose the PER settlement job runs on 8th of December. So next PER settlement job will run on 16th
December. This settlement job will settle the spares & internal manpower cost to cost receiver. Now
next PER settlement job will run on 24th December. But this job never settle the remaining cost of the
maint order because the PER settlement already finished.
So the remaining cost of the maint order will settle when FUL settlement job will start. When FUL
settlement jobs runs system checks all the Maint. Order which is created in this month and carry any
cost which is not settled then this cost will settle through FUL settlement.
Business closing means all the costs are posted and you dont expect any more cost posting. This
business closing is a requirment of CO. If you don't do business closing and leave the order at TECH ,
the cost will recide in the order itself. As per the settlement rule , the cost should get transfer to the
cost centre you have defined. But in TECH stage the cost is still in Order. Once you do a KO88 and
then a business closing, the cost get transferred to a cost centre..
You need to make sure that all financial postings hav ben completed before doing a business
completion.
You can use transaction CO99 to Business Complete your orders. Using this transaction allows you to
select the number of days an order has been TECO'd before you business complete it. E.g if you are
confident that all financial postings will be complete within 60 days, you cal select 60 days as the
retention period. This means that orders have to be TECO'd for a period of 60 days before the system
will select them for completion.
You are right - we can recording measuring doc via IW42 - click in the Meaurement/counter readings
button and the pop up windows appear.
The cost will go to G/l account as soon as the goods movement is done or service entry sheet is
accepted. Only thing is that the cost will not be reflected in the cost center.
The work order is a PM cost object. It can hold costs. for example, when a time confirmation is done,
and it is saved, the cost centre in the tech object is debited and the work order is credited with those
costs.
What then should happen is settelment occurs and the work order is debited and the cost centre in the
work order operation is credited
If settlement does not occur, those costs sit on the work order. The problem with this is that because
the costs do not settle they are not transfered to the operation cost centre. In simple terms, this then
means that the cost centre of the maintainers who did the work, does not get paid!
It also causes problems with reporting, and cost management from Controlling, and can significantly
affect your maintenance budget (depending upon your business processes)
You can also directly create measurement documents via your measurement points.
Identify your measurement points first and use IK11
Thanks Shirley, I forgot about the profile set up for completion confirmation config. You have to set
the profile to show the meausring doc button. Thanks for the refresher, I had forgotten about it... :))
With backflush infact the component allocated in BOM get consumed at the time of operation/order
confirmation.
If you set the backflush then all materials allocated to the Work Order will get issued from stores
automatically. So there is no need to do a separate MB1A or MIGO Goods Issue.
To return item to store you will have to do a reversal from WO back to stores using Movement Type
262.
I want to issue spares in advance to engineers without a service work order....Later on the spares will
get consumed or will get returned. How do I do it...and what is the Movement type to be used for
issuing and reversing........can any one help.
Still I have problem in back flushing. Suppose I made the indicator of backflush in creation of order,
then I completed technically, then the actual cost of material not updating, (Note I have not posted the
material in MB1A) what is the problem, pls tell me.
Did you confirm your maintenance order? Unless you confirm it (IW41) your actual cost will not be
updated. Backflushing is a tool so that during confirmation you will not anymore input your
materials. System will confirm your consumption base on the order (IW31) you have created.
I believe T-Code IW41 is used to confirm the operation and not for materials. When backflush
indicator is set in the order for the components reserved then MB1A need not be done and when we
say determine cost thru the main menu, the material cost should appear.
Actually IW41 works like CO11 (PP module), when you tick the backflush indicator in the order
creation the system will automatically copy those materials when you confirm it.
I feel in the same order when we want to calculate the labour charges involved in particular operations
we need to go thru IW41 and confirm the operations so that we can get the labour charges for the
personnal involved in that order.(this will be done by way of calculating the Activity types).
Your right material cost is automatically copied into the order thru IW31 but these costs are only
planned cost. Meaning no accounting documents is being created and no materials being consume to
the order only reservations.
If you want to have the actual cost reflected you have to go thru IW41 first.
"A" to "B". Tasklist "T3" has been used for several times in scheduling.
I try to use IA06, Goto T3 Header - and found Maintenance Strategy at Header was Gray. I
don't find this documentation in SAP Help.
Is it possible change Maintenance Strategy in Tasklist after created?
To change the strategy of a task list which has already been used, we should check the following
conditions.
Once the Task list has been created with one maintenance strategy it is not possible to change it to
another strategy type. You can delete the strategy provided you have not used it in maintenance items.
But in your case it is not possible.
You cannot change a strategy as you know, Copy the task list you want to change, then create the new
strategy on your new task list.
Then create a new maintenance item and allocation of the task list with the correct maintenance
strategy.
Then create a new maintenance plan and link maintenance item.
While creation of maintenance strategies if I am not using any calender, then system will use
which calender days shedule plans?
All above parameters are getting transpered to Strategy Maintenance Plan (Tran.code ip42) except
factory calender.
Fast Links:
Actually, we are in the process of trying to sort out repetative jobs from thousands of
notifications from last few years, which is by itself an arduous task. After that maybe we can
think of a way how to handle the process to reduce these jobs to make the system more efficient.
Anyone done something like this before in your Company?
By analysing all of your equipment's and having a clear mapping about the frequencies from your
task-lists, makes the process relatively simple. You can then group the same type of frequencies into
one Maint. Plan for example.
We operate a sleek mechanism to ensure all orders are produced only on the week they're due, using
IP30 - deadline monitoring (RISHTA20) as a scheduled job.
We customised the "Sort Code" used in the Maint.Plan, in a way that reflects the frequencies as
mention above. So the scheduled jobs are then created in exact accordance with those sort codes (i.e.
frequencies). The maint. planner only has to assign which "sort code" for new plans and the scheduled
job is doing the rest.
You should think only of a Notification as a polite request for a further action, like to create a maint.
order etc. For example in our company, we don't generate any notifications, as we see them as
additional handling for no great benefit. We always create orders direct from the scheduled job. These
orders then go to the maint. supervisor's "..workflow..", and they then distribute the orders at their
discretion However, if your organisation is huge with many divisions, then perhaps it makes sense to
use notification, but only you can decided.
I always tell our project team's... Always do what's necessary and not always what is possible...
Table JEST gives the system /user status associated with an order, but it doesnot give any
information about on which date a given status was set. I tried search infomation in table
CDHDR/CDPOS but no success.
He is correct. JCDS is the change document or version history of JEST which is the primary status
table.
Statuses are handled separately from the object in question since each object can have multiple
statuses and since statuses can be applicable to more than one object type. That means that the status
tables contain statuses for many different objects like equipment, work orders, functional locations,
sales orders, etc.
The status tables are based on object numbers which are a concatenation of the object type and the
table of that object. Order #816025 would be stored as "OR000000816025". Equipment 20701817
would be stored as "IE000000000020701817". Sales order item 10 of 5215 would be stored as
"VB0000005215000010".
Many "check" tables (like TJ02 and TJ03) also have text tables as you've mentioned. You can easily
find a text table for another table by going to "goto --> Text table" (not to mention that they're usually
suffixed with a "T" anyway).
Fast Links:
Have a SAP PM Problems? Show Equipments Characteristics in a List
SAP PM Question:
Try this.
Go to IH08
Execute
This will list all Equipments of a particular class having a particular Characteristic value.
or
Execute.
This takes you to another screen wherein all characteristics of the class selected on the first screen are
listed.