SlideShare una empresa de Scribd logo
1 de 42
SAP BASIS - User Administration -
Online Training Session - Newyorksys
Online | classroom| Corporate
Training | certifications | placements| support
CONTACT US:
MAGNIFIC TRAINING
INDIA +91-9052666559
USA : +1-678-693-3475
info@magnifictraining.com
www.magnifictraining.com
SAP Technical Overview
Learning Objectives
• What the Basis system is
• How does SAP handle a transaction
request
• Differentiating between the various work
processes
• Understanding the basic functions of the
Basis Module
SAP Technical Overview
The Software-Oriented View of R/3
SAP Technical Overview
The SAP R/3 System Architecture
• Implications for Application Programming
– Separate presentation and application layers implies
that when you run an application program that
requires user interaction, control of the program is
continually passed backwards and forwards between
layers.
– When a screen is ready for user input, the
presentation layer is active, and the application server
is inactive with regard to that particular program.
– As a consequence, the program logic in an
application program that occurs between two screens
is known as a DIALOG STEP.
SAP Technical Overview
SAP Technical Overview
• Application Layer (cont.)
– Application Server
• R/3 programs run on application servers
• The APPLICATION SERVER communicate
with the presentation components, the
database, and also with each other, using a
MESSAGE SERVER.
• Main components:
–Work Processes (Dialog, Update, Enqueue,
Batch, Spool)
–Dispatcher
–Gateway
–Message Server
The SAP R/3 System Architecture
What happens when I send a
request to SAP?
SAP Technical Overview
Application Server
Presentation . . . Internet
Application
Database
Communication
SAPGUISAPGUI InternetOffice
Work-
process
Work-
process
Work-
process
Dispatcher
TCP/IP
Remote SQL
IPC
Local Buffer
for R/3 Data,
DW-Objects,
ABAP-Objects
SAP Technical Overview
Dispatcher
• Program which manages resources of the
R/3 applications
• Receives requests from user and passes
them to the corresponding work
processes
• Only one dispatcher per application
server
SAP Technical Overview
Dispatcher Tasks
• Balances the workload between the
processes
• Buffer management in main memory
• Connection with the presentation level
• Organization of the communication
processes
SAP Technical Overview
Work Process
• Responsible for executing R/3 application
tasks
Database
Interface
Task Handler
ABAP/4
Processor
Dialog
Interpreter
Work Process
SAP Technical Overview
Different Kind of Work Processes for different Tasks
Dialog
SAP DispatcherBatch
Spool
Update
Enqueue
S
12
9
6
3
11 1
7 5
8 4
210
B
M
G
Message
Gateway
R/2 R/3
V
E
SAP Technical Overview
Dialog Work Processes
Dialog
• Responsible for the interactive
tasks of the R/3 system
• Dialog work processes execute
only one dialog step at a time
and are immediately freed for
the next user request
• Constantly switching between
users
SAP Technical Overview
Background Work Processes
• Responsible for executing
ABAP programs submitted
for background execution
• Batch jobs schedule the
sequence of program
execution
• Used for running long and
time consuming programs
Batch
12
9
6
3
11 1
7 5
8 4
210
B
SAP Technical Overview
Spool Work Processes
• Responsible for formatting
the data for printing and
passing it to the host spool
system
• Only one spool work process
allowed per server
Spool
SAP Technical Overview
Enqueue Work Processes
• Responsible for the lock
management system
• Synchronizes database access
for the multiple application
servers and work processes
• Only one enqueue process
per R/3 system to ensure
data integrity
Enqueue
E
SAP Technical Overview
Update Work Processes
• Responsible for making
database changes requested
by dialog and background
processes
• For better performance, this
process should be on the
database server
Update
V
SAP Technical Overview
V1 vs. V2 Update Processes
• Time-critical processes are
inside V1 and less critical
ones within V2
• Error situations in
– V1 : changes rolled back and
V2 components not executed
– V2 : only changes of V2
components rolled back
Update
V
SAP Technical Overview
Message Server
• Used by different application
servers to exchange data and
internal messages
• Routes messages, such as
update or batch job starts,
between application servers
• One message server per
system
M
Message
SAP Technical Overview
Gateway Server
• Allows communication
between R/3, R/2, and
external applications
• Exchanges large amounts of
information between
application servers
• Gateway can reside on any of
the connected systems
G
Gateway
R/2 R/3
SAP Technical Overview
Work Processes
• Number of work processes can only be
changed after restarting the system
• Should have at least two dialog work
processes
• Need to have at least one V1 and V2
processes
• Number of spool processes cannot be
changed
SAP Technical Overview
Application Server
Presentation . . . Internet
Application
Database
Communication
SAPGUISAPGUI InternetOffice
Work-
process
Work-
process
Work-
process
Dispatcher
TCP/I
P
Remote SQL
IPC
Local Buffer
for R/3 Data,
DW-Objects,
ABAP-Objects
SAP Technical Overview
TCP/I
P
Processing of a SAP Transaction (1)
Presentation . . . Internet
Application
Database
Communication
SAPGUI
Work-
process
Work-
process
Work-
process
Dispatcher
Remote SQL
IPC
Local Buffer
for R/3 Data,
DW-Objects,
ABAP-Objects
Start
Transaction
Assign User
request to
Workprocess
Fetch data from buffer/database
Re-
turn
data
for
next
step
1
2
3
4
5
SAP Technical Overview
Processing of a SAP Transaction (2)
Presentation . . . Internet
Application
Database
Communication
SAPGUI
Work-
process
Work-
process
Work-
process
Dispatcher
TCP/IP
Remote SQL
IPC
Local Buffer
for R/3 Data,
DW-Objects,
ABAP-Objects
1
2
3
5
6
8
Fetch data from
buffer/database
9
7
10
Assign User
request to
Workprocess
Re-
turn
data
for
next
step
SAP Technical Overview
Processing of a SAP Transaction (3)
Presentation . . . Internet
Application
Database
Communication
SAPGUI
Work-
process
Work-
process
Work-
process
Dispatcher
TCP/IP
Remote SQL
IPC
Local Buffer
for R/3 Data,
DW-Objects,
ABAP-Objects
1
2
3
4
5
6
8
9
7
10
11
12
13 14
Update data
on database
End transaction
Request
for update
SAP Technical Overview
SAP Communication Interfaces
High
Level
Low
level
SAP Technology
Communication Interface
Communication System
Mail
MAPI
SMTP
X.400
EDI
Business API
RFC
CPI-C
Q-API
IDOC
ALE
OLE
SAP Technical Overview
Business Framework
Business
Component
BAPI
ALE
BAPI
Business
Component
• Business Component - contains business
functionality
• BAPI - interface between the components
• ALE - integration of components
SAP Technical Overview
Business API (BAPI)
• Defined method of a business object
• Standardized methods allow customers to
integrate their software with R/3
• Object-oriented in nature
• BAPIs from all development platforms
that support the SAP Remote Function
Call (RFC) protocol
SAP Technical Overview
Other Interfaces
• Application Link Enabled (ALE) - Interface
that links different SAP systems and
external application systems
– Transport special data structures known as
IDOCS (Intermediate Documents)
• Object Linking and Enabled (OLE) -
enables desktop users to access SAP data
from many OLE client programs
Basic Functions of Basis
SAP Technical Overview
Basis Functions
• Hardware and Database Administration
• User and Security Administration
• Client Maintenance
• Correction and Transport System (CTS)
• Data Dictionary
• Online Service System (OSS)
• Performance Monitoring and Tuning
SAP Technical Overview
Hardware and Database
Administration
• Hardware upgrades - adding memory or
servers
• Database backup and recovery
• Database optimization
• Disaster Recovery
SAP Technical Overview
User Administration
• Create users and assign profiles
• Modify, lock and unlock users
• Develop authorizations and profiles
SAP Technical Overview
Client Maintenance
• Create clients
• Copy and refresh clients
• Client imports and exports
• Delete and remove clients
• Modify change options
SAP Technical Overview
Correction and Transport System
R/3
System
R/3
System
R/3
System
Development ProductionQuality
Assurance
Change
Request
Moving changes from one R/3 system to another
SAP Technical Overview
Online Service System (OSS)
• OSS is a set of SAP’s online services such
as bug fixes and useful implementation
information
• OSS Notes
• Hotpacks
• Remote Connections
• Send questions to SAP
• ABAP registration
SAP Technical Overview
Performance Monitoring and
Tuning
• Check database usage and storage
capabilities
• Dialog response time
• Investigate ABAP short dumps
• Optimize performance characteristics
SAP Technical Overview
Computer Center Management
System (CCMS)
• Manages the entire system - database,
application, operating system
• Collection of tools and utilities which
allow you to monitor and manage the R/3
system
• Allows monitoring of multiple R/3
systems
• Comes FREE with each SAP system
SAP Technical Overview
Computer Center Management
System (CCMS) functions
• Starting and stopping instances
• Monitoring and analyzing workload
• Alert capabilities
• Operation modes and work process
automatic reconfiguration
• Instance profile checking and
maintenance
• Logon load balancing
Question & Answers
Should you require any further
information please do not hesitate to
contact us
• http://www.saponlinetrainings.net
• -sap scm online training
contact us:
• info@magnifictraining.com or +919052666559
• By Real Time Experts from Hyderabad,
• Bangalore
• ,India,USA,Canada,UK, Australia,South
• Africa.
Thank you !

