Pages

Download SAP Certification Material for FREE @ http://sap-ebooks-den.blogspot.com

Friday, June 29, 2012

System Trace: Relevant Profile Parameters

With system profile parameters, you can set the maximum size of the SQL and system trace files and specify its path name. All trace parameter names begin with the string rstr/. For default values and parameter documentation, see transaction RZ11.

The trace parameters that you can set are as follows:

Profile Parameters

Meaning

rstr/buffer_size_kB

The SAP trace (such as SQL trace) writes the trace data to the trace files. For performance reasons, this is done via an internal buffer and not directly. The profile parameterrstr/buffer_size_kB determines the size of this buffer in kilobytes.

rstr/filename

rstr/max_files

rstr/max_filesize_MB

Since Release 6.10, the SAP trace stores the data in several files. These files are written to sequentially. The parameter rstr/filenamesets the basic name of these files. There is always one file with the basic name. When this file is full (parameterrstr/max_filesize_MB), the file is re-named and a new file is created with the basic name. When the file is re-named, a number from 00 to 99 is added to the filename. The parameter rstr/max_files determines how many files there are in total. If this number is exceeded. the files are overwritten.

The System maintains additional trace parameters which you should not change.

You can obtain further information on the parameters using transaction RZ11.

Protecting Trace Information from Being Overwritten


If you want to protect a trace from being overwritten later, choose the Save button on the initial screen, or choose Go To -> Save from the menu.

On the next screen, you can create a short text for a trace, and choose whether the new file that is created specifically for this trace should be automatically created, or whether you want to specify a file. If you do not specify an absolute path, a file of this name is created in the log directory. In the case of automatic file creation, the system determines the filename and stores the file in the log directory. The advantage of this is that, unlike a manually created file, the F4 help can be used for to search for the file from the analysis screen.

If you choose automatic creation, you can delete the file again in this transaction (use the  button in the analysis screen). This is not possible if you specify a filename. If you want to delete this kind of file, you have to do so at the operating system level.


(Enter transaction code ST01. Alternatively, choose Administration -> System administration -> Monitor -> Traces -> SAP System Trace.)

Interpreting the Analysis in System Trace

Information in trace entries includes the following:

  • Time (to the millisecond). Double-click to see the time to the microsecond.
  • Type of the trace entry, that is, the component selected when the trace was activated or when the analysis settings were made.

Component

Key

Object

Authorization check

AUTH

Authorization object used

Kernel functions

CMOD

Corresponding C function in kernel

General kernel

USER

C module in the kernel in which the trace is written

Database accesses (SQL trace)

SQL

Database table being accessed

Table buffer trace

BUFF

Database table being accessed

RFC calls

RFC

Called function module

Lock operations

ENQUE

Lock object used

  • Duration of the trace, provided this is useful. In the case of an authorization trace, a USER trace (free text that can be written by a kernel module), and the beginning of a C function in CMOD trace, a duration is not useful and therefore not required.
  • Object: the object is different, depending on the trace component, and can be obtained from the table above.
  • Trace message text

Double-click on a line to get additional detailed information on this trace record.

Options for Trace Analysis in System Trace


If you choose Analysis, a screen opens on which you can make various analysis settings.

Besides determining the trace components, you can restrict the analysis to particular users, work processes, transactions, and times.

For performance analysis, you can use the field Duration to analyze only records for which the duration of a trace record exceeds a specific period of time. This also applies to trace components that have a duration. This setting does not apply to the authorization trace.

You can also set a restriction that only specific tables are included in the trace analysis (this also applies to the SQL and the table buffer trace). You can enter two table names directly on the screen; you can add other tables using the button of the same name. The button changes color if there are more than two tables in the list.

In the lower part of the screen, you can specify a separate file, in order to protect a trace from being automatically overwritten. If you specify a separate file here, the "normal" trace files are ignored and the specified file is used.

Besides the  button, there are 3 more buttons:

 Filter history

This shows you that last 10 filter settings of the user in question.

 Use default values

The filter gets the following default values: own user, own client, from 10 minutes ago (rounded off) until now, all trace types, not tables D010* and D020*.

 Delete all values

This button deletes the values in all fields.

The menu "Filter Settings" also contains all these functions.

Once you are finished making the settings for the analysis criteria, choose  to display the results of the analysis.

Activating and Deactivating System Traces in SAP


First configure the trace components. If necessary, restrict the selection using the pushbutton General filter, and then choose Trace on. You can also change the components while the trace is activate by choosing Change trace.

You can use both Settings buttons to save your settings and call them up again later.

You can use the Save button (or Go To -> Save in the menu) to save trace records in dedicated files. 

You are presented with a screen on which you can create a remark for the trace file and select whether this should be created automatically or whether a file has to be created for this purpose. 

System Traces in SAP

If you want to record the internal SAP system activities, use the function SAP system trace. Recording the processes in your application server enables you to monitor the system and facilitates troubleshooting.

The system trace is primarily used when an authorization trace is to be used. The system log or the developer trace are recommended for system monitoring and problem analysis.

The following components can be monitored using the SAP system trace:

  • Authorization checks
  • Kernel functions
  • Kernel module
  • Database accesses (SQL trace)
  • Table buffer
  • RFC calls
  • Lock operations (client side)

The last 4 components can also be monitored using Performance Analysis (transaction ST05). 

There are two ways of selecting what traces you want displayed. In the initial screen, the components to be logged are selected and more filters are set, if required. The filters and restrictions for the traces that have these settings can be set when the traces are evaluated.



Trace Facility in SAP

With the trace facility, you can trace various operations in your SAP System. You thus monitor the system and reduce the problems that occur

You can use the trace facility to monitor the following operations in your system:

  • SQL database accesses
  • ABAP programs
  • Internal operations in the SAP System and authorization check.You can use transaction ST01 for this.
  • Traces generated by SAP processes (developer traces).

These are the trace files that are written by the individual host system processes. These trace files contain highly technical information for use in the event of problems in your System. 


To access the trace facility, choose Tools ® Administration ® Monitor ® Traces.

Example of Trace Logging in Use

Let us assume that your work processes terminate sporadically. In the work process trace file, there is always a message like the following just before the termination point:

*** Error => ShmProtect(1002,3) shmat(4,0x700000490000000,(SHM_RND 0)) (22: Invalid Argument) [shmux.c 2904]

However, you cannot reproduce the problem. You have configured 20 work processes and do not want the trace files to occupy more than 500 MB in the work directory.

In RZ11, set the parameters as follows:

Parameter

Setting

Reason

rdisp/TRACE_LOGGING

on, 10 m

Trace logging is active. When the trace files reach 10 MB, they are copied to <file name>.old. In the case of 20 work processes, this makes 400 MB, plus the dispatcher trace and some buffer.

rdisp/TRACE_PATTERN_0

Error => ShmProtect* shmat*

The wildcard symbol * can be any character string.

rdisp/TRACE_SEARCH_LIST

WP, DISP

Only the work process trace file and the dispatcher trace file are logged. The gateway, the message server, and the ICM are not relevant here.

rdisp/autothtime

Keep the default of 60.

It should not be necessary to change the time interval at which the task handler checks the trace files. However, if so much trace is written that the size limit is reached within one minute, this value can be reduced.

Now change the trace level from the default 1 to 2 or 3. To do this, open SM50, select all work processes, and choose Process -> Trace -> Active ComponentsYou can specify the components and the trace level in the dialog box that opens. For an error of this type, it should be sufficient to select the components TaskhandlerABAP Proc., Scrn.proc., and Extended Memory. To increase the trace level of the dispatcher, choose Process ®Trace ® Dispatcher ® Change trace level.

You can now let the system run and check periodically whether the pattern was found. If the pattern is found, the parameter rdisp/TRACE_LOGGINGis automatically set back to OFF, and the trace level is set back to 1 (default). This is indicated in SM50 when the processes no longer have a yellow background. Once this happens, you can look in the trace files of the work processes and in the older trace files (files with the extension .old) to see what preceded the error.

Once you have finished your analysis, you can either reset the parameters in RZ11 or re-start the system. Any dynamic changes made to parameters are then lost.

Activating Trace Logging in SAP

  1. Activate trace logging by setting the parameter rdisp/TRACE_LOGGING to ON. Also specify the size at which, once reached, the trace file is logged and the trace level is reset to 1.
  2. You can dynamically change this parameter in transaction RZ11.

    The parameter values have the following syntax:

    rdisp/TRACE_LOGGING = on, <n> [k m] off


    The first part specifies that logging is active. The value here can be either ON or OFF. If logging is active, you can specify the file size in the second part.

    rdisp/TRACE_LOGGING = off : no trace logging

    rdisp/TRACE_LOGGING = on, 1000: trace is logged if the trace file contains more than 1000 bytes

    rdisp/TRACE_LOGGING = on, 20 k: trace is logged if the trace file contains more than 20 KB

    rdisp/TRACE_LOGGING = on, 30 m: trace is logged if the trace file is greater than 30 MB


  3. Use the parameter rdisp/TRACE_PATTERN_0 to specify a trace pattern for automatically switching off the SAP trace. This parameter takes effect only if trace logging is activated using rdisp/TRACE_LOGGING. In this case, the trace files are searched for the search pattern before being automatically reset. If the pattern is found, trace logging is deactivated and the trace level is reset to 1. The following trace files are included in the search:
  • Work process traces dev_w*
  • Dispatcher trace dev_disp
  • Gateway trace dev_rd
  • ICM trace dev_icm
  • Message server trace dev_ms

