20 January, 2010

SAP ABAP Certification Review: SAP ABAP Interview Questions, Answers, And Explanations



It’ s clear that SAP ABAP is one of the most important areas in SAP. Mastering technical details is difficult. SAP ABAP Interview Questions, Answers, and Explanations guides you through your learning process. From helping you to assess your ABAP skills to evaluating candidates for a job, SAP ABAP Certification and Interview book will help you understand what you really need to know. The book is organized around eight areas of SAP ABAP: Databases, Lists, Tables, Dialog, ABAP Objects, Basis, and others. Each question includes everything you need to know to master the interview or properly evaluate a candidate. More than just a rehash of SAP documentation and sales presentations, each question is based on project knowledge and experience gained on successful high-profile SAP implementations.


Key certification and interview topics include:


- Database Updates and Changing the Standard

- List Processing

- Internal Tables, and ALV Grid Control


- Dialog Programming

- ABAP Objects

- Data Transfer

- Basis Administration

- ABAP Development reference updated for 2006!

- Everything an ABAP resource needs to know before an interview


http://www.megaupload.com/?d=NLECK8EX

10 January, 2010

MCSE Self-Paced Training Kit (Exam 70-293): Planning and Maintaining a Microsoft Windows Server 2003 Network Infrastructure, Second Edition

Announcing an all-new MCSA/MCSE Training Kit designed to help maximize your performance on Exam 70-293, a core exam for the new Windows Server 2003 certification. This kit packs the tools and features that exam candidates want mostincluding in-depth, self-paced training based on final exam content; rigorous, objective-by-objective review; exam tips from expert, exam-certified authors; and a robust testing suite. It also provides real-world scenarios, case study examples, and troubleshooting labs for skills and expertise that you can apply to the job.

QUESTION 1
You work as a software developer at Certkiller .com. You develop an application that
includes a Contact Class, which is defined by the following code:
Public Class Contact
Private name As String
Public Event ContactSaved()
Public Property Name()
Get
Return name
End Get
Set(ByVal Value)
name = Value
End Set
End Property
Public Sub Save()
‘Insert Save Code.
RaiseEvent ContactSaved()
End Sub
End Class
You create a form named MainForm. This form must include code to handle the
ContactSaved event raised by the Contact object. The Contact object will be
initialized by a procedure named CreateContact.
Which code segment should you use?
A. Public Class MainForm
Private oContact As New Contact()
Private Sub HandleContactSave()
‘Insert event handling code.
End Sub
Private Sub CreateContact()
oContact.Name = “Certkiller”
oContact.Save()
End Sub
End Class
B. Public Class MainForm
Private WithEvents oContact As New Contact()
Private Sub HandleContactSave()
‘Insert event handling code.
End Sub
Private Sub CreateContact ()
oContact.Name = “Certkiller”
oContact.Save()

Actualtests.org – The Power of Knowing
End Sub
End Class
C. Public Class MainForm
Private WithEvents oContact AsNew Contact()
Private Sub HandleContactSave()
Handles oContact.ContactSaved
‘Insert Event handling code.
End Sub
Private Sub CreateContact ()
oContact.Name = “Certkiller”
oContact.Save()
End Sub
End Class
D. Public Class MainForm
Private WithEvents oContact As New Contact()
Private Sub HandleContactSave() _
Handles oContact.ContactSaved
‘Insert event handling code.
End Sub
Private Sub CreateContact ()
Dim oContact As New Contact()
oContact.Name = “Certkiller”
oContact.Save()
End Sub
End Class
Answer: C
Explanation:
Not D: Public Class Main Form
Private WithEvents oContact As New Contant()
Private Sub HandleContactSave() Handles oContact.ContactSaved
‘Insert event handling code.
End Sub
Private Sub CreateContact()
Dim oContact as New Contact()
oContact.Name = “Certkiller”
oContact.Save()
End Sub
End Class
The problem with this code is that the Class Level oContact that is specified WithEvents,
is hidden by the Method Level variable of the same name inside the CreateContact
procedure. Therefore the save method call will not have any effect as there is no event
handler for the method level variable.
There fore the correct answer is C