Más contenido relacionado

Último

Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterMateoGardella
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.MateoGardella
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfSanaAli374401
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 

Último (20)

Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.Gardella_Mateo_IntellectualProperty.pdf.
Gardella_Mateo_IntellectualProperty.pdf.
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 

Destacado

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Destacado (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Sap basis user administration - online training session - newyorksys

  • 1. SAP BASIS - User Administration - Online Training Session - Newyorksys Online | classroom| Corporate Training | certifications | placements| support CONTACT US: MAGNIFIC TRAINING INDIA +91-9052666559 USA : +1-678-693-3475 info@magnifictraining.com www.magnifictraining.com
  • 2. SAP Technical Overview Learning Objectives • What the Basis system is • How does SAP handle a transaction request • Differentiating between the various work processes • Understanding the basic functions of the Basis Module
  • 3. SAP Technical Overview The Software-Oriented View of R/3
  • 4. SAP Technical Overview The SAP R/3 System Architecture • Implications for Application Programming – Separate presentation and application layers implies that when you run an application program that requires user interaction, control of the program is continually passed backwards and forwards between layers. – When a screen is ready for user input, the presentation layer is active, and the application server is inactive with regard to that particular program. – As a consequence, the program logic in an application program that occurs between two screens is known as a DIALOG STEP.
  • 6. SAP Technical Overview • Application Layer (cont.) – Application Server • R/3 programs run on application servers • The APPLICATION SERVER communicate with the presentation components, the database, and also with each other, using a MESSAGE SERVER. • Main components: –Work Processes (Dialog, Update, Enqueue, Batch, Spool) –Dispatcher –Gateway –Message Server The SAP R/3 System Architecture
  • 7. What happens when I send a request to SAP?
  • 8. SAP Technical Overview Application Server Presentation . . . Internet Application Database Communication SAPGUISAPGUI InternetOffice Work- process Work- process Work- process Dispatcher TCP/IP Remote SQL IPC Local Buffer for R/3 Data, DW-Objects, ABAP-Objects
  • 9. SAP Technical Overview Dispatcher • Program which manages resources of the R/3 applications • Receives requests from user and passes them to the corresponding work processes • Only one dispatcher per application server
  • 10. SAP Technical Overview Dispatcher Tasks • Balances the workload between the processes • Buffer management in main memory • Connection with the presentation level • Organization of the communication processes
  • 11. SAP Technical Overview Work Process • Responsible for executing R/3 application tasks Database Interface Task Handler ABAP/4 Processor Dialog Interpreter Work Process
  • 12. SAP Technical Overview Different Kind of Work Processes for different Tasks Dialog SAP DispatcherBatch Spool Update Enqueue S 12 9 6 3 11 1 7 5 8 4 210 B M G Message Gateway R/2 R/3 V E
  • 13. SAP Technical Overview Dialog Work Processes Dialog • Responsible for the interactive tasks of the R/3 system • Dialog work processes execute only one dialog step at a time and are immediately freed for the next user request • Constantly switching between users
  • 14. SAP Technical Overview Background Work Processes • Responsible for executing ABAP programs submitted for background execution • Batch jobs schedule the sequence of program execution • Used for running long and time consuming programs Batch 12 9 6 3 11 1 7 5 8 4 210 B
  • 15. SAP Technical Overview Spool Work Processes • Responsible for formatting the data for printing and passing it to the host spool system • Only one spool work process allowed per server Spool
  • 16. SAP Technical Overview Enqueue Work Processes • Responsible for the lock management system • Synchronizes database access for the multiple application servers and work processes • Only one enqueue process per R/3 system to ensure data integrity Enqueue E
  • 17. SAP Technical Overview Update Work Processes • Responsible for making database changes requested by dialog and background processes • For better performance, this process should be on the database server Update V
  • 18. SAP Technical Overview V1 vs. V2 Update Processes • Time-critical processes are inside V1 and less critical ones within V2 • Error situations in – V1 : changes rolled back and V2 components not executed – V2 : only changes of V2 components rolled back Update V
  • 19. SAP Technical Overview Message Server • Used by different application servers to exchange data and internal messages • Routes messages, such as update or batch job starts, between application servers • One message server per system M Message
  • 20. SAP Technical Overview Gateway Server • Allows communication between R/3, R/2, and external applications • Exchanges large amounts of information between application servers • Gateway can reside on any of the connected systems G Gateway R/2 R/3
  • 21. SAP Technical Overview Work Processes • Number of work processes can only be changed after restarting the system • Should have at least two dialog work processes • Need to have at least one V1 and V2 processes • Number of spool processes cannot be changed
  • 22. SAP Technical Overview Application Server Presentation . . . Internet Application Database Communication SAPGUISAPGUI InternetOffice Work- process Work- process Work- process Dispatcher TCP/I P Remote SQL IPC Local Buffer for R/3 Data, DW-Objects, ABAP-Objects
  • 23. SAP Technical Overview TCP/I P Processing of a SAP Transaction (1) Presentation . . . Internet Application Database Communication SAPGUI Work- process Work- process Work- process Dispatcher Remote SQL IPC Local Buffer for R/3 Data, DW-Objects, ABAP-Objects Start Transaction Assign User request to Workprocess Fetch data from buffer/database Re- turn data for next step 1 2 3 4 5
  • 24. SAP Technical Overview Processing of a SAP Transaction (2) Presentation . . . Internet Application Database Communication SAPGUI Work- process Work- process Work- process Dispatcher TCP/IP Remote SQL IPC Local Buffer for R/3 Data, DW-Objects, ABAP-Objects 1 2 3 5 6 8 Fetch data from buffer/database 9 7 10 Assign User request to Workprocess Re- turn data for next step
  • 25. SAP Technical Overview Processing of a SAP Transaction (3) Presentation . . . Internet Application Database Communication SAPGUI Work- process Work- process Work- process Dispatcher TCP/IP Remote SQL IPC Local Buffer for R/3 Data, DW-Objects, ABAP-Objects 1 2 3 4 5 6 8 9 7 10 11 12 13 14 Update data on database End transaction Request for update
  • 26. SAP Technical Overview SAP Communication Interfaces High Level Low level SAP Technology Communication Interface Communication System Mail MAPI SMTP X.400 EDI Business API RFC CPI-C Q-API IDOC ALE OLE
  • 27. SAP Technical Overview Business Framework Business Component BAPI ALE BAPI Business Component • Business Component - contains business functionality • BAPI - interface between the components • ALE - integration of components
  • 28. SAP Technical Overview Business API (BAPI) • Defined method of a business object • Standardized methods allow customers to integrate their software with R/3 • Object-oriented in nature • BAPIs from all development platforms that support the SAP Remote Function Call (RFC) protocol
  • 29. SAP Technical Overview Other Interfaces • Application Link Enabled (ALE) - Interface that links different SAP systems and external application systems – Transport special data structures known as IDOCS (Intermediate Documents) • Object Linking and Enabled (OLE) - enables desktop users to access SAP data from many OLE client programs
  • 31. SAP Technical Overview Basis Functions • Hardware and Database Administration • User and Security Administration • Client Maintenance • Correction and Transport System (CTS) • Data Dictionary • Online Service System (OSS) • Performance Monitoring and Tuning
  • 32. SAP Technical Overview Hardware and Database Administration • Hardware upgrades - adding memory or servers • Database backup and recovery • Database optimization • Disaster Recovery
  • 33. SAP Technical Overview User Administration • Create users and assign profiles • Modify, lock and unlock users • Develop authorizations and profiles
  • 34. SAP Technical Overview Client Maintenance • Create clients • Copy and refresh clients • Client imports and exports • Delete and remove clients • Modify change options
  • 35. SAP Technical Overview Correction and Transport System R/3 System R/3 System R/3 System Development ProductionQuality Assurance Change Request Moving changes from one R/3 system to another
  • 36. SAP Technical Overview Online Service System (OSS) • OSS is a set of SAP’s online services such as bug fixes and useful implementation information • OSS Notes • Hotpacks • Remote Connections • Send questions to SAP • ABAP registration
  • 37. SAP Technical Overview Performance Monitoring and Tuning • Check database usage and storage capabilities • Dialog response time • Investigate ABAP short dumps • Optimize performance characteristics
  • 38. SAP Technical Overview Computer Center Management System (CCMS) • Manages the entire system - database, application, operating system • Collection of tools and utilities which allow you to monitor and manage the R/3 system • Allows monitoring of multiple R/3 systems • Comes FREE with each SAP system
  • 39. SAP Technical Overview Computer Center Management System (CCMS) functions • Starting and stopping instances • Monitoring and analyzing workload • Alert capabilities • Operation modes and work process automatic reconfiguration • Instance profile checking and maintenance • Logon load balancing
  • 41. Should you require any further information please do not hesitate to contact us • http://www.saponlinetrainings.net • -sap scm online training contact us: • info@magnifictraining.com or +919052666559 • By Real Time Experts from Hyderabad, • Bangalore • ,India,USA,Canada,UK, Australia,South • Africa.