The search pattern can contain the special character * for any character string, and ? for any character. The parametersrdisp/TRACE_PATTERN_1 and rdisp/TRACE_PATTERN_2 can be used to define additional search patterns. All search patterns use the or operator; in other words, if one of the patterns is found, the trace level is reset.

Developer Trace Logging in SAP

You can use this function if you want to activate trace level 2 or 3 for a long period, but want to ensure that the trace file does not become too large. This is useful if you are trying to locate a sporadic error. If you are waiting for a particular trace output, you can specify that the trace file should be saved after the pattern you are searching for is found, and that the trace level should then be reset to 1.

In this way, you can easily control the size of the trace files. You can also search the trace file for a particular character string without running the risk of filling up your hard disk if a high trace level is active.


Set Size Limit for Trace Files

To activate trace logging, you have to set the parameter rdisp/TRACE_LOGGING. Here, you also specify the maximum size of the trace file.

If the trace file reaches that size, the content is written to a log file with the name of the trace file and the extension .old. The current trace file is then reset. The parameter rdisp/autothtime is used to define how often the trace file should be checked and, if necessary, reset. The default is 60 seconds.

Trace logging is active for the following trace files:

  • Work process traces dev_w*
  • Dispatcher trace dev_disp
  • Gateway trace dev_rd
  • ICM trace dev_icm
  • Message server trace dev_ms


Specify Trace Components

The parameter rdisp/TRACE_SEARCH_LIST is used to specify a list of trace components that you want taken into account in the automatic trace search.

As a value for this parameter, you can enter a list with the following elements (use a comma or a semicolon to separate elements):

  • ALL: all trace files are searched (default)
  • WP: all work process trace files are searched
  • DISP: the dispatcher trace file is searched
  • GWRD: the gateway trace file is searched
  • ICMAN: the ICM trace file is searched (if available)
  • MS: the message server trace file is searched (if available)

rdisp/TRACE_SEARCH_LIST = WP, ICMAN means that all work process trace files and the ICM trace file are searched.


Search Trace Files for a Pattern

The parameter rdisp/TRACE_PATTERN_<x> is used to search the trace files for a specific pattern. When the specified file size if exceeded, the file is then searched for this pattern. If the pattern is found, the trace level is reset to 1 for all active components.

You can also use wildcards (* for any character string, ? for a single character) in the pattern. Use a backslash (\) to ensure that special characters are treated as ordinary characters. See below for examples.

For the sake of readability, the search patterns in the following examples are enclosed in inverted commas. When specifying your own search terms in RZ11 or in the profiles, however, enter them without inverted commas.

  • The pattern "word1 * word?" is found in the line "one example with word1 and word2", but not in the line "one example with word1 and word".
  • The pattern "10 \* 10 =" is found in the line "multiplication: 10 * 10 = 100", but not in the line "addition: 10 + 10 = 20".

Displaying Developer Traces

You can display developer traces from within the SAP System and from the operating system level.


Within the SAP System:

  1. Choose Administration -> System management -> Monitor -> ServerAlternatively, enter transaction code SM51.
  2. Select the server whose developer traces you want to display. Then choose Goto -> Traces.
  3. The system presents the list of developer traces available at the server. (The names of the files are listed below.)

  4. Choose Attributes to display summary information on the trace, including the user who created it and the time stamp.

Choose Display to display its contents.

You can also display work process traces from the Process overview function (transaction SM50) in the same menu path.


From the operating system:

  1. Log on to the correct host system.
  2. You need to access the work directory of the SAP application server whose traces you wish to see. This directory is always local, located on the host on which an SAP application server is running. You'll therefore need to log on to the host system of the SAP application server.

  3. Change to the work directory of the SAP application server.
  4. Typical menu path (UNIX; other systems similar): /usr/sap/<SYSTEM ID>/<INSTANCE>/work

    or /usr/sap/CLP/D01/work

  5. Display the list of files in the directory. (The names of the files are listed below.) Use a host system command like more to display the files.

Always display trace files from within the SAP System if you can. The files are presented in the SAP System in an easier-to-read format than they are at the operating system level.


Core files, profile and start traces: Should one of the work processes of an application server terminate abnormally with core dump, you will also find the core files in the work directory.

Further, you can display the start-up and instance profiles used by an SAP application server along with the developer traces. Server start-ups are recorded in the sapstart<n>.trc files.

Activating / Deactivating Developer Traces from the System Profile & Command Line

Activating / Deactivating Developer Traces from the System Profile:

You can also set trace options instance-wide with the rdisp/TRACE=<n> option. The trace values are the same as those in the list above.

Setting the trace parameter in the instance profile of a particular server activates developer traces only in that server.

Setting the parameter in the default profile would activate traces in all servers (excepting those whose instance profiles specify a different parameter value).


Activating / Deactivating Developer Traces from the Command Line:

You can also turn tracing on, or set the various trace levels by entering the appropriate commands in the command line. This is possible in all SAP programs. Typically, you must add these options to the start commands for SAP processes in the start-up profile of an instance of your SAP System. 

The following criteria are available:

  • TRACE=0: No trace
  • TRACE=1: Write error messages in the trace file.
  • TRACE=2: Full trace. The trace entries that are actually written can vary with the SAP program that is being traced.
  • TRACE=3: Additionally, trace data blocks.

Turning Developer Traces On and Off

You can turn developer traces on and off and set the trace level dynamically from within the SAP System or with system profile parameters or command-line arguments.

Activating / Deactivating Developer Traces from within SAP System:

  1. Choose Administration -> System management -> Monitor -> System monitoring -> Process overviewAlternatively, enter transaction code SM50.
  2. Choose the work process in which you wish to increase the trace level. To trace all work processes of a server, use the system profile method shown below.
  3. Choose Process -> Trace -> Active components.
  4. The system presents a dialog screen that shows the current status of the developer trace.


Turn developer tracing on and off for different server components by selecting the appropriate checkboxes.

Set the degree of detail by entering a number in the Level field. Possible trace levels are as follows:

– 0: No trace.

– 1: Write error messages in the trace file.

– 2: Full trace. The trace entries that are actually written can vary with the SAP program that is being traced.

– 3: Additionally, trace data blocks.

Error and System Log Entries in Trace Files


Developer traces contain technical information for use in the event of problems with your System. Using the entries in the developer traces requires a sophisticated knowledge of the host systems in which your SAP System is running and of the SAP System itself.


The traces can be useful in diagnosing host system and SAP-internal problems that are affecting your SAP System.

Developer traces are written in files in the work directory of the SAP application server that generated the trace.


In the files, lines that contain error information begin with *** ERROR =>. Lines for which system log entries are written start with *** LOG <message ID>.

An "error line" contains the name of the calling function, the operation that failed, the error number from the host system (if a system call is involved), and the name of and line in the C module that failed.



File Names of SAP Developer Traces

Developer Trace File Names

Component

File Name

Dispatcher

dev_disp

Work Process

 

Task handler

dev_w<n> n is the range from 0 to one less the number of work processes.

Dynp (screen processor)

dev_dy<n>

Roll

dev_ro<n>

Paging

dev_pg<n>

DB interface

dev_db<n>

ABAP processor

dev_ab<n>

Enqueue (lock)

dev_eq<n>

Logging

dev_lg<n>

Spool

dev_w

Message server

dev_ms<n>

SAPGUI (presentation)

dev_st<logon name>

APPC-server (CPIC gateway)

dev_appc

RFC (Remote Function Call) facility

dev_rfc, dev_rfc<n>

dev_rfc traces RFC calls to external functions (written in C or Visual Basic).

dev_rfc<n> traces RFC calls that are executed in R/3 work processes. <n> is the number of the work process in the server (as shown above). A work process uses the same log file across RFC calls.

Gateway

dev_rd

R3trans and tp transport programs

dev_tp

Monitoring infrastructure (test mode only)

dev_moni

In normal operation, you will not see this file. It is used only by test tools of the monitoring infrastructure. It therefore appears only if the test tools must be activated during a support session.

 

SAP BASIS Material from Help Portal