Actualtests.org – The Power of Knowing
QUESTION 2
You work as a software developer at Certkiller .com. You create a form in your
Windows-based application. The form contains a command button named
check Certkiller Button. When check Certkiller Button is clicked, the application must
call a procedure named Get Certkiller .
Which two actions should you take? (Each correct answer presents part of the
solution. Choose two)
A. Add arguments to the Get Certkiller declaration to accept System.Object and
System.EventArgs.
B. Add arguments to the check Certkiller Button_Click declaration to accept
System.Object and System.EventArgs.
C. Add code to Get Certkiller to call check Certkiller Button_Click.
D. Add the following code segment at the end of the Get Certkiller declaration:
Handles check Certkiller Button.Click
E. Add the following code segment at the end of the check Certkiller Button_Click
procedure:
Handles Get Certkiller
Answer: A, D
Explanation: Get Certkiller is the name of the method handling the button click.
QUESTION 3
You develop a Windows-based application by using Visual Studio .NET. The
application includes a form named MainForm and a class named Certkiller .
MainForm includes a button named create Certkiller Button. You must ensure that
your application creates an instance of Certkiller when a user clicks this button. You
want to write the most efficient code possible.
Which code segment should you use?
A. Dim con As Certkiller = New Object()
B. Dim con As New Certkiller
C. Dim con As Object
con = New Certkiller ()
D. Dim con As Certkiller
con = New Object()
Answer: B

06 January, 2010

The PMP Certification

One of the most intensive certifications available is the PMP (Project Management Professional) certification. Offered by PMI (Project Management Institute), the PMP demonstrates advanced knowledge of and experience with Project Management concepts. When it comes to finding internet resources and practice exams, it is also one of the most difficult and obscure certifications. As a result of several emails asking for this information, and quite a bit of research, here are the best places to find information on the PMP cert.
PMP Training

Most training for the PMP certification is both intensive and costly, but the PMP is generally considered a good investment. According to my 2002 certification salary survey, individuals with a PMI cert averaged $90,000 per year. Fortunately, good practice questions are just beginning to appear on popular training sites so you can get an idea of where your strengths and weaknesses lay before taking the exam

03 January, 2010

Information Technology Infrastructure Library itil

The Information Technology Infrastructure Library (ITIL) is a set of concepts and techniques for managing information technology (IT) infrastructure, development, and operations.

ITIL is published in a series of books, each of which cover an IT management topic. The names ITIL and IT Infrastructure Library are registered trademarks of the United Kingdom’s Office of Government Commerce (OGC). ITIL gives a detailed description of a number of important IT practices with comprehensive checklists, tasks and procedures that can be tailored to any IT organization.

Contents [hide]
1 Certification
2 ITIL History
2.1 Precursors
2.2 Development
3 ITIL alternatives
4 Overview of the ITIL 2 library
5 Overview of the ITIL v3 library
6 Details of the ITIL v2 framework
6.1 Service Support
6.1.1 Service Desk / Service Request Management
6.1.2 Incident Management
6.1.3 Software Asset Management
6.1.4 Problem Management
6.1.5 Configuration Management
6.1.6 Change Management
6.1.6.1 Change Management Terminology
6.1.7 Release Management
6.2 Service Delivery
6.2.1 Service Level Management
6.2.2 Capacity Management
6.2.3 IT Service Continuity Management
6.2.4 Availability Management
6.2.5 Financial Management for IT Services
6.3 Planning to implement service management
6.4 Security Management
6.5 ICT Infrastructure Management
6.5.1 ICT Design and Planning
6.5.2 ICT Deployment Management
6.5.3 ICT Operations Management
6.5.4 ICT Technical Support
6.6 The Business Perspective
6.7 Application Management
6.8 Small-Scale Implementation
7 Criticisms of ITIL
8 See also
9 References
10 External links

[edit] Certification

An ITIL Foundation certificate pin.ITIL certifications are managed by the ITIL Certification Management Board (ICMB) which is composed of the OGC, IT Service Management Forum (itSMF) International and two examinations institutes: EXIN (based in the Netherlands) and ISEB (based in the UK).

The EXIN and ISEB administer exams and award qualifications at Foundation, Practitioner and Manager/Masters level currently in ‘ITIL Service Management’, ‘ITIL Application Management’ and ‘ICT Infrastructure Management’ respectively.

A voluntary registry of ITIL-certified practitioners is operated by the ITIL Certification Register.

Organizations or a management system may not be certified as “ITIL-compliant”. However an organization that has implemented ITIL guidance in ITSM may be able to achieve compliance with and seek certification under ISO/IEC 20000.

On July 20, 2006, the OGC signed a contract with the APM Group to be its commercial partner for ITIL accreditation from January 1, 2007.[1] The OGC’s failure to further formalize institutional relationships with the itSMF as part of these activities has been controversial.[citation needed]
[edit] ITIL History

[edit] Precursors
Many of the concepts did not originate within the original UK Government’s Central Computer and Telecommunications Agency (CCTA) project to develop ITIL. According to IBM:

In the early 1980s, IBM documented the original Systems Management concepts in a four-volume series called A Management System for Information Systems. These widely accepted yellow books, … were key inputs to the original set of ITIL books.”[2][3]

