关于电话号码以及邮编等规则的配置
We can configure the rule and check rule here:
such as Singapore don't need to check postal code
China need 6 length postal code
etc...
SAP eCATT使用详解
具体图片请见附件eCATT_inDetail.rar
由于CATT工具在新的SAP release中,已经不是很适用,我做了一个文档来讲述eCATT的使用
包括:
- eCATT概览
- eCATT测试的system landscape:system container
- 测试用例的核心: test script
这里面会涉及到普通的测试命令编写以及用TCD SAPGUI方式录制事务进行测试。我们可以利用这种方式进行数据量不大的数据传输工作 - 可重用的测试基础: test data container
- 测试的组织工具: test configuration
由于时间仓促,难免有错误,而且如ABAP OBJECT和WEBDYNPRO这种不是很常用的测试想定并没涉及。
[收藏]Adding text to the SAP logon/login screen
Writing text to the SAP logon screen. This is very handy for identifying which SAP system the user is about to log onto, especially non production boxes. You can also warn them here of pending changes, updates or outages. Because it is up while they are typing in their user id and password, users can't claim they missed the system message.
SAP icons like the stop sign and warning signs can also be displayed.
Details can be found in OSS note #205487.
Here are the details :-
Go to Transaction SE61 and select the document 'General text' (selection via F4 help), and create a text with the name ZLOGIN_SCREEN_INFO in the language defined with profile parameter zcsa/system_language.
If the text does not exist in the system language, no output is made.
Note that there is space for 16 lines with 45 fixed-font characters each or for approximately 60 proportional space font characters on the logon screen.
Title lines (can be recognized by means of format keys starting with a 'U') are highlighted in the display.
You may also output icons at the beginning of lines by using an icon code (for example, @1D@ for the STOP icon). You can get a list of icon codes from Report RSTXICON. Pay attention to the codes with two '@' symbols displayed by the report. You cannot include text symbols. The 'include indicator' cannot be used for this function. SUBHINT here.
These can be used on system messages as well.
http://www.saptechies.com/adding-text-to-the-sap-logonlogin-screen/
Creating SPRO Display only
Creating SPRO Display only.
You might be asked to give SPRO display while implementing your SAP. Igenerally give these authoriztion to make it display only. Please test it.
| Object | Field | Value |
| S_PROJECT | PROJECT_ID | * |
| S_PROJECT | PROJ_CONF | * |
| S_RFC | ACTVT | 03 |
| S_RFC | RFC_NAME | * |
| S_RFC | RFC_TYPE | * |
| S_TABU_CLI | CLIIDMAINT | ' |
| S_TABU_DIS | ACTVT | 03 |
| S_TABU_DIS | DICBERCLS | * |
| S_TRANSPRT | TTYPE | Deactivate or remove PIEC and TASK |
| S_CODE | REMOVE | SPRO |
[收藏]What is WBS element?
2) What is the Tcode to get to that screen?
3) What is the need and pupose of WBS element?
4) Do we happen to work on Functional module during our implementaion project?
5) In what scenario/situation we will be working on WBS?
WBS is nothing but Work Breakdown Structure. It is mainly used in Project System (PS) module. Tcode : CJ20N
For any project defined we must have atleast one WBS. Within this WBS we can have networks. Networks are nothing but the series of activities. Material are used to perform the activities.
To explain in detail just consider one example:
Govt of india wants to have Roads to be build through out the india. So Project can be defined in sap as "Connectivity".
WBS can be roads within different states like Roads for Gujarat, Karnataka etc.. i.e. WBS Gujarat, WBS Karnataka etc.
We can define different networks for these WBS like Road Between Ahmedabad to Surat or Between Bangalore to Belgham.
For this network we can have many activities like Land selection, Land Preparation, Road Building, Final finishing etc etc.
Hemal's example was a good example. Project Systems comes into play only when the industry's business is based on projects like... Construction companies, Engineer to Order scenarios. You may not see anyone using PS module for retail business. As Hemal explained in that example, you have a main project which is broken down into WBS elements. You can use the TC CJ20N to create the project and the WBS elements. Each WBS may have mutiple Networks associated and each Network may have multiple Network Activities as explained in the example by Hemal.
On the Sales Order, if your client is implementing PS module, you may have to attach the Sales Order to the WBS element it belongs to. WBS element is nothing but a bucket where all the activities belonging to that particular part of the project are captured. In the example, WBS Gujurat will tell you how many Sales Orders were created for the Gujurat sector, howmuch was spent on raw materials, what's the currect stock ([roject stock) available. How many Production Orders have been confirmed and howmany of them are getting confrmed in the future. How many invoices have been generated or how much revenue has been generated for that particular sector. How many deliveries have been made, what deliverables are still not accomplished.
So as you can see, PS is the center stage for all the modules that are being implemented like FI/CO, SD, MM, PP in this example. You can have cost centers and work centers defined. You can also have profit centers assigned at the plant level and get reports on varius selection criteria.
In a complete cycle of PS, like in reality, you initiate a project, you confirm/release the WBS/activities as per requirement, you execute the project and you close it.
One cannot initiate an activity unless it has been released by the project manager. Everything is accountable here and every dime is counted and at the end you know howmuch did you spend or make on each sector (WBS). Dont get confused with the term sector here... I am using it just for the explaination purposes.
In one typical example, the company I was working with until not too long ago, had Deliveries from the Project (TC: CNS0). We never used VL01N. We used CNS0 to create a delivery and then used VL02N for confirming the picking quantity for the already created delivery document.
I hope this should help you at least a bit. I'm not a PS consultant so I may not know a whole lot but trying going to CJ20N and you will see a lot yourself.
PS concultants are one of the highest paid consultants. Their supply is less and so is the demand. They are expected to understand real world business processes very well and they are generally the center stage of a project.
[收藏]SAP对TCODE权限检查过程
1. The program checks whether the transaction code exists in table TSTC.
2. The program checks whether the transaction code is locked by the administrator (transaction code SM01).
3. The program checks whether the user has the authority to start the transaction. Authorization object S_TCODE (transaction start) contains the authorization field TCD (transaction code). The user must have the appropriate authorization for the transaction code to be started (for example, FK01, Create Vendor).
4. The program checks whether an authorization object is assigned to the transaction code. If this is the case, the program checks whether the user has an authorization for this authorization object. The transaction code/authorization object assignment is stored in table TSTCA.
Note: An SAP program controls steps 1 through 4. It displays an automatic message to the user if an authorization attempt fails in the step.
5. The system performs authorization checks in the ABAP program using the ABAP statement AUTHORITY-CHECK.
http://searchsap.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid21_gci1240912_tax299335,00.html?bucket=ETA&topic=299335
Retrive auth object related to a specific TCODE
As far as now, i got three ways:
1. TCODE: ST01, trace the authorization
2. TCODE: SU24
3. From the table USOBT(Relation transaction > authorization object)
http://sap.ittoolbox.com/groups/technical-functional/sap-acct/finding-authorization-object-for-a-fico-tcode-1518938?cv=expanded
SAP汽车行业package配置常用TCODE(VMS部分)
Customizing for VMS
Transaction Code | Description |
Number Ranges | |
| OVELO2 | Define number ranges for internal vehicle number |
| OVELO3 | Define number ranges for action control determination |
| OVELO8 | Define number ranges for determination of configuration change profile |
Other | |
| OVELO19 | Define VMS roles |
OVELO7 | Assign own dialog messages |
Vehicle Search Area | |
| OVELO27 | Define sharing levels |
| OVELO18 | Define vehicle search areas |
OVELOVSRINIT | Initialize category maintenance |
| OVELO20 | Define vehicle categories |
| OVELO21 | Assign roles and vehicle categories |
Control | |
| OVELO1 | Define actions |
OVELO12 | Define vehicle status |
OVELO5 | Define external status |
OVELO13 | Determine availability |
OVELOL | Define vehicle locations |
OVELO14 | Define vehicle usage |
| OVELO11 | Define action controls and actions matrices |
Message Determination | |
OVELOM04 | Define field catalog for messages |
OVELOM01 | Maintain condition tables |
OVELOM11 | Define access sequences |
OVELOM21 | Define message types |
OVELOM31 | Define message determination schemas |
OVELOM41 | Assign message determination schema to plant |
Enhancements | |
OVELO6 | Enter technical data for actions |
| OVELO4 | Define additional data for vehicle |
Master Data
Transaction Code | Description |
Material Master Record | |
| MM01, MM02 | Create and change material master records for vehicle models |
Classification System, Variant Configuration | |
| CT04 | Create and change vehicle characteristics with characteristic values |
| CL04 | Create, change classes |
| CU50 and CL30N | Group characteristics on interface |
| CU41, CU42 | Create, change configuration profiles |
| CU01, CU02 | Create, change relationship and object dependencies |
Pricing | |
| VK11, VK12 | Create and change variant conditions in SD |
| MEK1, MEK2 | Create and change variant conditions in MM |
IPC (Internet Pricing and Configuration) | |
| CU31, CU32 | Create, change knowledge-base object |
| CU34, CU35 | Create, change run-time version |
Business Partner | |
| XK01, XK02 | Create, change vendor (creditor) centrally |
| XD01, XD02 | Create, change customer (debtor) centrally |
VMS Roles | |
| VELORM | Assign vehicle models to VMS role |
| VELORO | Assign organizational data to VMS role |
| VELORU | Assign VMS roles to user |
Vehicle Management System
Transaction Code | Description |
| VELO | Vehicle Manager |
| VELOM | Status monitor for the vehicle IDoc |
Basic Data | |
| VELOS | Define action control determination |
| VELOC | Define sales campaigns |
| VELOP | Define configuration change profiles |
| VELOPR | Analyze configuration change profiles |
| VELOOBJC | Add object characteristics to a configuration |
VELOK | Define message condition records |
| VELOBWC | Assign class characteristics to BW characteristics |
Reports for Administrators | |
| VELOV | Define variants for actions in batch |
| VELOB | Perform actions in a batch |
| VELOR | Update reservation queue |
| VELOE | Correct incorrect vehicle statuses |
| VELOP01 | Log: status monitor for vehicle IDoc (not in menu) |
| VELOP02 | Log: update reservation queue (not in menu) |
| VELOP03 | Log: action execution in Vehicle Manager (not in menu) |
SLG2 | Application log: delete old logs (not in menu) |
SAP标准培训列表
虽然这玩意到处都是,但是还是保存自己这里一份。
主要是想学相关模块的时候,知道应该看哪个标准培训文档。至于怎么搞到,那就是个人的问题了,找SAP的同志,或者网上职业卖的。
AC010 mySAP Financials Overview to Financial Accounting and Reporting
AC020 mySAP Financials Investment Management
AC030 mySAP Financials Treasury Overview
AC040 mySAP Financials Cost Management and Controlling
AC200 mySAP Financials Financial Accounting Customizing I
AC201 mySAP Financials Payment and Dunning Program
AC205 mySAP Financials Financial Closing
AC220 mySAP Financials Special Purpose Ledger
AC240 mySAP Financials EC-CS: Consilidation Functions
AC260 mySAP Financials Special Financial Functionality
AC270 mySAP Financials Travel Management - Travel Expenses
AC275 mySAP Financials Travel Management - Travel Planning
AC280 mySAP Financials Reporting in FI
AC290 mySAP Financials Real Estate Management
AC295 mySAP Financials Real Estate Management
AC305 mySAP Financials Asset Accounting
AC350 mySAP Financials System Configuration for IM
AC410 mySAP Financials Cost Center Accounting
AC412 mySAP Financials Cost Center Accounting Ext. Functions
AC415 mySAP Financials Internal Orders
AC420 mySAP Financials Activity-Based Costing
AC505 mySAP Financials Product Cost Planning
AC510 mySAP Financials Cost Object Controlling for Products
AC515 mySAP Financials Cost Object Contr. for Sales Orders
AC530 mySAP Financials Actual Costing/Material Ledger
AC605 mySAP Financials Profitability Analysis
AC610 mySAP Financials Profit Center Accounting
AC615 mySAP Financials EIS 1: Reporting
AC620 mySAP Financials EIS 2: Setup System
AC625 mySAP Financials EIS 3: Business Planning
AC650 mySAP Financials Transfer Prices
AC660 mySAP Financials EC-CS: Consolidation Functions
AC665 mySAP Financials EC-CS: Integrated Consolidation
AC690 mySAP Financials Schedule Manager
AC700 mySAP Financials Funds Management: processes,organization and configuration
AC720 mySAP Financials Funds and Position Management
AC805 mySAP Financials Cash Management
AC810 mySAP Financials Treasury Management Basics
AC815 mySAP Financials Loans
AC816 mySAP Financials Loans CFM
AC820 mySAP Financials Securities Management
AC825 mySAP Financials Money Market CFM
AC830 mySAP Financials Market Risk Management
AC900 mySAP Financials R/3 for auditors
ADM100 NetWeaver (mySAP Techno mySAP Technology Administration
ADM102 NetWeaver (mySAP Techno SAP Web AS Administration II
ADM105 NetWeaver (mySAP Techno Advanced SAP System Administration
ADM106 NetWeaver (mySAP Techno Advanced SAP System Monitoring
ADM110 NetWeaver SAP R/3 Enterprise Installation
ADM130 NetWeaver (mySAP Techno E-Commerce Administration
ADM325 NetWeaver (mySAP Techno Software Logistics
ADM326 NetWeaver Enterprise Upgrade
ADM355 NetWeaver (mySAP Techno APO System Administration
ADM505 NetWeaver Database Administration Oracle
ADM515 NetWeaver Database Administration SAP DB
ADM520 NetWeaver (mySAP Techno Database Administration MS SQL Server
ADM535 NetWeaver (mySAP Techno Database Administration DB2 UDB
ADM555 NetWeaver (mySAP Techno LiveCacheAdministration
ADM940 NetWeaver Authorization Concept
ADM950 NetWeaver Secure SAP System Management
ADM960 NetWeaver (mySAP Techno Security in SAP System Environments
AP010 mySAP SCM SAP APO Overview
AP205 mySAP SCM Basic Data Integration
AP210 mySAP SCM Demand Planning
AP215 mySAP SCM Supply Network Planning
AP220 mySAP SCM Production Planning/Detailed Scheduling
AP230 mySAP SCM Global ATP
ASAP90 ASAP Project Management & Leadership
ASAP91 NetWeaver (mySAP Techno SAP Implementation
ASAP92 NetWeaver (mySAP Techno Tools in Detail
ASAP93 Global SAP Implementation
ASAP94 NetWeaver (mySAP Techno Advanced Customizing Tools
BC095 NetWeaver (mySAP Techno Business Integration Technology
BC305 NetWeaver (mySAP Techno Advanced R/3 System Administration
BC310 NetWeaver (mySAP Techno TCC: Windows NT/Oracle
BC314 NetWeaver (mySAP Techno TCC: Windows NT/MS SQL Server
BC315 NetWeaver (mySAP Techno Workload Analysis
BC317 NetWeaver (mySAP Techno 4.6C TCC (NT/UNIX/DB2)
BC325 NetWeaver (mySAP Techno Software Logistics
BC326 NetWeaver (mySAP Techno R/3 Upgrade
BC330 NetWeaver (mySAP Techno E-Commerce Technical Admin.
BC350 mySAP Enterprise Portal TCC (Workplace)
BC355 NetWeaver (mySAP Techno APO System Administration
BC360 NetWeaver (mySAP Techno TCC : Unix (Linux)/Oracle
BC361 NetWeaver (mySAP Techno 4.6C TCC (Unix/Informix)
BC370 NetWeaver (mySAP Techno 4.6C TCC (IBM/400)
BC390 NetWeaver (mySAP Techno 4.6C TCC (IBM/390)
BC400 NetWeaver (mySAP Techno ABAP Workbench: Foundation
BC401 NetWeaver (mySAP Techno ABAP Objects
BC402 NetWeaver (mySAP Techno ABAP Programming Technique
BC404 NetWeaver (mySAP Techno ABAP Objects: introduction to OOP
BC405 NetWeaver (mySAP Techno Techniques of List Processing
BC406 NetWeaver (mySAP Techno Advanced Techniques of List Processing
BC407 NetWeaver (mySAP Techno Reporting with the InfoSet Query & QuickViewer
BC410 NetWeaver (mySAP Techno Programming User Dialogs
BC412 NetWeaver (mySAP Techno EnjoySAP Controls
BC414 NetWeaver (mySAP Techno Programming Database Updates
BC415 NetWeaver (mySAP Techno Remote Function Calls in ABAP
BC417 NetWeaver (mySAP Techno BAPI Dev f. Accessing SAP
BC420 NetWeaver (mySAP Techno Data Transfer
BC425 NetWeaver (mySAP Techno Enhancements and Modification
BC430 NetWeaver (mySAP Techno ABAP Dictionary
BC440 NetWeaver Developing Internet Application Components
BC460 NetWeaver (mySAP Techno SAPscript
BC470 NetWeaver (mySAP Techno Form Printing with SAPSmart Forms
BC490 NetWeaver (mySAP Techno ABAP Performance Tuning
BC505 NetWeaver (mySAP Techno Database Administration Oracle
BC511 NetWeaver Database Administration Informix Dynamic Server UNIX/NT
BC515 NetWeaver (mySAP Techno Database Administration SAPDB
BC520 NetWeaver (mySAP Techno Database Administration MS SQL Server
BC525 NetWeaver (mySAP Techno Database Administration DB2/400
BC535 NetWeaver (mySAP Techno Database Administration DB2 UDB
BC555 NetWeaver (mySAP Techno Live CacheAdministration
BC600 NetWeaver (mySAP Techno Workflow - Introduction
BC601 NetWeaver (mySAP Techno Workflow - Build and Use
BC610 NetWeaver (mySAP Techno Workflow - Programming
BC615 NetWeaver (mySAP Techno SAP ArchiveLink
BC619 NetWeaver (mySAP Techno ALE Technology
BC620 NetWeaver (mySAP Techno SAP IDoc Interface Technology
BC621 NetWeaver (mySAP Techno SAP IDoc Interface Development
BC635 NetWeaver (mySAP Techno SAP Business Connector
BC660 NetWeaver (mySAP Techno Data Archiving
BC670 NetWeaver (mySAP Techno ADK Retrieval Programming
BC680 NetWeaver (mySAP Techno Data Retention Tool (DART)
BC940 R/3 Security Guide
BIT100 NetWeaver (mySAP Techno Business Integration Technology
BIT300 NetWeaver (mySAP Techno ALE Technology
BIT320 NetWeaver (mySAP Techno Integration Technology EDI
BIT350 NetWeaver (mySAP Techno ALE Enhancement
BIT450 NetWeaver SAP Exchange Infrastructure Development
BIT525 NetWeaver (mySAP Techno Programming with BAPI in VB
BIT526 NetWeaver (mySAP Techno Programming with BAPI in Java
BIT528 NetWeaver (mySAP Techno .NET Connector Programming
BIT530 NetWeaver (mySAP Techno SAP Business Connector Introduction
BIT531 NetWeaver (mySAP Techno SAP Business Connector Integration
BIT600 NetWeaver (mySAP Techno SAP WebFlow
BIT601 NetWeaver (mySAP Techno SAP WebFlow - Build and Use
BIT603 NetWeaver (mySAP Techno Definition&Web Szenarios Available
BIT610 NetWeaver (mySAP Techno SAP WebFlow - Programming
BIT614 NetWeaver (mySAP Techno SAP Document Management - Overview
BIT615 NetWeaver (mySAP Techno SAP ArchiveLink
BIT660 NetWeaver Data Archiving
BIT670 NetWeaver Programing Display Functions
BW200 mySAP BI SAP BW - Overview
BW205 mySAP BI SAP BW - Reporting
BW207 mySAP BI SAP BW - Reporting Management
BW209 mySAP BI SAP BW - Web Reporting
BW210 mySAP BI SAP BW Warehouse Management
BW220 mySAP BI SAP BW SAP R/3 Extraction
BW257 mySAP BI BW ConfigSplit into BW205/207
BW305 mySAP BI SAP BW - Reporting & Analysis
BW310 mySAP BI SAP BW Data Warehousing
BW315 mySAP BI SAP BW Reporting Management
BW330 mySAP BI SAP BW BW Modelling
BW340 mySAP BI SAP BW Data Staging
BW350 mySAP BI SAP BW Components Extraction
BW360 mySAP BI SAP BW BW Performance & Admin.
BW365 mySAP BI SAP BW BW Authorization
CA080 mySAP PLM Project Management
CA210 mySAP EDI Interface
CA410 Data Migration from R/2 to R/3
CA500 mySAP HR Cross Application Time Sheet
CA550 mySAP Financials Inflation Accounting
CA610 NetWeaver (mySAP Techno CATT
CA705 mySAP Financials Report Painter/Report Writer Basics
CA710 mySAP Financials Advanced Functions of the Report Writer
CA800 mySAP PLM Project Management - Structures
CA820 mySAP PLM Project Management - Logistics
CA830 mySAP PLM Project Management - Accounting
CA840 mySAP PLM Project Management - Reporting
CA925 NetWeaver (mySAP Techno BAPI-based development in VB
CA926 NetWeaver (mySAP Techno BAPI-based development in java
CA940 NetWeaver (mySAP Techno SAP R/3 Authorization Concept
CA960 Customizing and Transport Management
CA990 mySAP Financials Euro conversion
CFM030 mySAP Financials CFM - Overview
CFM810 mySAP Financials Basic Functions in CFM
CFM820 mySAP Financials Securities Management
CFM825 mySAP Financials Money Market CFM
CFM835 mySAP Financials Credit Risk Analyzer
CFM840 mySAP Financials In-House Cash
CR010 mySAP CRM CRM Overview
CR100 mySAP CRM CRM Basics
CR200 mySAP CRM Mobile Sales
CR205 mySAP CRM Mobile Sales & Mobile Service
CR210 mySAP CRM Mobile Services
CR215 mySAP CRM Mobile Sales Basics
CR220 mySAP CRM Internet Pricing & Configurator
CR225 mySAP CRM SAP IPC Basics
CR235 mySAP CRM CRM Pricing
CR245 mySAP CRM SAP IPC Product Configuration
CR310 mySAP CRM Mobile Application Studio: Basics
CR320 mySAP CRM Mobile Appl. Studio: Advanced
CR400 mySAP CRM Interaction Center in CRM
CR500 mySAP CRM CRM Middleware Overview
CR510 Mobile Sales / Mobile Service CRM Middleware
CR540 mySAP CRM CRM MW for Mobile Scenarios
CR550 mySAP CRM Enhancing the CRM Middleware
CR590 mySAP CRM BDT - Business Data Toolset
CR600 mySAP CRM Marketing Planning&Campaign Mngmt.
CR700 mySAP CRM CRM Service
CR750 mySAP CRM Tele Sales & Tele Marketing
CR800 mySAP CRM CRM Internet Sales
CR850 mySAP CRM Internet Sales R/3 Edition
CR900 mySAP CRM Analytical CRM
CT205 mySAP SRM Requisite Catalog - Install
CT210 mySAP SRM Requisite Catalog- Config.& Maint.
D20BW mySAP BI BW Delta 2.0
D20EPR mySAP SRM EBP 1.0 to 2.0 Delta Workshop
D30BW mySAP BI SAP BW Delta 3.0
D30EPR mySAP SRM EBP Delta 1.0 to 3.0
D346AA mySAP Financials Delta 3.x - 4.6C in Asset Accounting
D346AW NetWeaver (mySAP Techno ABAP Workbench Delta Course 3.x to 4.6C
D346BC NetWeaver (mySAP Techno Basis Changes in 4.6 from 3.x
D346CS mySAP PLM CS 3.x to 4.6 Delta
D346FI mySAP Financials Delta 3.x - 4.6C Financial Accounting
D346LE mySAP SCM 3.x to 4.6 Delta for Logistics Execution
D346MM mySAP SCM 3.x to 4.6C Materials Management
D346OM mySAP Financials Delta 3.x/4.6 Overhead Cost Controlling
D346PA mySAP Financials Delta 3.x/4.6 Profitability Management
D346PC mySAP Financials Delta 3.x/4.6 Product Cost Controlling
D346PD mySAP PLM Delta 3.1 - 4.6 in PLM
D346PI mySAP SCM Prozess Manufacturing Delta 3.x for 4.6
D346PM mySAP PLM Delta 3.1 - 4.6 Plant Maintenance
D346PP mySAP SCM Delta Production Orders 3.x to 4.6B
D346PS mySAP PLM Delta Project System
D346SD mySAP SCM 3.x to 4.6 SD Delta
D346WF NetWeaver (mySAP Techno Delta SAP Business Workflow 3.x to 4.6
D446AW NetWeaver (mySAP Techno Delta ABAP Workbench 4.0 to 4.6B
D446BC NetWeaver (mySAP Techno Delta R/3 Basis Administration 4.0-4.6B
D446PM mySAP PLM Delta 4.0 - 4.6C Plant Maintenance
D45QM mySAP PLM Delta 4.5 in QM
D46CHR mySAP HR Delta 4.6C in Human Resources
D46EHR mySAP HR Delta SAP R/3 Enterprise in HR
D46HR mySAP HR Human Resources 4.6
D46PS mySAP PLM Delta 4.6 PS
D46QM mySAP PLM Delta 4.5 - 4.6C in QM
D47PM mySAP PLM Delta SAP R/3 Enterprise in PM/CS
D47PS mySAP PLM Delta PS 4.6-Enterprise
D47QM mySAP PLM Delta SAP Enterprise QM
D620AW NetWeaver (mySAP Techno Delta AW 4.6C-WebAS 6.20
DERPAA mySAP Financials Delta SAP R/3 Enterprise AA
DERPFA mySAP SCM Delta SAP R/3 Enterprise in PO
DERPFI mySAP Financials Delta SAP R/3 Enterprise in FI
DERPHR mySAP HR Delta SAP R/3 Enterprise in HR
DERPLD mySAP PLM Delta SAP R/3 Enterprise LDM
DERPMM mySAP SCM Delta SAP R/3 Enterprise in MM
DERPOM mySAP Financials Delta SAP R/3 Enterprise OM
DERPPA mySAP Financials Delta SAP R/3 Enterprise in PA
DERPPC mySAP Financials Delta SAP R/3 Enterprise in PC
DERPPL mySAP SCM Delta SAP R/3 Enterprise in PP
DERPPM mySAP PLM Delta SAP R/3 Enterprise in PM/CS
DERPPS mySAP PLM Delta SAP R/3 Enterprise in PS
DERPQM mySAP PLM Delta SAP R/3 Enterprise in QM
DERPRM mySAP SCM Delta SAP R/3 Enterprise in RM
DERPSP mySAP SCM Delta SAP R/3 Enterprise in SP
EP100 mySAP Enterprise Portal Managing Enterprise Portal Content
EP300 mySAP Enterprise Portal Knowledge Management
EPR210 mySAP SRM Enterprise Buyer Professional
EPR240 mySAP SRM Catalog & Content Management
FS100 mySAP Financials CFM - Overview
FS110 mySAP Financials Basic Functions CFM
FS111 mySAP Financials Securities
FS112 mySAP Financials Money Market CFM
FS120 mySAP Financials In-House Cash CFM
FS200 mySAP Financial Services mySAP Banking Overview
FS210 mySAP Financials Loans
FS220 mySAP Financials Credit Risk Analyzer
FS230 mySAP Financial Services BCA
FS240 mySAP Financial Services Profit Analyzer
FS250 mySAP Financial Services Market Risk Analyzer
FS251 mySAP Financial Services Asset Liability Management
FS310 mySAP Financial FS-CD Collections and Disbursements
HR050 mySAP HR Human Resources Essentials
HR051 mySAP HR Human Resources Essentials 1
HR052 mySAP HR Human Resources Essentials 2
HR053 mySAP HR Human Resources Essentials 3
HR100 mySAP HR Essentials of Human Resources
HR110 mySAP HR Essentials of Payroll
HR120 mySAP HR Essentials of Personnel Development
HR250 mySAP HR Employee Self-Service
HR305 mySAP HR Configuration of Master Data
HR306 mySAP HR Configuration of Time Recording
HR307 mySAP HR Configuration of HR System
HR308 mySAP HR Time Managers Workplace
HR310 mySAP HR Time Evaluation With Clock Times
HR311 mySAP HR Time Evaluation Without Clock Times
HR315 mySAP HR Recruitment
HR325 mySAP HR Benefits Administration
HR350 mySAP HR Programming in HR
HR390 mySAP HR Introduction to Payroll
HR400 mySAP HR Payroll Configuration
HR490 mySAP HR Incentive Wages
HR505 mySAP HR Organizational Management
HR506 mySAP HR Advanced Organizational Management
HR510 mySAP HR Personnel Development
HR515 mySAP HR Training and Event Management
HR520 mySAP HR Shift Planning
HR530 mySAP HR Technical Topics in HR
HR540 mySAP HR Compensation Management
HR580 mySAP HR Reporting in Human Resources
HR940 mySAP HR Authorizations in HR
IAU210 mySAP Automotive SAP Automotive: Supplier
IAU240 mySAP Automotive mySAP Automotive: JIT Processes
IBA010 SAP Banking Overview
IBA315 Market Risk Analyzer for Banks
IBA325 Default Risk Limitation
IBA815 mySAP Financials Loans
IRT100 mySAP Retail mySAP Retail Process Overview
IRT310 mySAP Retail Retail Master Data
IRT320 mySAP Retail Pricing and Promotions
IRT330 mySAP Retail Requirements Planning/ Purchasing
IRT340 mySAP Retail Supply Chain Execution
IRT350 mySAP Retail Merchandise & Assortment Planning
IRT360 mySAP Retail Store Connection
IRT370 mySAP Retail SAP Retail Store
ITS050 NetWeaver (mySAP Techno SAP ITS: Foundations
ITS070 NetWeaver (mySAP Techno SAP ITS: Administration
ITS100 NetWeaver (mySAP Techno Developing EasyWebTransactions
ITS110 NetWeaver (mySAP Techno SAP ITS: Flow Logic
ITS150 NetWeaver (mySAP Techno SAP ITS: Corporate Identity Design
IUT110 mySAP Utilities Introduction to IS-U/CCS
IUT210 mySAP Utilities Master Data and Basic Functions
IUT220 mySAP Utilities Device Management
IUT221 mySAP Utilities Work Management
IUT225 mySAP Utilities Energy Data Management
IUT230 mySAP Utilities Billing and Invoicing
IUT235 mySAP Utilities Real-Time-Pricing
IUT240 mySAP Utilities Contract Accounts Receivable and Payable
IUT250 mySAP Utilities Customer Service
IUT280 mySAP Utilities Print-Workbench
JA100 NetWeaver (mySAP Techno Java Start-up Kit
JA200 NetWeaver (mySAP Techno Java GUI Kit
LO020 mySAP SCM Processes in Procurement
LO050 mySAP SCM Discrete Manufacturing (Overview)
LO060 mySAP SCM Process Manufacturing
LO090 mySAP PLM Product Lifecycle Management
LO100 mySAP PLM Plant Maintenance
LO110 mySAP PLM Customer Service
LO140 mySAP SCM Processes in Logistics Execution
LO150 mySAP SCM Processes in Sales & Distribution
LO170 mySAP PLM Quality Management
LO205 mySAP PLM Basic Data Part 1
LO206 mySAP PLM Basic Data Part 2
LO210 mySAP SCM Production Planning
LO215 mySAP SCM Production Orders
LO225 mySAP SCM Repetitive Manufacturing
LO230 mySAP SCM Capacity Planning
LO235 mySAP SCM KANBAN
LO275 mySAP BI Tech. Aspects in LIS (PPIS)
LO305 mySAP PLM Basic Data for Process Manufacturing
LO310 mySAP SCM Detail Functions of Process Manufacturing
LO315 mySAP SCM Process Management
LO510 mySAP SCM Inventory Management
LO511 mySAP SCM Physical Inventory
LO515 mySAP SCM Invoice Verification
LO520 mySAP SCM Purchasing Details & Optimization
LO521 mySAP SCM Pricing in Purchasing SAP R/3
LO525 mySAP SCM Cons.-Based Planning
LO530 mySAP SCM Basic Proc. in Warehouse Mgt
LO531 mySAP SCM Additional Topics in Warehouse Mgt
LO540 mySAP SCM Procurement of External Services
LO550 mySAP SCM Cross-Functional Customizing in MM
LO555 mySAP BI Tech. Aspects LIS (PURCHIS/INVCO)
LO605 mySAP SCM Sales
LO610 mySAP SCM Delivery Processes
LO611 mySAP SCM Transportation
LO615 mySAP SCM Billing
LO620 mySAP SCM Pricing in SD
LO630 mySAP BI Tech. Aspects in LIS (SIS)
LO640 mySAP SCM Foreign Trade
LO645 mySAP SCM Credit and Receivables Risk Mgmt.
LO650 mySAP SCM Cross Functional Customizing in SD
LO705 mySAP PLM Quality Inspections
LO710 mySAP PLM Quality Notifications
LO715 mySAP PLM QM in Procurement
LO720 mySAP PLM QM in Discrete Manufacturing
LO721 mySAP PLM QM in the Process Industry
LO725 mySAP PLM QM in Sales / Quality Certificates
LO750 mySAP PLM QM Organization & Configuration
LO805 mySAP PLM Structuring and Managing Technical Objects
LO810 mySAP PLM Preventive Maintenance and Service
LO815 mySAP PLM Maintenance Processing: Operational Functions
LO816 mySAP PLM Maintenance Processing: Controlling
LO820 mySAP PLM Work Clearance Management
LO830 mySAP PLM Service Contracts
LO835 mySAP PLM Service Processing
LO836 mySAP PLM Service Processing: Controlling
LO840 mySAP PLM Customer Interaction Center
LO925 mySAP SCM Cross Application Business Processes in SD & MM
LO930 mySAP BI LIS Reporting
LO935 mySAP BI Flexible Planing
LO940 mySAP BI Advanced LIS Configuration
LO955 mySAP SCM Batch Management
LO975 mySAP PLM Document Management System
LO980 mySAP PLM Engineering Change Management
LO985 mySAP PLM Classification
LO990 mySAP PLM Variant Configuration Part 1
LO991 mySAP PLM Variant Configuration Part 2
NET050 NetWeaver (mySAP Techno Developing Web Applications: Fundamentals
NET100 NetWeaver (mySAP Techno SAP ITS: Developing Screen-based IACs
NET200 NetWeaver (mySAP Techno SAP Web AS: Developing Web Applications
PLM100 mySAP PLM Life-Cycle Data Management
PLM110 mySAP PLM Basic Data Part 1
PLM111 mySAP PLM Basic Data Part 2
PLM112 mySAP PLM Customizing Basic Data
PLM115 mySAP PLM Basic Data for Process Manufacturing
PLM120 mySAP PLM Document Management System
PLM130 mySAP PLM Classification
PLM140 mySAP PLM Variant Configuration Part 1
PLM143 mySAP PLM Variant Configuration Part 2
PLM146 mySAP PLM Variant Configuration Part 3
PLM150 mySAP PLM Change & Configuration Management
PLM200 mySAP PLM Project Management
PLM210 mySAP PLM Project Management - Structures
PLM220 mySAP PLM Project Management - Logistics
PLM230 mySAP PLM Network Controlled Project Accounting
PLM235 mySAP PLM WBS Controlled Project Accounting
PLM240 mySAP PLM Project Management - Reporting
PLM300 mySAP PLM Plant Maintenance
PLM301 mySAP PLM Customer Service
PLM305 mySAP PLM Structuring and Managing Technical Objects
PLM310 mySAP PLM Preventive Maintenance and Service
PLM315 mySAP PLM Maintenance Processing: Operational Functions
PLM316 mySAP PLM Maintenance Processing: Controlling
PLM320 mySAP PLM Work Clearance Management
PLM330 Service Contracts
PLM400 mySAP PLM Quality Management
PLM405 mySAP PLM Quality Inspections
PLM410 mySAP PLM Quality Notifications
PLM415 mySAP PLM QM in Procurement
PLM420 mySAP PLM QM in Discrete Manufacturing
PLM421 mySAP PLM QM in the Process Industry
PLM425 mySAP PLM QM in Sales / Quality Certificates
SAP01 mySAP Solution Overview mySAP.com Overview
SAP20 mySAP Solution Overview mySAP.com Application Fundamentals
SAP50 NetWeaver (mySAP Techno mySAP.com Technical Fundamentals
SAPBI mySAP BI mySAP BI Overview
SAPCRM mySAP CRM mySAP CRM Solution Overview
SAPEP mySAP Enterprise Portal mySAP Enterprise Portal Fund.
SAPEPR mySAP SRM mySAP E-Proc. Solution Overview
SAPFIN mySAP Financials mySAP Financials Solution Overview
SAPHR mySAP HR mySAP Human Resources Solution Overview
SAPPLM mySAP PLM mySAP PLM Solution Overview
SAPSCM mySAP SCM Supply Chain Management Overview
SAPSRM mySAP SRM mySAP SRM Overview
SAPTEC NetWeaver (mySAP Techno Application Platform Fundamentals
SCM200 mySAP SCM Supply Chain Planning Overview
SCM210 mySAP SCM Core Interface APO
SCM220 mySAP SCM Demand Planning
SCM230 mySAP SCM Supply Network Planning
SCM240 mySAP SCM Production Planning Part 1
SCM242 mySAP SCM Prod. Planning Part 2 (APO-PP/DS)
SCM244 mySAP SCM Prod. Planning Part 2 (R/3-MRP)
SCM300 mySAP SCM Supply Chain Manufacturing Overview
SCM310 mySAP SCM Production Orders
SCM320 mySAP SCM Repetitive Manufacturing
SCM340 mySAP SCM Process Manufacturing
SCM350 mySAP SCM KANBAN
SCM360 mySAP SCM Capacity Planning
SCM500 mySAP SCM Processes in Procurement
SCM510 mySAP SCM Inventory Management and Physical Inventory
SCM515 mySAP SCM Invoice Verification
SCM520 mySAP SCM Purchasing
SCM521 mySAP SCM Pricing in Purchasing SAP R/3
SCM525 mySAP SCM Cons.-Based Planning
SCM540 mySAP SCM Procurement of Services
SCM550 mySAP SCM Cross-functional Customizing in MM
SCM560 mySAP SCM Direct Procurement with SAP APO
SCM600 mySAP SCM Processes in Sales and Distribution
SCM601 mySAP SCM Processes in Logistics Execution
SCM605 mySAP SCM Sales
SCM610 mySAP SCM Delivery Processes
SCM612 mySAP SCM Transp.-pl./Vehicle Scheduling
SCM615 mySAP SCM Billing
SCM620 mySAP SCM Pricing in SD
SCM630 mySAP SCM Warehouse Management
SCM631 mySAP SCM Additional Topics in Warehouse Mgt
SCM645 mySAP SCM Credit and Receivables Risk Mgmt.
SCM650 mySAP SCM Cross Functional Customizing in SD
SCM660 mySAP SCM Handling Unit Management
SCM670 Global Available-to-Promise(Global ATP)
SCM680 Cross-application Processes in MM and SD
SCM920 mySAP SCM Customizing Production Orders
SCM940 mySAP SCM Customizing Capacity Planning
SEM010 mySAP Financials Strategic Enterprise Management
SEM200 mySAP Financials Business Warehouse for SEM
SEM210 mySAP Financials Business Planning and Simulation
SEM220 mySAP Financials Corporate Performance Monitor
SEM230 mySAP Financials Business Consolidation
SEM240 mySAP Financials Management Consolidation (Cons. Engine)
SRM200 mySAP SRM Enterprise Buyer Overview
SRM210 mySAP SRM Enterprise Buyer Configuration
SRM220 mySAP SRM Analytical EBP
SRM230 mySAP SRM Delta EBP 2.0 to 3.5
SRM240 mySAP SRM Catalog & Content Management
根据return code判断SAP服务器连接问题
http://happyland.itpub.net/post/4163/101449
用gui连接SAP服务器报错又很多种情况,首先是client中的sap gui的配置要正确,如host文件和service文件的内容、服务器的ip地址或主机名、系统编号等。
gui连接SAP服务器时,如果连接不上,它会在屏幕上报错,根据这些信息,我们可以判断是什么地方有问题。
Return Code为 -3,检查service文件,在安装sap gui之后service文件的大小会变大,大概从6K增加到10K左右。如果service 文件大小没有异常,则最好的办法是从可以连接的PC机拷贝service文件。
Return Code为-10,要检查SAP服务器的状态,这是SAP服务器中没有启动服务的情况。
Return Code为 -12,表示网络有问题,一般情况下是防火墙的问题。
Return Code为-17,这是SAP服务器宕机的情况,要查Log。
[ZT]Usefule tcode for Basis
CCMS MENU (Transaction SRZL)
================================
Control Monitoring
------------------
RZ02 System Monitor
AL01 SAP Alert Monitor
RZ01 Job Scheduling Monitor
RZ20 CCMS Alert Monitor (v4)
RZ03 Presentation, Control SAP Instances
SM66 Systemwide Work Process Overview
STUN Menu Performance Monitor
Configuration
------------------
RZ04 Maintain SAP Instances
SM63 Display/Maintain Operating Mode Sets
RZ10 Profile Maintainence
SMLG Maintain Logon Group
RZ06 Alerts Thresholds Maintenance
RZ21 Customize CCMS Alert Monitor
SM69 Maintain External OS Commands
DB Administration
------------------
DB13 Database Administration Calendar
DB12 Overview Backup Protocols
DB14 Show SAPDBA Action Logs
DB20 Maintain Statistics
DB21 Maintenance control table DBSTATC
DB16 DB system check (trigger/browse)
DB17 DB system check (configure)
DB15 CCMS - Document archiving
Spool
------------------
SP01 Output Controller
SPAD Spool Administration
SE73 SAPscript font maintenance (revised)
SP11 TemSe directory
SP12 TemSe Administration
Jobs
------------------
SM36 Define Background Job
SM37 Background Job Overview
SM62 Maintain Events
SM64 Release of an Event
SM65 Background Processing Analysis Tool
SM61 Background Objects
SM39 Job Analysis
SM49 Execute external OS commands
ADMINISTRATION MENU (Transaction S002)
=========================================
Administration
------------------
SM02 System Messages
SM01 TCODE Maintainence
SICK Installation Check
SM59 RFC Destinations (Display/Maintain)
SM54 TXCOM maintenance
SM55 THOST Maintenance
SBPT Process Technology
SCC4 Maintain Clients
SCCL Local Client Copy
SCC9 Remote Client Copy
SCC1 Client Copy Transport Request
SCC5 Client Delete
SCU0 Client Compare
SCC8 Client Export
SCC7 Client Import Post-Processing
SCC3 Client Copy Logs
SMLT Language Transport
USMM System Measurement
SARA Archive Management
Monitor
------------------
SM50 Work Process Overview
SM51 List of SAP Servers
SM04 User Overview
SMGW Gateway Monitor
SM13 Display Update Records
SM35 Batch Input Monitoring
SM58 Asynchronous RFC Error Log
STUN Menu Performance Monitor
ST05 Trace for SQL, Enqueue, RFC, Memory
ST01 System Trace
ST11 Display Developer Traces
SM21 System Log
ST22 ABAP/4 Runtime Error Analysis
SM12 Display and Delete Locks
SM56 Number Range Buffer
SU56 Analyze User Buffer
User Maintenance
------------------
SU03 Maintain Authorizations
SU02 Maintain Authorization Profiles
SU01 User Maintenance
SU01D User Display
SU05 Maintain Internet users
PFCG Profile Generator
SUIM Repository Infosystem
Transports
------------------
SE01 Transport Organizer
STMS Transport Management System
SE06 Configure Workbench Organizer
PERFORMANCE MONITORING MENU (Transaction STUN)
======================================================
Alerts
------------------
AL01 SAP Alert Monitor
AL02 Database alert monitor
ST08 Network Monitor
AL16 Local Alert Monitor for Operat.Syst.
AL18 Local File System Monitor
AL04 Monitor call distribution
AL05 Monitor current workload
AL16 Local Alert Monitor for Operat.Syst.
AL19 Remote File System Monitor
Workload
------------------
ST03 Performance,SAP Statistics, Workload
STAT Local transaction statistics
ST07 Application monitor
Setup/Buffers
------------------
ST02 Setups/Tune Buffers
ST10 Table call statistics
TU02 Parameter changes
Operating System
------------------
OS06 Local operating system activity
OS04 Local sytem configuration
OS03 O/S Parameter changes
OS07 Remote operating system activity
OS05 Remote sytem configuration
OS03 O/S Parameter changes
OS01 LAN check with ping
ST08 Network Monitor
AL15 Customize SAPOSCOL destination
Database
------------------
ST04 Select DB activities
DB01 Analyze exclusive lockwaits
DB02 Analyze Tables and indexes
DB03 Parameter changes in database
Exceptions/Users
------------------
SM21 System-Log
ST22 ABAP/4 Short dump analysis
AL11 Display SAP Directories
AL21 ABAP Program analysis
AL22 Dependent objects display
SM50 Work Process Overview
SM66 Systemwide Work Process Overview
SM51 List of SAP Servers
SM04 User Overview
AL08 List of all logged on users
AL10 Download to EarlyWatch
AL06 Performance report up- & download
APO FAQ
Frequently asked Questions about mySAP SCM and SAP APO
1. Which are the components of the new mySAP SCM Solution?
SAP SCM 4.1 is the new available Supply Chain Management Solution offered by SAP. The SAP SCM 4.1 System includes SAP APO 4.1 (Advanced Planning and Optimization), SAP ICH 4.1 (Inventory Collaboration Hub) and SAP EM 4.1 (Event Management).
2. How about the architecture of SAP SCM 4.1?
SAP SCM 4.1 is based on the SAP Web Application Server 6.40. All SAP SCM 4.1 Architecture Components can be installed on one hardware server, as long as this server is sized for all used application components.
3. What does APO mean?
SAP APO stands for SAP Advanced Planning and Optimization and is the planning component within the mySAP SCM solution.
4. Can SAP APO be used as a stand-alone solution?
No, SAP APO always requires a backend ERP system for execution functions. In most cases, the backend system is an SAP R/3 system.
5. Can SAP APO and SAP R/3 be installed on the same server and use the same database?
No, SAP APO requires a separate server. The actual size of the SAP APO system may vary and depends on the data volume to be processed. You can find more details on this subject under the alias /sizing on the SAP Service Marketplace (//http:/service.sap.com).
6. How does SAP R/3 communicate with SAP APO?
Through the APO Core Interface (CIF) which supplies SAP APO with master and transaction data in real time. CIF is delivered through the R/3 Plug-In, which is something you have to install in your SAP R/3 system. This is the same Plug-In that you need for connecting a BW or a CRM system.
7. What about the exchange of data between the two systems?
With SAP APO you have a real-time integration to SAP R/3. The minute you change something in one system, it is immediately being transferred to the other and vice versa. And that goes for all data, be it a sales order, a production order or a purchase order. You do not have to perform any batch jobs for transferring data between the systems.
8. OK, SAP APO is a separate system. Do I have to maintain the master data twice?
No. You create and change master data exclusively in SAP R/3. If you want to work with SAP APO, you need to transfer the master data from the SAP R/3 system.
Depending on the scenario you want to use in SAP APO, you may have to enhance the transferred data with SAP APO specific settings, which are not relevant to SAP R/3.
9. What is an easy, cost efficient way of installing some standard SAP APO scenarios?
The answer is: SAP Best Practices for Supply Chain Management. Choose one or more of the mySAP SCM business scenarios that SAP Best Practices for SCM provide.
To be followd up-BSP
Quality Management (QM)
With the functions of the Quality Management (QM) module, you can implement the most important elements of a QM system, as specified in ISO 9000. These functions are complemented by other integrated application components of the SAP system (such as MM, SD, PP).
Implementation Considerations
The 20 elements of a quality management system according to the ISO 9000 series of standards are represented by integrated functions throughout the entire R/3 System. The elements are represented as follows:
Elements
Representation in the SAP R/3 System
1 (Management responsibility)
QM (Quality Management), HR (Human Resources)
2 (Quality management system)
QM, PM (Plant Maintenance), PP (Production Planning), PS (Project System)
3 (Contract review)
SD (Sales and Distribution)
4 (Design control)
PP, PS
5 (Document and data control)
Document Management System, ArchiveLink
6 (Purchasing)
QM, MM (Materials Management), PP
7 (Control of customer supplied product)
QM, PM, MM
8 (Product identification and traceability)
QM, MM
9 (Process control)
PM, PP
10 (Inspection and testing)
QM
11 (Control of inspection, measuring and test equipment)
QM, PM, PP
12 (Inspection and test status)
QM
13 (Control of nonconforming product)
QM, CO
14 (Corrective and preventive action)
QM, PM
15 (Handling, storage, packaging, preservation and delivery)
SD, MM
16 (Control of quality records)
QM, MM
17 (Internal quality audits)
QM
18 (Training)
HR
19 (Servicing)
QM, PM
20 (Statistical techniques)
QM
Integration
The integration of the QM application component in the R/3 System allows quality management tasks to be combined with those in other applications (such as materials management, production, sales and distribution and cost accounting).
Features
The QM application component supports tasks associated with quality planning, quality inspection and quality control. In addition, it controls the creation of quality certificates and manages problems with the help of quality notifications.
The following components are available in QM:
Basic data (for example, material master, catalogs, inspection characteristics, inspection methods and sampling procedures).
Inspection planning (inspection plans, reference operation sets, material specifications).
QM in procurement.
QM in Sales and Distribution
Inspection lot processing (inspection lot creation and inspection lot completion)
Recording results
Defects recording
Sample management
Quality Information System
Dynamic modification of the inspection scope
Quality certificates
Quality notifications
Test equipment management