1) Basis (BC) 
2) Basis
3) Batch Management (LO-BM)
4) BC - ABAP Dictionary
5) BC ABAP Workbench Tools 
6) BC ABAP Workbench Tutorial
7) ABAP Programming (BC-ABA)
8) BC Basis Programming Interfaces 
9) BC - Business Workplace 
10) BC - Central Maintenance and Transport Objects 
11) BC Data Modeler 
12) BC Documentation of System Objects
13) BC Extended Applications Function Library
14) BC - Namespaces and Naming Conventions (BC-CTS-NAM) 
15) BC R/3 Database Guide:DB2/400 
16) BC R/3 Database Guide: DB2 Universal Database for UNIX & Windows 
17) BC R/3 Database Guide: Informix 
18) BC SAPconnect
19) BC SAP Graphics: Programming Interfaces
20) BC SAP Graphics: User's Guide 
21) BC - SAP Printing Guide 
22) BC SAPscript Raw Data Interface
23) BC SAPscript: Printing with Forms
24) BC - SAP Style Guide
25) BC Style and Form Maintenance 
26) BC System Services 
27) BC The SAP Communications Server
28) BC - Word-Processing in the SAPscript Editor 
29) Desktop Office Integration (BC-CI)
30) SQL Studio (BC) 
31) Reference Manual 7.2 (BC)
32) Messages 6.2 (BC) 
33) Messages 7.2 (BC) 
34) Network Integration Guide (BC-NET) 
35) Updates in the R/3 System (BC-CST-UP) 
36) Users and Roles (BC-CCM-USR) 
37) The SAP Lock Concept (BC-CST-EQ) 
38) The Test Workbench in the SAP System (BC-CAT-PLN) 
39) The Appointment Calendar (BC-SRV-GBT)
40) The BAPI Gateway Component (BC-FES-AIT) 
41) Terminology and Glossary in SAPterm (BC-DOC-TER) 
42) Business Configuration Sets (BC-CUS)
43) Business Document Service (BC-SRV-BDS) 
44) Central Adress Management (BC-SRV-ADR) 
45) Change and Transport System - Overview (BC-CST) 
46) Changing the SAP Standard (BC) 
47) Computing Center Management System (BC-CCM) 
48) Controls Tutorial (BC-CI)
49) Repository Service Component (BC-FES-AIT) 
50) Generic Object Service (BC-SRV-GBT) 
51) Hypertext Structure Maintenance (BC-DOC-DTL) 
52) Generic Business Tools for Application Developers (BC-SRV-GBT)

Thursday, June 14, 2012

Knowledge Management - Introduction

With the Knowledge Management functional unit, SAP NetWeaver provides a central, role-specific point of entry to unstructured information from various data sources. This unstructured information can exist in different formats such as text documents, presentations, or HTML files. Workers in an organization can access information from different source such as file servers, their intranet, or the World Wide Web. A generic framework integrates these data sources and provides access to the information contained in them through the portal.


The Knowledge Management functional unit supports you in structuring information and making it available to the correct target audience. You can use the different functions on all content of integrated data sources, as long as the technical conditions are met.


  • Knowledge Management is a part of SAP NetWeaver Enterprise Portal.
  • The entire functional scope and configuration of the Knowledge Management capabilities are available in portal iViews.
  • To run Knowledge Management, you also require the standalone engine Search and Classification (TREX).


Knowledge Management comprises the following functions:

Function

Description

Integrating Repositories

Unstructured information is stored in various types of repository such as file servers or document management systems. You can use preconfigured repository managers to integrate repositories and make their content accessible through a central entry point in the portal. Open programming interfaces (APIs) allow customers and partners to develop repository managers for other storage systems.

You can also store documents in one of KM's own repositories.

Navigating in Folders

Portal users can navigate in the folders of all integrated repositories and access the documents they contain. Access to folders and documents is controlled using permissions.

The user interface for navigating in folders can be configured flexibly and modified to suit various roles. Portal users can personalize the presentation of the user interface. Open interfaces allow you to extend the user interface by integrating your own functions into the standard system.

Search

The search function finds documents in all integrated repositories. The system displays only documents for which the current user has read permission in the results list.

You can also include the content of Web sites in your indexes using Web crawlers. This information is then also available through the search function in your portal.

Taxonomies and classification

A taxonomy is a hierarchical structure of categories in which you classify documents according to content, organizational, or other criteria. Documents that are stored in different repositories can be included in the same category. Taxonomies portal users to navigate in a uniform structure throughout an organization even if information is stored in heterogeneous storage locations.

After the initial configuration has taken place, the system automatically classifies new and changed documents.

Knowledge Management services

Knowledge Management services enable functions that you can use on the content of all connected repositories as long as technical conditions are met. These services include subscriptions, ratings, public reviews, feedback, and personal notes.

You can also import documents into KM repositories from external sources by using the content exchange service.

Document creation and publishing

Every portal user can create information in the portal, provided he or she has the necessary permissions.

You can upload documents that you created using a PC application directly to a KM folder. You can also use forms to create information directly in the Web browser.

The publishing process is supported by various functions such as the approval workflow.

You can assign metadata to documents and other objects to make the knowledge available in your company more usable.

Web Page Composer - Introduction

Web Page Composer is a tool for business users that facilitates the creation and management of portal pages that can combine business applications with user-generated Web content and static content. In this way, major content creation activities can be performed directly by business users, enabling IT personnel to focus on core tasks and innovation.


Web Page Composer provides an intuitive work environment that is fully based on standard portal capabilities. Applications and content can be integrated from SAP and non-SAP sources. Portal pages can be enriched with applications and user-generated, unstructured content such as articles, news, documents, and banners.


  1. Administrators perform configuration tasks to set up and maintain Web Page Composer.

    .

  2. Business users work in the Web Page Composer staging area to create and maintain areas and pages as well as the Web content that they can contain.


  3. Developers can extend Web Page Composer capabilities. For example, you can enable connecting between content items in a page ("mashups"), extend the standard notification mechanism, or implement a custom content provider.


Wednesday, June 6, 2012

SAP eBooks HUGE Collection - FREE Download (Cloudzer Links)


SAP FUNDAMENTALS
http://cloudzer.net/file/8wfglhdq/SAPNW - SAP NetWeaver - Overview - Participant Handbook.pdf
http://cloudzer.net/file/wo4n6iet/SOA100 - SAP Enterprise SOA - Overview.pdf
http://cloudzer.net/file/hq2we9ql/SAPNW - SAP NetWeaver - Overview - Instructor Handbook.pdf
http://cloudzer.net/file/dm65fx70/SAPHR -  mySAP ERP Human Capital Management - Overview.pdf
http://cloudzer.net/file/3ttzuwub/SAPFIN - mySAP ERP Financials - Participant Handbook.pdf
http://cloudzer.net/file/d2yu458h/SAPEP - SAP Enterprise Portal Fundamentals - Participant Handbook.pdf
http://cloudzer.net/file/5p0k0y5r/SAPEPR - mySAP e-Procurement Solution.pdf
http://cloudzer.net/file/ba1iimh0/SAP01 - SAP Overview - Participant Handbook.pdf
http://cloudzer.net/file/kks8qixw/SAPBI - Business Intelligence - Participant Handbook.pdf
http://cloudzer.net/file/g9rz1o4c/SAPIHC - Overview of SAP for Healthcare.rar
http://cloudzer.net/file/g8nx5r0n/mySAP CRM - Overview of the mySAP CRM Solution.pdf
http://cloudzer.net/file/4iepmmye/SAPBO - SAP BusinessObjects for SAP Netweaver BI.pdf
http://cloudzer.net/file/zy4lddrr/mySAP SRM - Supplier Relationship Management.pdf


SAP ABAP

http://cloudzer.net/file/mddhoidb/BC100 - Introduction to Programming(Based on ABAP Examples).pdf
http://cloudzer.net/file/f291ns0e/BC400 - Introduction to the ABAP Workbench.pdf
http://cloudzer.net/file/jq1brun9/BC402 - Advanced ABAP.pdf
http://cloudzer.net/file/1fmdcnl7/BC404 - ABAP Objects-Object Oriented Programming in R3.pdf
http://cloudzer.net/file/xegy5583/BC405 - Techniques for List Creation and SAP Query.pdf
http://cloudzer.net/file/3f83u7qy/BC406 - Advanced Techniques of List Processing.pdf
http://cloudzer.net/file/jteqauys/BC411 - Advanced ABAP Programming.pdf
http://cloudzer.net/file/c09pm5ti/BC414 - Prog Database Updates.pdf
http://cloudzer.net/file/ayfcdmwo/BC416 - ABAP Web Services.pdf
http://cloudzer.net/file/s7at6o8o/BC420 - Data Transfer.pdf
http://cloudzer.net/file/4i1q256z/BC425 - Enhancements And Modifications.pdf
http://cloudzer.net/file/i62b7nld/BC427 - Enhancement Framework.pdf
http://cloudzer.net/file/w9oqe35j/BC430 - ABAP Dictionary.pdf
http://cloudzer.net/file/u81y1ukt/BC440 - Developing Internet Application Components.pdf
http://cloudzer.net/file/2b5w66wy/BC470 - Form Printing with SAP Smartforms.pdf
http://cloudzer.net/file/1r9u13xr/BC620 - SAP IDoc Interface (Technology).pdf