The primary author of the IBM yellow books was Edward A. Van Schaik, who compiled them into the 1985 book A Management System for the Information Business[4] (since updated with a 2006 re-issue by Red Swan Publishing[5]). In the 1985 work, Van Schaik in turn references a 1974 Richard L. Nolan work, Managing the Data Resource Function[6] which may be the earliest known systematic English-language treatment of the topic of large scale IT management (as opposed to technological implementation).
[edit] Development
What is now called ITIL version 1, developed under the auspices of the CCTA, was titled “Government Information Technology Infrastructure Management Methodology” (GITMM) and over several years eventually expanded to 31 volumes in a project initially directed by Peter Skinner and John Stewart at the CCTA. The publications were retitled primarily as a result of the desire (by Roy Dibble of CCTA) that the publications be seen as guidance and not as a formal method and as a result of growing interest from outside of the UK Government.

During the late 1980s the CCTA was under sustained attack, both from IT companies who wanted to take over the central Government consultancy service it provided, and from other Government departments who wanted to break free of its oversight. Eventually CCTA succumbed and the concept of a central driving IT authority for the UK Government was lost. This meant that adoption of CCTA guidance such as ITIL was delayed, as various other departments fought to take over new responsibilities.

In some cases this guidance was lost permanently. For instance, the CCTA IT Security and Privacy group provided the CCTA IT Security Library input to GITMM, but when CCTA was broken up the security service appropriated this work and suppressed it as part of their turf war over security responsibilities.

Although developed during the 1980s, for the reasons mentioned above ITIL was not widely adopted until the mid 1990s. This wider adoption and awareness has led to a number of standards, including ISO/IEC 20000 which is an international standard covering the IT Service Management elements of ITIL. ITIL is often considered alongside other best practice frameworks such as the Information Services Procurement Library (ISPL), the Application Services Library (ASL), Dynamic Systems Development Method (DSDM), the Capability Maturity Model (CMM/CMMI), and is often linked with IT governance through Control Objectives for Information and related Technology (COBIT).

In December 2005, the OGC issued notice of an ITIL refresh,[7] commonly known as ITIL v3, which became available in May 2007. ITIL v3 initially includes five core texts:

Service Strategy
Service Design
Service Transition
Service Operation
Continual Service Improvement
These publications update much of the current v2 and extend the scope of ITIL in the domain of service management.
[edit] ITIL alternatives
IT Service Management as a concept is related but not equivalent to ITIL which, in Version 2, contained a subsection specifically entitled IT Service Management (ITSM). (The five volumes of version 3 have no such demarcated subsection). The combination of the Service Support and Service Delivery volumes are generally equivalent to the scope of the ISO/IEC 20000 standard (previously BS 15000).

Outside of ITIL, other IT Service Management approaches and frameworks exist, including the Enterprise Computing Institute’s library covering general issues of large scale IT management, including various Service Management subjects.

The British Educational Communications and Technology Agency (BECTA) has developed the Framework for ICT Technical Support (FITS) and is based on ITIL, but it is slimmed down for UK primary and secondary schools (which often have very small IT departments). Similarly, The Visible OPS Handbook: Implementing ITIL in 4 Practical and Auditable Steps claims to be based on ITIL but to focus specifically on the biggest “bang for the buck” elements of ITIL.

Organizations that need to understand how ITIL processes link to a broader range of IT processes or need task level detail to guide their service management implementation can use the IBM Tivoli Unified Process (ITUP). Like MOF, ITUP is aligned with ITIL, but is presented as a complete, integrated process model.

Smaller organizations that cannot justify a full ITIL program and materials can gain insight into ITIL from a review of the Microsoft Operations Framework which is based on ITIL but defines a more limited implementation.

The enhanced Telecom Operations Map eTOM published by the TeleManagement Forum offers an alternative framework aimed at telecommunications service providers.
[edit] Overview of the ITIL 2 library
The IT Infrastructure Library originated as a collection of books each covering a specific practice within IT Service Management. After the initial publication, the number of books quickly grew within ITIL v1 to over 30 volumes. In order to make ITIL more accessible (and affordable) to those wishing to explore it, one of the aims of ITIL v2 was to consolidate the publications into logical ’sets’ that grouped related process guidelines into the different aspects of IT management, applications and services.

While the Service Management sets (Service Support and Service Delivery) are by far the most widely used, circulated and understood of ITIL publications, ITIL provides a more comprehensive set of practices as a whole. Proponents believe that using the broader library provides a comprehensive set of guidance to link the technical implementation, operations guidelines and requirements with the strategic management, operations management and financial management of a modern business.

The eight ITIL version 2 books and their disciplines are:

The IT Service Management sets

1. Service Delivery
2. Service Support
Other operational guidance

3. ICT Infrastructure Management
4. Security Management
5. The Business Perspective
6. Application Management
7. Software Asset Management
To assist with the implementation of ITIL practices a further book was published providing guidance on implementation (mainly of Service Management):

8. Planning to Implement Service Management
And this has more recently been supplemented with guidelines for smaller IT units, not included in the original eight publications:

9. ITIL Small-Scale Implementation
ITIL is built around a process-model based view of controlling and managing operations often credited to W. Edwards Deming[citation needed]. The ITIL recommendations were developed in the 1980s by the UK Government’s CCTA in response to the growing dependence on IT and a recognition that without standard practices, government agencies and private sector contracts were independently creating their own IT management practices and duplicating effort within their Information and Communications Technology (ICT) projects resulting in common mistakes and increased costs.[citation needed] In April 2001 the CCTA was merged into the Office of Government Commerce (OGC), an office of the UK Treasury.[8]

One of the primary benefits claimed by proponents of ITIL within the IT community is its provision of common vocabulary, consisting of a glossary of tightly defined and widely agreed terms. A new and enhanced glossary has been developed as a key deliverable of the ITIL v3 (also known as the ITIL Refresh Project).
[edit] Overview of the ITIL v3 library
ITIL v3, published in May 2007, comprises 5 key volumes:

1. Service Strategy
a) Value Creation
-Service Utility
-Service Warrenty
b)Service Assets
-Capabilities
-Resources
c) Service Provider Types
-Type 1-Internal Service Provider
-Type 2-Shared Service Group
-Type 3-External Service Provider
d) Service Structures
e) Service Strategy Funditmentals
2. Service Design
3. Service Transition
4. Service Operation
5. Continual Service Improvement

[edit] Details of the ITIL v2 framework

[edit] Service Support
The Service Support[9] ITIL discipline is focused on the User of the ICT services and is primarily concerned with ensuring that they have access to the appropriate services to support the business functions.

To a business, customers and users are the entry point to the process model. They get involved in service support by:

Asking for changes
Needing communication, updates
Having difficulties, queries.
The service desk is the single contact point for the customers to record their problems. It will try to resolve it, if there is a direct solution or will create an incident. Incidents initiate a chain of processes: Incident Management, Problem Management, Change Management, Release Management and Configuration Management (see following sections for details). This chain of processes is tracked using the Configuration Management Database (CMDB), which records each process, and creates output documents for traceability (Quality Management).
[edit] Service Desk / Service Request Management
The Service Desk function is the single point of contact between users and IT Service Management.

Main article: Service Desk (ITSM)
Tasks include handling incidents and requests, and providing an interface for other ITSM processes.

Single Point of Contact (SPOC) and not necessarily the First Point of Contact (FPOC)
There is a single point of entry and exit
Easier for Customers
Data Integrity
Communication channel is streamlined
The primary functions of the Service Desk are:

Incident Control: life cycle management of all Service Requests
Communication: keeping the customer informed of progress and advising on workarounds
The Service Desk function is known under various names .

Call Centre: main emphasis on professionally handling large call volumes of telephone-based transactions
Help Desk: manage, co-ordinate and resolve incidents as quickly as possible
Service Desk: not only handles incidents, problems and questions but also provides an interface for other activities such as change requests, maintenance contracts, software licenses, Service Level Management, Configuration Management, Availability Management, Financial Management and IT Services Continuity Management
The three types of structure that can be considered are:

Local Service Desk: to meet local business needs – is practical only until multiple locations requiring support services are involved
Central Service Desk: for organizations having multiple locations – reduces operational costs and improves usage of available resources
Virtual Service Desk: for organizations having multi-country locations – can be situated and accessed from anywhere in the world due to advances in network performance and telecommunications, reducing operational costs and improving usage of available resources

[edit] Incident Management
The goal of Incident Management is to restore normal service operation as quickly as possible and minimize the adverse effect on business operations, thus ensuring that the best possible levels of service quality and availability are maintained. ‘Normal service operation’ is defined here as service operation within Service Level Agreement (SLA) limits.
Main article: Incident Management (ITSM)

[edit] Software Asset Management
Software asset management (SAM) is the practice of integrating people, processes and technology to allow software licenses and usage to be systematically tracked, evaluated and managed. The goal of SAM is to reduce IT expenditures, human resource overhead and risks inherent in owning and managing software assets.

SAM includes maintaining software license compliance; tracking the inventory and usage of software assets; and maintaining standard policies and procedures surrounding the definition, deployment, configuration, use and retirement of software assets. SAM represents the software component of IT asset management, which also includes hardware asset management (to which SAM is intrinsicly linked by the concept that without effective inventory hardware controls, efforts to control the software thereon will be significantly inhibited).
Main article: Software Asset Management