SAP BW
http://cloudzer.net/file/ilxoejyp/BIW Administration Workbench.pdf
http://cloudzer.net/file/8epddnex/BIW System Administration Tasks.pdf
http://cloudzer.net/file/xij78l3p/BO100 - SAP BusinessObjects XI Integration for SAP NetWeaver BW.pdf
http://cloudzer.net/file/xmbmwj5g/BOCE10 - Crystal Reports - Fundamentals of Report Design.pdf
http://cloudzer.net/file/apt334ep/BOE310 - BusinessObjects Enterprise XI 3.03.1 - Administration and Security.rar
http://cloudzer.net/file/5wndt8vh/BOE310 - SAP BusinessObjects Business Intelligence Platform - Administration and Security.pdf
http://cloudzer.net/file/w4z04v0l/BOE320 - SAP BusinessObjects Business Intelligence Platform - Administering Servers (Windows).pdf
http://cloudzer.net/file/cyra7yrz/BOU310 - BusinessObjects XI 3.03.1 Universe Design.pdf
http://cloudzer.net/file/pnr5k9je/BOW310 - BusinessObjects Web Intelligence XI 3.03.1 - Report Design.pdf
http://cloudzer.net/file/kfsi82cb/BOW310 - Interactive Analysis Report Design I.pdf
http://cloudzer.net/file/26jor2ad/BOW320 - BusinessObjects Web Intelligence XI 3.03.1 - Advanced Report Design.pdf
http://cloudzer.net/file/33szof2u/BOX310 - SAP BusinessObjects Dashboards 4.0 (Core).pdf
http://cloudzer.net/file/4z0ab3la/BOX310 - SAP BusinessObjects Dashboards 4.0 Core.pdf
http://cloudzer.net/file/9bubymw6/BPC340 - SAP Business Objects Planning and Consolidation - Focus on Consolidation.pdf
http://cloudzer.net/file/cvw2n6nk/BPC410 - SAP BusinessObjects Planning and Consolidation%2C version for the Microsoft Platform - Administration.pdf
http://cloudzer.net/file/by9mog4t/BPC420 - SAP BusinessObjects Planning and Consolidation%2C Version for SAP NetWeaver - Administration.pdf
http://cloudzer.net/file/d2eh6sp7/BPC440 - SAP Business Objects Planning and Consolidation - Consolidation.pdf
http://cloudzer.net/file/7l2hn5l2/BW Authorization - Participant Handbook.pdf
http://cloudzer.net/file/vudsqngt/BW Extraction.pdf
http://cloudzer.net/file/7k7md91t/BW Overview - Participant Handbook.pdf
http://cloudzer.net/file/6ju1whtt/BW Reporting - Participant Handbook.pdf
http://cloudzer.net/file/8rt3fq12/BW200 - Business Information Warehouse - Overview.pdf
http://cloudzer.net/file/d09nw1vx/BW205 - Business Information Warehouse - Analysis.pdf
http://cloudzer.net/file/aed5f7lh/BW207 - Business Information Warehouse - Reporting Management.pdf
http://cloudzer.net/file/yo9w7f9z/BW210 - Business Information Warehouse(BW) - Warehouse Management.pdf
http://cloudzer.net/file/v1goeaee/BW257 - Business Information Warehouse - Analysis and Reporting Management..pdf
http://cloudzer.net/file/rkjnkivo/BW257 - Business Information Warehouse - Analysis and Reporting Management.pdf
http://cloudzer.net/file/4vxr3e7u/BW305 - Business Information Warehouse - Reporting & Analysis.pdf
http://cloudzer.net/file/99skj4tg/BW306 - Enterprise Reporting%2C Query and Analysis (Part II).pdf
http://cloudzer.net/file/96xy8e32/BW310 - Data Warehousing.pdf
http://cloudzer.net/file/qi8glfcn/BW315 - Reporting Management.pdf
http://cloudzer.net/file/4c3cvqfq/BW330 - Business Information Warehouse - Modeling.pdf
http://cloudzer.net/file/83b6h37s/BW340 - Business Information Warehouse - Data Staging.pdf
http://cloudzer.net/file/34sz7f91/BW350 - SAP BW Extraction - Instructor Handbook.pdf
http://cloudzer.net/file/yn2qslr4/BW350 - SAP BW Extraction - Participant Handbook.pdf
http://cloudzer.net/file/6tw0j7st/BW360 - BW Performance & Administration.pdf
http://cloudzer.net/file/i8icwpe4/BW365 - Business Information Warehouse - Authorization.pdf
http://cloudzer.net/file/4046zjaw/BW370 - BI Integrated Planning.pdf
http://cloudzer.net/file/lsyby74q/BW380 - SAP Business Intelligence - Analysis Processes and Data Mining.pdf
http://cloudzer.net/file/l5tqsxos/CPM320 - SAP Business Planning and Consolidation.pdf
http://cloudzer.net/file/r3vm1tq2/DBW70E - BI - Delta Enterprise Data Warehousing SAP NetWeaver 7.0.rar
http://cloudzer.net/file/4uhpad93/DBW70P - SAP NetWeaver BI Integrated Planning.pdf
http://cloudzer.net/file/fssvgp9d/DBW70R - SAP BI - Enterprise Reporting%2C Query & Analysis Delta 3.x - BI.pdf
http://cloudzer.net/file/qlt2kmvs/SAP Business Information Warehouse 1.2B.pdf
http://cloudzer.net/file/qhapyxt5/SAPBO - SAP BusinessObjects for SAP Netweaver BI.pdf
http://cloudzer.net/file/hqo95ymh/TABW20 - Business Information Warehouse.pdf
http://cloudzer.net/file/aoy7ytob/TABW30 - Business Information Warehouse - Extraction and Special Topics.PDF
http://cloudzer.net/file/9flds4k8/TADMBO - Comparision Between OLAP(SAP BW) and OLTP(SAP R3).pdf
http://cloudzer.net/file/fgxsw1ei/TBW10 - Data Warehousing.pdf
http://cloudzer.net/file/0jsq10fx/TBW20 - Business Information Warehouse - Reporting & Analysis.pdf
http://cloudzer.net/file/bm8djdb1/TBW30 - SAP Business Intelligence - Data Staging.pdf
http://cloudzer.net/file/g34illjm/TBW45 - BI - Integrated Planning.pdf
http://cloudzer.net/file/k8h8fyke/TEWA50 - BW Query Tuning.pdf
http://cloudzer.net/file/i4pt3lkp/TU3BW - SAP BW Delta 3.0.zip
http://cloudzer.net/file/uy7vq3q9/TZBPC2 - SAP Business Planning and Consolidation 7.0 version for SAP NetWeaver.pdf

SAP CA
http://cloudzer.net/file/ld9191pz/CA080 - Project Management.pdf
http://cloudzer.net/file/bvrpxerw/CA210 - EDI Interface.pdf
http://cloudzer.net/file/58rosu7z/CA500 - CATS Cross-Application Time Sheet.pdf
http://cloudzer.net/file/r4x90cgw/CA550 - Inflation Accounting.pdf
http://cloudzer.net/file/k8jxc18n/CA610 - Test Workbench and Computer Aided Test Tool.pdf
http://cloudzer.net/file/dow29xp5/CA611 - Test Management with New eCATT.pdf
http://cloudzer.net/file/ev3ru494/CA705 - Basics of Report Painter - Report Writer.pdf
http://cloudzer.net/file/4jv7tcrx/CA710 - Advanced Functions with report Writer.pdf
http://cloudzer.net/file/6wu4l5ty/CA800 - Structures in Project Management.pdf
http://cloudzer.net/file/8i2u6plj/CA820 - Project Management - Logistics.pdf
http://cloudzer.net/file/46ug7tup/CA830 - Project Management - Accounting.pdf
http://cloudzer.net/file/yix1ugxl/CA840 - Project Management Reporting.pdf
http://cloudzer.net/file/f923fv53/CA940 - SAP R3 Application Security Concept.pdf
http://cloudzer.net/file/jplpf1e8/CA960 - Customizing and Transport Management.pdf


SAP E2E