[edit] Problem Management
The goal of ‘Problem Management’ is to resolve the root cause of incidents and thus to minimize the adverse impact of incidents and problems on business that are caused by errors within the IT infrastructure, and to prevent recurrence of incidents related to these errors. A `problem’ is an unknown underlying cause of one or more incidents, and a `known error’ is a problem that is successfully diagnosed and for which either a work-around or a permanent resolution has been identified. The CCTA defines problems and known errors as follows:

A problem is a condition often identified as a result of multiple Incidents that exhibit common symptoms. Problems can also be identified from a single significant Incident, indicative of a single error, for which the cause is unknown, but for which the impact is significant.
A known error is a condition identified by successful diagnosis of the root cause of a problem, and the subsequent development of a Work-around.
Problem management is different from incident management. The principal purpose of problem management is to find and resolve the root cause of a problem and prevention of incidents; the purpose of incident management is to return the service to normal level as soon as possible, with smallest possible business impact.
The problem management process is intended to reduce the number and severity of incidents and problems on the business, and report it in documentation to be available for the first-line and second line of the help desk. The proactive process identifies and resolves problems before incidents occur. These activities are:

Trend analysis;
Targeting support action;
Providing information to the organization.
The Error Control Process is an iterative process to diagnose known errors until they are eliminated by the successful implementation of a change under the control of the Change Management process.

The Problem Control Process aims to handle problems in an efficient way. Problem control identifies the root cause of incidents and reports it to the service desk. Other activities are:

Problem identification and recording;
Problem classification;
Problem investigation and diagnosis.
The standard technique for identifying the root cause of a problem is to use an Ishikawa diagram, also referred to as a cause-and-effect diagram, tree diagram, or fishbone diagram. An Ishikawa diagram is typically the result of a brainstorming session in which members of a group offer ideas to improve a product. For problem-solving, the goal will be to find the cause and effect of the problem.

Ishikawa diagrams can be defined in a meta-model.

First there is the main subject, which is the backbone of the diagram that we are trying to solve or improve. The main subject is derived from a cause. The relationship between a cause and an effect is a double relation: an effect is a result of a cause, and the cause is the root of an effect. But there is just one effect for several causes and one cause for several effects.

[edit] Configuration Management
Configuration Management is a process that tracks all of the individual Configuration Items (CI) in a system.

Main article: Configuration Management (ITSM)

[edit] Change Management
The goal of Change Management is to ensure that standardized methods and procedures are used for efficient handling of all changes, in order to minimize the impact of change-related incidents and to improve day-to-day operations.

Main article: Change Management (ITSM)
A change is �an event that results in a new status of one or more configuration items (CI’s)� approved by management, cost effective, enhances business process changes (fixes) – with a minimum risk to IT infrastructure.

The main aims of Change Management are:

Minimal disruption of services
Reduction in back-out activities
Economic utilization of resources involved in the change

[edit] Change Management Terminology
Change: the addition, modification or removal of CIs
Request for Change (RFC): form used to record details of a request for a change and is sent as an input to Change Management by the Change Requestor
Forward Schedule of Changes (FSC): schedule that contains details of all the forthcoming Changes

[edit] Release Management
Release Management is used for platform-independent and automated distribution of software and hardware, including license controls across the entire IT infrastructure. Proper software and hardware control ensures the availability of licensed, tested, and version-certified software and hardware, which will function as intended when introduced into the existing infrastructure. Quality control during the development and implementation of new hardware and software is also the responsibility of Release Management. This guarantees that all software meets the demands of the business processes. The goals of release management are:

Plan the rollout of software
Design and implement procedures for the distribution and installation of changes to IT systems
Effectively communicate and manage expectations of the customer during the planning and rollout of new releases
Control the distribution and installation of changes to IT systems
The focus of release management is the protection of the live environment and its services through the use of formal procedures and checks.

Release Categories
A Release consists of the new or changed software and/or hardware required to implement approved changes
Releases are categorized as:

Major software releases and hardware upgrades, normally containing large amounts of new functionality, some of which may make intervening fixes to problems redundant. A major upgrade or release usually supersedes all preceding minor upgrades, releases and emergency fixes.
Minor software releases and hardware upgrades, normally containing small enhancements and fixes, some of which may have already been issued as emergency fixes. A minor upgrade or release usually supersedes all preceding emergency fixes.
Emergency software and hardware fixes, normally containing the corrections to a small number of known problems.

Releases can be divided based on the release unit into:
Delta Release: is a release of only that part of the software which has been changed. For example, security patches.
Full Release: means that the entire software program will be deployed. For example, a new version of an existing application.
Packaged Release: is a combination of many changes. For example, an operating system image which also contains specific applications.

[edit] Service Delivery
The Service Delivery [10] discipline is primarily concerned with the proactive and forward-looking services that the business requires of its ICT provider in order to provide adequate support to the business users. It is focused on the business as the customer of the ICT services (compare with: Service Support). The discipline consists of the following processes, explained in subsections below:

Service Level Management
Capacity Management
IT Service Continuity Management
Availability Management
Financial Management
[edit] Service Level Management
Service Level Management provides for continual identification, monitoring and review of the levels of IT services specified in the service level agreements (SLAs). Service Level Management ensures that arrangements are in place with internal IT Support Providers and external suppliers in the form of Operational Level Agreements (OLAs) and Underpinning Contracts (UCs). The process involves assessing the impact of change upon service quality and SLAs. The service level management process is in close relation with the operational processes to control their activities. The central role of Service Level Management makes it the natural place for metrics to be established and monitored against a benchmark.

Service Level Management is the primary interface with the customer (as opposed to the user, who is serviced by the Service Desk). Service Level Management is responsible for

ensuring that the agreed IT services are delivered when and where they are supposed to be
liaising with Availability Management, Capacity Management, Incident Management and Problem Management to ensure that the required levels and quality of service are achieved within the resources agreed with Financial Management
producing and maintaining a Service Catalog (a list of standard IT service options and agreements made available to customers)
ensuring that appropriate IT Service Continuity plans have been made to support the business and its continuity requirements.
The Service Level Manager relies on all the other areas of the Service Delivery process to provide the necessary support which ensures the agreed services are provided in a cost effective, secure and efficient manner.
[edit] Capacity Management
Capacity Management supports the optimum and cost effective provision of IT services by helping organizations match their IT resources to the business demands. The high-level activities are Application Sizing, Workload Management, Demand Management, Modeling, Capacity Planning, Resource Management, and Performance Management.
[edit] IT Service Continuity Management
IT Service Continuity Management helps to ensure the availability and rapid restoration of IT services in the event of a disaster. The high level activities are Risk Analysis, Contingency Plan Management, Contingency Plan Testing, and Risk Management.
[edit] Availability Management
Availability Management allows organizations to sustain the IT service availability in order to support the business at a justifiable cost. The high-level activities are Realize Availability Requirements, Compile Availability Plan, Monitor Availability, and Monitor Maintenance Obligations.

Availability Management is the ability of an IT component to perform at an agreed level over a period of time.

Reliability: how reliable is the service? Ability of an IT component to perform at an agreed level at described conditions.
Maintainability: The ability of an IT Component to remain in, or be restored to an operational state.
Serviceability: The ability for an external supplier to maintain the availability of component or function under a third party contract.
Resilience: A measure of freedom from operational failure and a method of keeping services reliable. One popular method of resilience is redundancy.
Security: A service may have associated data. Security refers to the confidentiality, integrity, and availability of that data. Availability gives us the clear overview of the end to -end availability of the system

[edit] Financial Management for IT Services
Main article: Financial Management

[edit] Planning to implement service management
Main article: ITIL Planning to implement service management
The ITIL discipline – Planning To Implement Service Management [11] attempts to provide practitioners with a framework for the alignment of business needs and IT provision requirements. The processes and approaches incorporated within the guidelines suggest the development of a Continuous Service Improvement Programme (CSIP) as the basis for implementing other ITIL disciplines as projects within a controlled programme of work. Planning To Implement Service Management is mainly focused on the Service Management processes, but is also generically applicable to other ITIL disciplines.

create vision
analyze organization
set goals
implement IT service management

[edit] Security Management
Main article: ITIL Security Management
The ITIL-process Security Management [12] describes the structured fitting of information security in the management organization. ITIL Security Management is based on the code of practice for information security management also known as ISO/IEC 17799.

A basic concept of the Security Management is the information security. The primary goal of information security is to guarantee safety of the information. Safety is to be protected against risks. Security is the means to be safe against risks. When protecting information it is the value of the information that has to be protected. These values are stipulated by the confidentiality, integrity and availability. Inferred aspects are privacy, anonymity and verifiability.

The current move towards ISO/IEC 27001 may require some revision to the ITIL Security Management best practices which are often claimed to be rich in content for physical security but weak in areas such as software/application security and logical security in the ICT infrastructure.
[edit] ICT Infrastructure Management
ICT Infrastructure Management [13] processes recommend best practice for requirements analysis, planning, design, deployment and ongoing operations management and technical support of an ICT Infrastructure. (”ICT” is an acronym for “Information and Communication Technology”.)