SAP EP
http://cloudzer.net/file/jbl4chch/EP100 - Managing_Enterprise Portal Content.pdf
http://cloudzer.net/file/j40mcvzw/EP120 - SAP NetWeaver Portal Development.pdf
http://cloudzer.net/file/26mh75w1/EP130 - SAP Knowledge Management and Collaboration Development.pdf
http://cloudzer.net/file/ec1kemro/EP150 - SAP Enterprise Portal and KMC Development (Part 2).pdf
http://cloudzer.net/file/p1zuwrey/EP200 - SAP Enterprise Portal System Administration - Instrutor Handbook.pdf
http://cloudzer.net/file/fjmucpzc/EP200 - SAP Enterprise Portal System Administration - Participant Handbook.pdf
http://cloudzer.net/file/80klf1ci/EP300 - Configuration of Knowledge Management and Collaboration.pdf
http://cloudzer.net/file/vw7na1gb/EP600 - Configuration of the Universal Worklist.pdf
http://cloudzer.net/file/pxjc2p93/SRM 6.0 - Portal Configuration.pdf
http://cloudzer.net/file/xmkkwg8x/TEP10 - SAP Enterprise Portal Implementation and Operation.pdf
http://cloudzer.net/file/e61gld64/TEP10ao - SAP Enterprise Portal Implementation and Operation (Add-On).pdf
http://cloudzer.net/file/i259kt33/TEP50 - EP KMC Architekture & Operations.pdf
http://cloudzer.net/file/z9m6b13r/TEPD20 - SAP NetWeaver Portals Development.zip
http://cloudzer.net/file/2xhat2dx/TTEP01 - mySAP Enterprise Portals Configuration EP50.kep
http://cloudzer.net/file/egf2lyff/TTEP02 - mySAP Enterprise Portals Configuration EP502 - 1.kep
http://cloudzer.net/file/6d8qp48a/TTEP02 - mySAP Enterprise Portals Configuration EP502 - 2.kep

SAP XI/PI
http://cloudzer.net/file/cdwjtgbx/BIT100 - Integration Technology - Instructor Handbook.pdf
http://cloudzer.net/file/1t7m65ky/BIT100 - Integration Technology - Participant Handbook.pdf
http://cloudzer.net/file/sa27g2fp/BIT140 - XML in SAP Solutions - Instructor Handbook.pdf
http://cloudzer.net/file/bawfg4d0/BIT140 - XML in SAP Solutions - Participant Handbook.pdf
http://cloudzer.net/file/wedg0j3v/BIT300 - Integration Technology ALE.pdf
http://cloudzer.net/file/4c733ed0/BIT320 - EDI Integration Technology.pdf
http://cloudzer.net/file/emgipgga/BIT400 - SAP Exchange Infrastructure.pdf
http://cloudzer.net/file/idhnqarm/BIT400 - SAP Netweaver Process Integration.pdf
http://cloudzer.net/file/boa3e8jt/BIT400 - SAP Netweaver Process Integration.pdf
http://cloudzer.net/file/96dbhg41/BIT430 - Business Process Management.pdf
http://cloudzer.net/file/mpt3ck8y/BIT450 - SAP Exchange Infrastructure Development.pdf
http://cloudzer.net/file/rnuyze3d/BIT460 - SAP Exchange Infrastructure Mapping.zip
http://cloudzer.net/file/j3int3px/BIT525 - Developing BAPI Enabled Web Applications with Visual Basic.pdf
http://cloudzer.net/file/x4imof33/BIT526 - Developing BAPI-Enabled Web Applications with Java.pdf
http://cloudzer.net/file/ojgpl7yu/BIT528 - SAP.Net Connector Programming.pdf
http://cloudzer.net/file/66xt901h/BIT530 - Introduction to the SAP Business Connector.pdf
http://cloudzer.net/file/g59vyk2p/BIT531- SAP Business Connector Integrator.pdf
http://cloudzer.net/file/80r79wnm/BIT600 - SAP Workflow Concepts%2C Inboxes%2C Reporting%2C and Using Standard Templates.pdf
http://cloudzer.net/file/lg0ux27s/BIT601 - SAP Workflow Definition and Use of Customer-Specific Workflows.pdf
http://cloudzer.net/file/fg5obfkd/BIT603 - Workflow and Web.pdf
http://cloudzer.net/file/n3lsridb/BIT610 - SAP Workflow Programming.pdf
http://cloudzer.net/file/pbck26vc/BIT611 - SAP Business Workflow - Advanced Programming with ABAP OO.zip
http://cloudzer.net/file/4ezk9jhj/BIT614 - Content Management in mySAP CRM.pdf
http://cloudzer.net/file/6040ab9r/BIT615 - SAP Archive Link.pdf
http://cloudzer.net/file/4wlvo2y5/BIT640 - SAP Records Management in Detail.pdf
http://cloudzer.net/file/uj5pi75g/Mapping Functionality in XI.pdf
http://cloudzer.net/file/9jtn61j4/Release Notes for SAP NetWeaver’04 Exchange Infrastructure.pdf
http://cloudzer.net/file/ty7brsso/SAP Exchange Infrastructure Process Centric Integration.pdf
http://cloudzer.net/file/882e11s0/TBIT40 - XI Foundations.pdf
http://cloudzer.net/file/3znjncei/TBIT401 - SAP Exchange Infrastructure 3.0 - XI Foundations Workshop.pdf
http://cloudzer.net/file/hp11ela9/TBIT41 - Mapping Functionality in XI.pdf
http://cloudzer.net/file/4k0ehuoe/TBIT42 - Adapter Framework.rar
http://cloudzer.net/file/k8nh76ey/TBIT43 - ccBPM.rar
http://cloudzer.net/file/bu4t0pw4/TBIT44 - Mapping Adapters and BPM.pdf
http://cloudzer.net/file/h7svl3jw/TBIT51 -Implementation & Operation II.pdf
http://cloudzer.net/file/h6fiexmj/Using CMS for SAP XI 3.0.pdf

SAP MDM




SAP GRC
http://cloudzer.net/file/n4cpaqoa/SAP GRC Process Control 2.5 Workflow Customizing.pdf
http://cloudzer.net/file/7s8ci7l7/SAP GRC Process Control 2.5 User Defined Fields.pdf
http://cloudzer.net/file/nvfiq5jb/SAP GRC Process Control 2.5 Upload Master Data.pdf
http://cloudzer.net/file/2nxgfzu7/SAP GRC Process Control 2.5 Performance Increasing Actions.pdf
http://cloudzer.net/file/z3s7j82m/SAP GRC Process Control 2.5 Automated Controls Testing NWBC.pdf
http://cloudzer.net/file/loh5jpmf/SAP GRC Process Control 2.5 Admin Reports.pdf
http://cloudzer.net/file/3dn70x34/SAP GRC Process Control 2.5 Automated Controls Testing Customizing.pdf
http://cloudzer.net/file/jozii8gn/SAP GRC Access Control 5.3 - Post-Installation.pdf
http://cloudzer.net/file/bvd61kzb/SAP Governance Risk and Compliance Access Control 5.3 - Post-Installation - Superuser Privilege Management.pdf
http://cloudzer.net/file/t90rtdqt/Quick Reference Guide for Moving to Production.pdf
http://cloudzer.net/file/2bu3okp4/Organizational Rules and Organizational Level Reporting.pdf
http://cloudzer.net/file/mt0w1cnh/Offline-Mode Risk Analysis.pdf
http://cloudzer.net/file/yf45bagx/GRC Access Control - Risk Terminator Configuration (rev 1).pdf
http://cloudzer.net/file/rjyucpq3/Background Jobs for Risk Analysis and Remediation (formerly Virsa Compliance Calibrator).pdf
http://cloudzer.net/file/krj9sazv/SAP GRC Access Control 5.2 Implementation Guide for Enterprise Role Management.pdf
http://cloudzer.net/file/8fzuko7z/SAP Governance Risk and Compliance Access Control 5.3 - Post-Installation - ERM Part 2.pdf
http://cloudzer.net/file/j7lrefp4/SAP Governance Risk and Compliance Access Control 5.3 - Post-Installation - ERM Part 1.pdf
http://cloudzer.net/file/qy8e63yi/SAP GRC Access Control - Configuring Compliant User Provisioning (formerly Virsa Access Enforcer) into CUA Systems.pdf
http://cloudzer.net/file/vw991q6m/SAP Governance Risk and Compliance Access Control 5.3 - Post-Installation - CUP.pdf
http://cloudzer.net/file/xvyj6gjj/Risk Analysis and Mitigation Uniform Resource Identifier Configuration Quick Reference Guide.pdf
http://cloudzer.net/file/cd5xh7lm/Integration of Training and Verification System with CUP.pdf
http://cloudzer.net/file/552bveye/Integration of CUP and SPM Capabilities of GRC AC 5.3.pdf
http://cloudzer.net/file/n2w9c34l/How to Configure HR Triggers in CUP.pdf
http://cloudzer.net/file/vefphtrd/HR Triggers.pdf
http://cloudzer.net/file/b38v1y8d/Configuring Requestor Landing Page for Compliant User Provisioning (formerly Virsa Access Enforcer).pdf
http://cloudzer.net/file/yynvsh54/Configuring Multiple User Detail Sources in CUP 5.3.pdf
http://cloudzer.net/file/pxkolv09/Configuring LDAP Connector in Compliant User Provisioning of GRC Access Control.pdf
http://cloudzer.net/file/54wa00ph/Compliant Provisioning Goes Identity Management.pdf
http://cloudzer.net/file/m1rkqeeb/Single Sign-On with SAP BusinessObjects Access Control 5.3.pdf
http://cloudzer.net/file/4a1jetue/SAP GRC RIG - Access Control 5.3 - How to Integration between Compliant User Provisioning and Netweaver Identity Management (IdM).pdf
http://cloudzer.net/file/882brk3e/SAP GRC RIG - Access Control 5.3 - How to Apply Support Packages in AC 5.3.pdf
http://cloudzer.net/file/liv0teih/SAP GRC Access Control Version 5.2 Pre-Implementation Guide.pdf
http://cloudzer.net/file/c5t6hxt6/SAP Governance Risk & Compliance - Access Control 5.3 Pre-Installation.pdf
http://cloudzer.net/file/zcckbtmi/How-To Integrate Access Control 5.3 and Business Warehouse 7.0.pdf
http://cloudzer.net/file/uzxypse6/Quick Reference Guide - Access Control SAP v5.2 - GRC Applications Integration Documentation.pdf
http://cloudzer.net/file/tp0bd6ds/How-to Configure SAP BusinessObjects Access Control .3 for SAP NetWeaver Portal 7.0.pdf
http://cloudzer.net/file/e008mhu9/How to Performance Optimize SAP GRC Access Control 5.3.pdf