The Infrastructure Management processes describe those processes within ITIL that directly relate to the ICT equipment and software that is involved in providing ICT services to customers.

ICT Design and Planning
ICT Deployment
ICT Operations
ICT Technical Support
These disciplines are less well understood than those of Service Management and therefore often some of their content is believed to be covered ‘by implication’ in Service Management disciplines.
[edit] ICT Design and Planning
ICT Design and Planning provides a framework and approach for the Strategic and Technical Design and Planning of ICT infrastructures. It includes the necessary combination of Business (and overall IS) strategy, with technical design and architecture. ICT Design and Planning drives both the Procurement of new ICT solutions through the production of Statements of Requirement (”SOR”) and Invitations to Tender (”ITT”) and is responsible for the initiation and management of ICT Programmes for strategic business change. Key Outputs from Design and Planning are:

ICT Strategies, Policies and Plans
The ICT Overall Architecture & Management Architecture
Business Cases, Feasibility Studies, ITTs and SORs

[edit] ICT Deployment Management
ICT Deployment provides a framework for the successful management of design, build, test and roll-out (deploy) projects within an overall ICT programme. It includes many project management disciplines in common with PRINCE2, but has a broader focus to include the necessary integration of Release Management and both functional and non functional testing.
[edit] ICT Operations Management
ICT Operations Management provides the day-to-day technical supervision of the ICT infrastructure. Often confused with the role of Incident Management from Service Support, Operations is more technical and is concerned not solely with Incidents reported by users, but with Events generated by or recorded by the Infrastructure. ICT Operations may often work closely alongside Incident Management and the Service Desk, which are not-necessarily technical in order to provide an ‘Operations Bridge’. Operations, however should primarily work from documented processes and procedures and should be concerned with a number of specific sub-processes, such as: Output Management, Job Scheduling, Backup and Restore, Network Monitoring/Management, System Monitoring/Management, Database Monitoring/Management Storage Monitoring/Management. Operations are responsible for:

A stable, secure ICT infrastructure
A current, up to date Operational Documentation Library (”ODL”)
A log of all operational Events
Maintenance of operational monitoring and management tools.
Operational Scripts
Operational Procedures

[edit] ICT Technical Support
ICT Technical Support is the specialist technical function for infrastructure within ICT. Primarily as a support to other processes, both in Infrastructure Management and Service Management, Technical Support provides a number of specialist functions: Research and Evaluation, Market Intelligence (particularly for Design and Planning and Capacity Management), Proof of Concept and Pilot engineering, specialist technical expertise (particularly to Operations and Problem Management), creation of documentation (perhaps for the Operational Documentation Library or Known Error Database).
[edit] The Business Perspective
The Business Perspective is the name given to the collection of best practices[14] that is suggested to address some of the issues often encountered in understanding and improving IT service provision, as a part of the entire business requirement for high IS quality management. These issues are:

Business Continuity Management describes the responsibilities and opportunities available to the business manager to improve what is, in most organizations one of the key contributing services to business efficiency and effectiveness.
Surviving Change. IT infrastructure changes can impact the manner in which business is conducted or the continuity of business operations. It is important that business managers take notice of these changes and ensure that steps are taken to safeguard the business from adverse side effects.
Transformation of business practice through radical change helps to control IT and to integrate it with the business.
Partnerships and outsourcing
This volume is related to the topics of IT Governance and IT Portfolio Management.
[edit] Application Management
ITIL Application Management[15] set encompasses a set of best practices proposed to improve the overall quality of IT software development and support through the life-cycle of software development projects, with particular attention to gathering and defining requirements that meet business objectives.

This volume is related to the topics of Software Engineering and IT Portfolio Management.
[edit] Small-Scale Implementation
ITIL Small-Scale Implementation [16] provides an approach to the implementation of the ITIL framework for those with smaller IT units or departments. It is primarily an auxiliary work, covering many of the same best practice guidelines as Planning To Implement Service Management, Service Support and Service Delivery but provides additional guidance on the combination of roles and responsibilities and avoiding conflict between ITIL priorities.
[edit] Criticisms of ITIL
ITIL has been criticized on several fronts, including:

The books are not affordable for non-commercial users
Accusations that many ITIL advocates think ITIL is “a holistic, all-encompassing framework for IT governance”;
Accusations that proponents of ITIL indoctrinate the methodology with ‘religious zeal’ at the expense of pragmatism.
As Jan van Bon (author and editor of many IT Service Management publications) notes,

There is a lot of confusion about ITIL, stemming from all kinds of misunderstandings about its nature. ITIL is, as the OGC states, a set of best practices. The OGC doesn�t claim that ITIL�s best practices describe pure processes. The OGC also doesn�t claim that ITIL is a framework, designed as one coherent model. That is what most of its users make of it, probably because they have such a great need for such a model…[17]
CIO Magazine columnist Dean Meyer has also presented some cautionary views of ITIL,[18] including five pitfalls such as “becoming a slave to outdated definitions” and “Letting ITIL become religion.” As he notes, “…it doesn’t describe the complete range of processes needed to be world class. It’s focused on … managing ongoing services.”

The quality of the library’s volumes is seen to be uneven. For example, van Herwaarden and Grift note, �the consistency that characterized the service support processes � is largely missing in the service delivery books.”[19]

In a 2004 survey designed by Noel Bruton (author of ‘How to Manage the IT Helpdesk’ and ‘Managing the IT Services Process’), ITIL adopting organizations were asked to relate their actual experiences in having implemented ITIL. Seventy-seven percent of survey respondents either agreed or strongly agreed that “ITIL does not have all the answers”. ITIL exponents accept this, citing ITIL’s stated intention to be non-prescriptive, expecting that organizations will have to engage ITIL processes with their existing overall process model. Bruton notes that the claim to non-prescriptiveness must be at best one of scale rather than absolute intention, for the very description of a certain set of processes is in itself a form of prescription. (Survey “The ITIL Experience – Has It Been Worth It”, author Bruton Consultancy 2004, published by Helpdesk Institute Europe, The Helpdesk and IT Support Show and Hornbill Software.)

The BOFH notes that ITIL manuals are like kryptonite to enthusiasm.” [20]
[edit] See also
Business Application Optimization (BAO, Macro 4)
Enterprise Architecture
IT Governance
IT Service Management
IBM Tivoli Unified Process (ITUP)
Microsoft Operations Framework (MOF)
Run Book Automation (RBA)
Stratavia Data Palette
Performance engineering
enhanced Telecom Operations Map (eTOM)
Grey Area Diagnosis
PRINCE2

[edit] References
^ Office of Government Commerce (2006). Best Practice portfolio: new contracts awarded for publishing and accreditation services (HTML). Retrieved on 2006-09-19.
^ IBM Global Services (2004). IBM and the IT Infrastructure Library (PDF). Retrieved on 2006-05-31.
^ IBM Global Services (2003). IBM’s commitment to ITIL (archived) (HTML). Retrieved on 2007-03-04.
^ Van Schaik, E. A. (1985). A Management System for the Information Business. Englewood Cliffs, NJ, Prentice-Hall, Inc. ISBN 0-13-549965-8
^ Van Schaik, E. A. (2006 2nd Ed.). A Management system for the Information Business. Red Swan Publishing. ISBN 1933703032
^ Nolan, Richard, 1974, 1982. Managing the Data Resource Function. St. Paul, Minnesota, West Publishing. ISBN 0829900039 (1982 ed.)
^ Office of Government Commerce. ITIL Refresh Statement. Retrieved February 13, 2006.
^ Office of Government Commerce (UK)CCTA and OGC. Retrieved May 5, 2005.
^ Office of Government Commerce (2000). Service Support. The Stationery Office. ISBN 0-11-330015-8.
^ Office of Government Commerce (2001). Service Delivery, IT Infrastructure Library. The Stationery Office. ISBN 0-11-330017-4.
^ Office of Government Commerce (2002). Planning To Implement Service Management. The Stationery Office. ISBN 0-11-330877-9.
^ Cazemier, Jacques A.; Overbeek, Paul L.; Peters, Louk M. (2000). Security Management. The Stationery Office. ISBN 0-11-330014-X.
^ Office of Government Commerce (2002). ICT Infrastructure Management. The Stationery Office. ISBN 0-11-330865-5.
^ Office of Government Commerce (2005). The Business Perspective. The Stationery Office. ISBN 0-11-330894-9.
^ Office of Government Commerce (2002). Application Management. The Stationery Office. ISBN 0-11-330866-3.
^ Office of Government Commerce (2005). ITIL Small Scale Implementation. The Stationery Office. ISBN 0-11-330980-5.
^ van Bon, J.(Editor) (2002). The guide to IT service management. Addison Wesley. ISBN 0-201-73792-2.
^ Meyer, Dean, 2005. “Beneath the Buzz: ITIL”, CIO Magazine, March 31, 2005
^ van Herwaarden, H. and F. Grift (2002). “IPW(tm) and the IPW Stadia Model(tm) (IPWSM)”. The guide to IT service management. J. Van Bon. London, Addison-Wesley: 97-115.
^ BOFH, Episode 34 “BOFH: Skip diplomacy”, The Register October 5, 2005