SAP GRC 10.0
http://cloudzer.net/file/ffwddxmv/AC 10.0 Business Role Management.pdf
http://cloudzer.net/file/fmekbish/AC 10.0 Centralized Emergency Access.pdf
http://cloudzer.net/file/ud893ck1/AC 10.0 Customizing Workflows for Access Management.pdf
http://cloudzer.net/file/mr1763me/AC 10.0 Enhanced Access Risk Analysis.pdf
http://cloudzer.net/file/urt59d62/AC 10.0 Managing Custom Fields for Access and Role Management.pdf
http://cloudzer.net/file/l00j5o6c/AC 10.0 Post-Installation.pdf
http://cloudzer.net/file/46qjxvy4/AC 10.0 Pre-ImplementationFrom Post-Installation to First Access Request.pdf
http://cloudzer.net/file/3nlrl6w2/AC 10.0 Pre-ImplementationFrom Post-Installation to First Emergency Access.pdf
http://cloudzer.net/file/msrjkwdt/AC 10.0 Pre-ImplementationFrom Post-Installation to First Risk Analysis.pdf
http://cloudzer.net/file/ywvnp2ts/AC 10.0 Pre-ImplementationFrom Post-Installation to First Role Creation.pdf
http://cloudzer.net/file/uzx8x82t/End User Personalization in Access Control 10.0.pdf
http://cloudzer.net/file/hc61idw6/GRC 10.0 Post-Installation.pdf
http://cloudzer.net/file/p1fqc5qs/GRC 10.0 Pre-Installation.pdf
http://cloudzer.net/file/9mytz0ou/How to Customize Notification Templates for AC 10.0 Workflow.pdf
http://cloudzer.net/file/iej7ceej/Installation Checklist for Access Control 10.0.pdf
http://cloudzer.net/file/eedk35me/Performing Segregation of Duties Reviews in Access Control 10.0.pdf
http://cloudzer.net/file/165xqsuw/SAP AE BusinessObjects Access Control 10 and SAP NetWeaver%AE Identity Management - Implementation Guide.pdf
http://cloudzer.net/file/34uvt7w8/SAPAE BusinessObjects GRC 10.0 Integration Guide Access & Process Control 10.0.pdf

SAP SOLMAN
http://cloudzer.net/file/nq4mpsij/LCM202 - Solution Manager Strategy.pdf
http://cloudzer.net/file/ewu5752j/LCM230 - Solution Manager Roadmap.pdf
http://cloudzer.net/file/gt93asy1/SM001 - SAP Solution manager - Overview.pdf
http://cloudzer.net/file/7gfi0jos/SM001 - SAP Solution Manager Overview(Scanned).pdf
http://cloudzer.net/file/eis2qokx/SM001 - Solution Manager Overview.zip
http://cloudzer.net/file/21qq2rzz/SM100 - SAP Solution Manager for Operations of Solutions.pdf
http://cloudzer.net/file/d1k2jblh/SM100 - SAP Solution Manager Operations.pdf
http://cloudzer.net/file/pqm7ow2n/SMI210 - mySAP Implementation Overview.pdf
http://cloudzer.net/file/v5frf9tg/SMI310 - SAP Solution Manager - Implementation Tools in Detail.pdf
http://cloudzer.net/file/3wkf1913/SolutionManager_7_1.zip
http://cloudzer.net/file/bs0cfdqh/SolutionManager_7_2.zip
http://cloudzer.net/file/a09xbgtg/USMA30 - System Administration with the SAP Solution Manager.zip
http://cloudzer.net/file/colsff0y/USMF55 - Change Request Management.rar
http://cloudzer.net/file/3u4k9chf/USMX20 - Installation and Technical Configuration of SAP Solution Manager Infrastructure.zip

SAP NWJAVA
http://cloudzer.net/file/yinlich0/JA100 - SAP J2SE Fundamentals.pdf
http://cloudzer.net/file/5mtnjqe3/JA300 - SAP J2EE Fundamentals.pdf
http://cloudzer.net/file/i06wh9wr/JA310 - Java Web Dynpro Basics.pdf
http://cloudzer.net/file/tn28tspr/JA312 - Advanced Web Dynpro for Java.pdf
http://cloudzer.net/file/lt7z90mo/JA331 - SAP Java Open Integration Technologies.zip
http://cloudzer.net/file/nyazmyba/JA340 - NetWeaver Development Infrastructure.pdf
http://cloudzer.net/file/c9gqeqlt/JA720 - Migrating a J2EE Application to SAP NetWeaver - Basics.pdf
http://cloudzer.net/file/8vp93u3z/TAJ311 - Web Dynpros.pdf
http://cloudzer.net/file/or44xr5v/TJA311 - Web Dynpro.pdf
http://cloudzer.net/file/u1e4q4ps/TJA320 -  Persistence & EJBs (incl. Certi).pdf
http://cloudzer.net/file/hnxjh0o6/TJA700 - SAP J2EE Essentials for Migration.pdf

SAP PP
http://cloudzer.net/file/8msfthr1/CR010 - CRM Overview.pdf
http://cloudzer.net/file/iz7c2ijn/CR100 - CRM Basics - Instructor Handbook.pdf
http://cloudzer.net/file/fjc8qqdj/CR210 - Mobile Service.pdf
http://cloudzer.net/file/kg4nda6u/CR300 - CRM Sales(CRM 6.0).pdf
http://cloudzer.net/file/n0srcjh6/CR300 - CRM Sales(SAP CRM 4.0 (BBP release)).pdf
http://cloudzer.net/file/q0b6al5r/CR310 - Business Application Studio - Customizing Mobile SalesMobile Service.pdf
http://cloudzer.net/file/1q48fa9z/CR400 - Contact Center in CRM.pdf
http://cloudzer.net/file/q6lqhft5/CR410 - Interaction Center WebClient in CRM.pdf
http://cloudzer.net/file/vfkbqzov/CR500 - CRM Middleware Overview.pdf
http://cloudzer.net/file/2k6ltw5y/CR540 - CRM Middleware for mobile scenarios.pdf
http://cloudzer.net/file/jhqwdzhz/CR550 - Modifying the CRM Middleware.pdf
http://cloudzer.net/file/97g4yakg/CR555 - CRM Technology.pdf
http://cloudzer.net/file/a6a98898/CR580 - SAP CRM User interface.pdf
http://cloudzer.net/file/2qrydc8w/CR600 - Marketing Planning & Campaign Management.pdf
http://cloudzer.net/file/6097ttq7/CR700 - mySAP CRM Service (Release SAP CRM 4.0).pdf
http://cloudzer.net/file/phwh756x/CR870 - CRM Channel Management.pdf
http://cloudzer.net/file/umw6a9dc/ECO220 - SAP Internet Sales.pdf
http://cloudzer.net/file/wysh5fh3/mySAP CRM - Overview of the mySAP CRM Solution.pdf
http://cloudzer.net/file/2wy44bhu/TCRM20 - CRM Fundamentals II(Part I).pdf
http://cloudzer.net/file/ulrc2ewg/TCRM20 - CRM Fundamentals II(Part II).pdf

SAP MM/WM
http://cloudzer.net/file/yth1mrvz/EWM100 - Extended Warehouse Management (EWM) Processes.pdf
http://cloudzer.net/file/gkt04uy9/EWM110 - Extended Warehouse Management Customizing.pdf
http://cloudzer.net/file/4b6mi2ul/Material Requirements Planning.pdf
http://cloudzer.net/file/ce6azpx3/MM-Workflow Scenarios.pdf
http://cloudzer.net/file/6zs8awap/TAMM10 - Materials Management - Foundation.pdf
http://cloudzer.net/file/x88w7af6/TAMM11 - Exercises and Solutions.pdf
http://cloudzer.net/file/52tiv2qp/TAMM20 - Materials Management - Extended.pdf
http://cloudzer.net/file/iq64ayo4/TAMM21 - Materials Management - Extended Exercises and Solutions.pdf
http://cloudzer.net/file/3ipeb5r4/TAMM30 - Material Management.pdf
http://cloudzer.net/file/q7c7fpco/TAMM31 - Exercises and Solutions.pdf
http://cloudzer.net/file/rzk3a7tm/TAMM40_1 - Materials Management.pdf
http://cloudzer.net/file/f9bljft9/TAMM40_2 - Materials Management.pdf
http://cloudzer.net/file/3njt7dqj/TAMM40_3 - Materials Management.pdf
http://cloudzer.net/file/z3yk7nih/TAMM40_4 - Materials Management.pdf
http://cloudzer.net/file/whfhhd86/TAMM41 - Materials Management - Appendices.pdf


SAP SD

http://cloudzer.net/file/hag17oq0/Sales and Distribution - Workflow Scenarios.pdf
http://cloudzer.net/file/uo36orq8/TASD40_1 - Sales and Distribution - Part I.pdf
http://cloudzer.net/file/psjpbaa5/TASD40_2 - Sales and Distribution - Part II.pdf
http://cloudzer.net/file/gb29bv3n/TASD40_3 - Sales and Distribution - Part III.pdf
http://cloudzer.net/file/ovtt03m2/TASD40_4 - Sales and Distribution - Part IV.pdf
http://cloudzer.net/file/7fqzlzl9/TASD41 - Sales and Distribution - Appendices.pdf

SAP HR
http://cloudzer.net/file/k3coqgzo/HR050 - Human Resources.pdf
http://cloudzer.net/file/ig56175o/HR051 - Human Resources Essentials I.pdf
http://cloudzer.net/file/acyn7u8v/HR052 - Human Resources Essentials II.pdf
http://cloudzer.net/file/7vz9qxe4/HR053 - Human Resources Essentials III.pdf
http://cloudzer.net/file/kueu539i/HR100 - Basics of Personnel Administration.pdf
http://cloudzer.net/file/9vf3qri2/HR110 - Business Processes in HCM Payroll.pdf
http://cloudzer.net/file/fbhtlqna/HR120 - Essentials of Personnel Planning.pdf
http://cloudzer.net/file/gowlv5ia/HR130 - Essentials .. SAP Enterprise Portal in HCM.pdf
http://cloudzer.net/file/qh1rawcv/HR250 - SAP Employee Self-Service.pdf
http://cloudzer.net/file/havy00v7/HR260 - Manager Self-Service.pdf
http://cloudzer.net/file/5yae36fx/HR270 - SAP Learning Solution Overview.pdf
http://cloudzer.net/file/5kn41mzu/HR275 - E-Learning with SAP Tutor.pdf
http://cloudzer.net/file/rgbzhm21/HR305 - Configuration of Master Data.pdf
http://cloudzer.net/file/3utpdh26/HR306 - Configuration of Time Recording.pdf
http://cloudzer.net/file/a98tnyup/HR307 - Configuration Of HR System Controls.pdf
http://cloudzer.net/file/pb2psg8q/HR308 - Time Managers Workplace.pdf
http://cloudzer.net/file/q2w2fohs/HR310 - Time Evaluation With Clock Times.pdf
http://cloudzer.net/file/u0y4hq9r/HR311 - Time Evolution Without Clock Times.pdf
http://cloudzer.net/file/2vtn0xgy/HR315 - Recruitment.pdf
http://cloudzer.net/file/aqdsskm1/HR316 - E-Recruiting.pdf
http://cloudzer.net/file/hq7xefhc/HR325 - Benefits Administration %28North America%29.pdf
http://cloudzer.net/file/6t63607s/HR325 - Benefits Administration.pdf
http://cloudzer.net/file/1463c2uo/HR350 - Programming in HR.pdf
http://cloudzer.net/file/zvfkr3m3/HR390 - Introduction To Payroll.pdf
http://cloudzer.net/file/4h4lfeja/HR400 - Payroll Management.pdf
http://cloudzer.net/file/vkdo5vbm/HR490 - Incentive Wages.pdf
http://cloudzer.net/file/revwp9sg/HR505 - Organizational Management.pdf
http://cloudzer.net/file/dmmr0nyl/HR506 - Advanced Organizational Management.pdf
http://cloudzer.net/file/m0cjx3ac/HR510 - Personnel Development.pdf
http://cloudzer.net/file/09osf7yg/HR515 - Training And Event Management.pdf
http://cloudzer.net/file/bfddxf33/HR520 - Shift Planning.pdf
http://cloudzer.net/file/fc14rw78/HR530 - Technical Topics in HR.pdf
http://cloudzer.net/file/ehubxmlo/HR540 - Compensation Management.pdf
http://cloudzer.net/file/rrqle24a/HR550 - Personnel Cost Planning and Simulation.pdf
http://cloudzer.net/file/ug3gkbaf/HR580 - Reporting In Human Resources.pdf
http://cloudzer.net/file/oemfiv4s/HR940 - Authorizations in HR.pdf
http://cloudzer.net/file/c62aoog9/TCASE1 - Case Study Accompanying Fundamental Courses for Solution Consultants Part 1 of 2.pdf
http://cloudzer.net/file/98n0n3jy/TCASE1 - Case Study Accompanying Fundamental Courses for Solution Consultants Part 2 of 2.pdf
http://cloudzer.net/file/dn2weehs/TCASE1 - Case Study Accompanying Fundamental Courses for Solution Consultants Part 2 of 2.pdf
http://cloudzer.net/file/e25fvi9z/THR10 - Management Administration in HR I.pdf
http://cloudzer.net/file/zvmjmo0p/THR12 - Management Administration II - 1.pdf
http://cloudzer.net/file/xd32st6y/THR12 - Management Administration II - 2.pdf


SAP PLM
http://cloudzer.net/file/epcjkvpz/PLM100 - Life-Cycle Data Management - Overview.pdf
http://cloudzer.net/file/uiop8huf/PLM111 - Basic Data%2C Part 2.pdf
http://cloudzer.net/file/wvbk352s/PLM112 - Basic Data Customizing.pdf
http://cloudzer.net/file/ufzcyp10/PLM114 - Basic Data for Manufacturing and Product Management.pdf
http://cloudzer.net/file/p0e6gvbz/PLM120 - Document Management.pdf
http://cloudzer.net/file/umktn8om/PLM130 - Classification.pdf
http://cloudzer.net/file/uu70zecd/PLM140 - Variant Configuration 1..Modelling.pdf
http://cloudzer.net/file/g742a38o/PLM143 - Variant Configuration 2..Integration.pdf
http://cloudzer.net/file/zyw6vffb/PLM145 - Variant Configuration.pdf
http://cloudzer.net/file/e2e4p6m8/PLM146 - Variant Configuration - Scenarios %26 Enhancements.pdf
http://cloudzer.net/file/d5wbhrms/PLM200 - Project Management.pdf
http://cloudzer.net/file/ki7rk3xs/PLM210 - Project Management - Strcutures.pdf
http://cloudzer.net/file/mzlun1ut/PLM220 - Project Management..Logistics.pdf
http://cloudzer.net/file/w1py3fbx/PLM230 - Project Accounting with Networks and Revenues.pdf
http://cloudzer.net/file/3fili3wm/PLM235 - Project Controlling with Work Breakdown Structures.pdf
http://cloudzer.net/file/sjccjf56/PLM240 - Project Management..Reporting.pdf
http://cloudzer.net/file/azv8fft2/PLM300 - Plant Maitenance.pdf
http://cloudzer.net/file/dk3ih7ue/PLM301 - Business Processes in Customer Service.pdf
http://cloudzer.net/file/so3ecvk4/PLM305 - Structuring and Managing Technical Objects.pdf
http://cloudzer.net/file/46trs5ah/PLM310 - Preventive Maintenance and Service.pdf
http://cloudzer.net/file/cctbceqv/PLM315 - Maintenance Processing - Operational Functions.pdf
http://cloudzer.net/file/bsfetuo6/PLM315 - Maintenance Processing..Operational Functions.pdf
http://cloudzer.net/file/czqewi5j/PLM316 - Maintenance Processing - Controlling and Reporting.pdf
http://cloudzer.net/file/1hc66zkg/PLM316 - Maintenance Processing..Controlling and Reporting.pdf
http://cloudzer.net/file/3veau9lp/PLM318 - Analytics in Enterprise Asset Management.pdf
http://cloudzer.net/file/5w54x7mv/PLM320 - Work Clearance Management.pdf
http://cloudzer.net/file/e2948hm0/PLM330 - Service Contracts.pdf
http://cloudzer.net/file/hta0rqsy/PLM335 - Service Processing.pdf
http://cloudzer.net/file/pb4su8eo/PLM400 - Quality Management.pdf
http://cloudzer.net/file/voxgtmqe/PLM405 - Quality Inspections.pdf
http://cloudzer.net/file/zz7fibed/PLM410 - Quality Notifications.pdf
http://cloudzer.net/file/m43f7lnj/PLM415 - Quality Management in Logistics.pdf
http://cloudzer.net/file/e34hke1n/PLM510 - c Projects (Presentation).zip
http://cloudzer.net/file/qgj3uiqi/PLM510 - c Projects.pdf
http://cloudzer.net/file/7vlq2mqo/PLM512 - cFolders.pdf
http://cloudzer.net/file/9w47k052/SAPPLM - mySAP Product Lifecycle Management (mySAP_PLM) Overview.pdf

SAP SCM
http://cloudzer.net/file/frx3t2qs/Best Practice SCM.rar
http://cloudzer.net/file/smyzl0kc/SCM130 - SAP R-3 Planning and Manufacturing Overview - Instructor Handbook.pdf
http://cloudzer.net/file/l10nddyx/SCM130 - SAP R-3 Planning and Manufacturing Overview - Participant Handbook.pdf
http://cloudzer.net/file/nal7meoo/SCM200 - Business Processes in Planning (SCM).pdf
http://cloudzer.net/file/wija1zpf/SCM210 - Core Interface APO.pdf
http://cloudzer.net/file/7f2vxz3t/SCM212 - SAP SCM Integrated Supply Chain Modeling.pdf
http://cloudzer.net/file/99ii2c0f/SCM215 - mySAP Supply Chain Modeling.pdf
http://cloudzer.net/file/lpvu7awh/SCM220 - Demand Planning.pdf
http://cloudzer.net/file/lc6wuxl1/SCM230 - Supply Network Planning (SNP).pdf
http://cloudzer.net/file/6kpir3kj/SCM240 - Production Planning (SAP R-3) - Instructor Handbook.pdf
http://cloudzer.net/file/oz0pgsoy/SCM240 - Production Planning (SAP R-3) - Participant Handbook.pdf
http://cloudzer.net/file/wsjodj0n/SCM250 - Production Planning and Detailed Scheduling (SAP APO-PP-DS).pdf
http://cloudzer.net/file/4n1uzga5/SCM300 - Production Overview.pdf
http://cloudzer.net/file/y3t1j0ok/SCM310 - Production Orders.pdf
http://cloudzer.net/file/poxrch05/SCM320 - Repetitive Manufacturing.pdf
http://cloudzer.net/file/98ruqv0c/SCM350 - Computer-Supported Kanban (Material Replenishment).pdf
http://cloudzer.net/file/rhwtp4ew/SCM360 - Capacity Planning in ECC.pdf
http://cloudzer.net/file/j5tha415/SCM380 - SAP MII - Manufacturing-Integration and Intelligence - Basics.pdf
http://cloudzer.net/file/ggmlpgyr/SCM380 - SAP MII - Manufacturing-Integration and Intelligence - Basics_Show.zip
http://cloudzer.net/file/clf597c2/SCM500 - Processes in Procurement.pdf
http://cloudzer.net/file/iq0him7r/SCM510 - Inventory Management and Physical Inventory.pdf
http://cloudzer.net/file/4v71ypqd/SCM515 - Invoice Verification.pdf
http://cloudzer.net/file/vw5g1qs1/SCM521_Pricing_in_Purchasing.kep
http://cloudzer.net/file/eeau3nhf/SCM525 - Consumption-Based Planning and Forecasting.pdf
http://cloudzer.net/file/5zj5w7qu/SCM540 - Procurement of External Services.pdf
http://cloudzer.net/file/elcpsntg/SCM550 - Cross-Functional Customizing in MM.pdf
http://cloudzer.net/file/819a0vha/SCM560 - External Procurement with APO.pdf
http://cloudzer.net/file/lqqm8g6d/SCM595 - Batch Management.pdf
http://cloudzer.net/file/n18gxnz2/SCM600 - Sales and Distribution Processes.pdf
http://cloudzer.net/file/jdytt24h/SCM601 - Processes in Logistics Execution.pdf
http://cloudzer.net/file/zhi91wll/SCM605 - Sales.pdf
http://cloudzer.net/file/q5xphixw/SCM610 - Delivery Processes.pdf
http://cloudzer.net/file/6tioxiy3/SCM611 - Transportation - Instructor Handbook.pdf
http://cloudzer.net/file/5mvau46w/SCM611 - Transportation.pdf
http://cloudzer.net/file/kl5ezcav/SCM612 - APO Transportation Planning - Vehicle Scheduling (TP-VS).pdf
http://cloudzer.net/file/o07g6ra0/SCM615 - Billing.pdf
http://cloudzer.net/file/d5533ahf/SCM620 - Pricing in Sales OrderManagement.pdf
http://cloudzer.net/file/zsrxliyo/SCM630 - Warehouse Management - Participant Handbook.pdf
http://cloudzer.net/file/c8t25p0g/SCM631 - Additional Topics in Warehouse Mangement.pdf
http://cloudzer.net/file/2ymcapsd/SCM640 - Foreign Trade.pdf
http://cloudzer.net/file/2jqgrifd/SCM650 - Cross-Functional Customizing in Sales and Distribution.pdf
http://cloudzer.net/file/k5asbvs9/SCM660 - Handling Unit Management.pdf
http://cloudzer.net/file/8xwma6a2/SCM660_v46c_en_2001_06.kep
http://cloudzer.net/file/476bip7j/SCM670 - Global Available-to-Promise (Global ATP).pdf
http://cloudzer.net/file/dzpcppe4/SCM680 - Cross-Application Processes in MM and SD.pdf
http://cloudzer.net/file/gxax5y4z/SCM920 - Customizing Production Orders.pdf
http://cloudzer.net/file/mm868z9s/SCM940 - Customizing Capacity Planning.pdf
http://cloudzer.net/file/c8vlyi2o/TCASE1 - Case Study Accompanying Fundamental Courses for Solution Consultants Part 1 of 2.pdf
http://cloudzer.net/file/872a1oai/TCASE1 - Case Study Accompanying Fundamental Courses for Solution Consultants Part 2 of 2.pdf
http://cloudzer.net/file/2xqnj3zd/TSCM50_1 - mySAP ERP Procurement and Logistics Execution.pdf
http://cloudzer.net/file/c8rlgwei/TSCM50_2 - mySAP ERP Procurement and Logistics Execution.pdf
http://cloudzer.net/file/jxk8m4xi/TSCM52_1 - Procurement II.pdf
http://cloudzer.net/file/wzpk6k9b/TSCM52_2 - Procurement II.pdf
http://cloudzer.net/file/gznouaqk/TSCM60_1 - Order Fullfillment I.pdf
http://cloudzer.net/file/5lj8wk8v/TSCM60_2 - Order Fullfillment I.pdf
http://cloudzer.net/file/pjpb5vcv/TSCM62_1 - Order Fulfillment II.pdf
http://cloudzer.net/file/eraspwby/TSCM62_2_Order_Fulfillment_II.pdf

SAP SRM
http://cloudzer.net/file/9reqk3sk/SRM6.0 - Architecture.pdf
http://cloudzer.net/file/fdz94yjd/SRM240 - Requisite Catalog and Content Management.pdf
http://cloudzer.net/file/zw3zgd4d/SRM220 - Analytical EBP.pdf
http://cloudzer.net/file/md3qbrsp/SRM200 - mySAP SRM e-Procurement Solution.pdf
http://cloudzer.net/file/abiehu16/SRM 6.0 - Portal Configuration.pdf
http://cloudzer.net/file/iol47t40/SAPSRM - mySAP Supplier Relationship Management.pdf
http://cloudzer.net/file/ojkdbjde/mySAP SRM - Supplier Relationship Management.pdf



SAP SOA
http://cloudzer.net/file/91cw3y3h/SOA100 - SAP NetWeaver Product Management.pdf
http://cloudzer.net/file/t1h8fpl3/SOA106 - Introduction to the Core of the Enterprise SOA Solution %3F the Enterprise Services Repository.pdf
http://cloudzer.net/file/s5d79ktg/SOA107 - SAP User Interfaces - Next Generation of Client Technology.pdf
http://cloudzer.net/file/70zrxvwj/SOA116 - Real Life SOA Scenarios with Google, Microsoft and SAP.pdf
http://cloudzer.net/file/fu7i6wzl/SOA200 - SAP Enterprise SOA - Enterprise Architecture Framework - Level 1.pdf
http://cloudzer.net/file/8ax3r1s6/SOA206 - Whats New In and Around SAP NetWeaver.pdf
http://cloudzer.net/file/4n1inyj5/SOA221 - SAP SRM 5.0 Upgrade at Miller Brewing.pdf
http://cloudzer.net/file/py91v7sk/SOA230 - ARIS Toolset for SAP Enterprise Architecture Framework.pdf



Related Posts Plugin for WordPress, Blogger...