SAP BW Conversion Routines

Conversion routines are used in BW so that the characteristic values (key) of an InfoObject can be displayed or used in a different format to how they are stored in the database. They can also be stored in the database in a different format to how they are in their original form, and supposedly different values can be consolidated into one.

Integration

In BW, conversion routines essentially serve to simplify the input of characteristic values for a query runtime. For example with cost center 1000, the long value with left-hand zeros 0000001000 (from the database) is not to be entered, but just 1000. Conversion routines are therefore linked to characteristics (InfoObjects) and can be used by them.

Conversion routines can also be used at data load time, although it is important to note that conversion routines are often already defined for DataSource fields (particularly from SAP source systems). The properties of the replicated DataSource fields are displayed in the transfer structure or DataSource maintenance.

In many cases, it is desirable to store the conversion routines of these fields in the corresponding InfoObject on the BW side too. It is therefore necessary, when defining transfer rules, to consider the connection between the conversion routine of the InfoObject in the communication structure and the conversion routine of the transfer structure field. When loading data, you now have to consider that when extracting from SAP source systems the data is already in the internal format and is not converted. When loading flat files and when loading using a BAPI or DB Connect, the conversion routine displayed signifies that an INPUT conversion is executed before writing to the PSA. For example, the date field is delivered from a flat file in the external format‚10.04.2003'. If a conversion routine has been specified in the transfer structure maintenance, this field can be converted to the internal format ‘20030410' in the transfer rules, according to that conversion routine.

Conversion routines ALPHA, NUMCV, and GJAHR check whether data exists in the correct internal format before it is updated. For more on this see the extensive documentation in the SAP BW system in the transaction for converting to conforming internal values (transaction RSMDCNVEXIT). If the data is not in the correct internal form an error message is issued. These three conversion routines can be set so that a check is not executed but an INPUT conversion is executed.

Make this setting using the Optional Conversion flag in transfer rules maintenance. Both the check and the conversion are executed in the transfer rules for the target field.

Business Content objects are delivered with conversion routines if they are also used by the DataSource in the source system. The external presentation is then the same in both systems.

The conversion routines used for the R/3 DataSource fields are then transferred to the BW system when the DataSources from the SAP source systems are replicated.

Function 'A' conversion occurs according to the data type of the field when changing the content of a field from the display format into the SAP-internal format and vice versa, as well as for output using the ABAP WRITE instruction. The same is true for output using a SAP BW query.

If this standard conversion is unsuitable, you can override it by specifying a conversion routine in the underlying domains. You do this in SAP BW by specifying a conversion routine in InfoObject maintenance in the General Tab Page.

Listed below are some popular Conversion Routines used throughout SAP BW:

ALPHA Conversion Routine

Use

The ALPHA conversion is used in the BW system for each presetting for character Characteristics. The ALPHA conversion routine is registered automatically when a characteristic is created. If you do not want to use this routine, you have to remove it manually.

The ALPHA conversion routine is used, for example, with account numbers or document numbers.

Functions

When converting from an external into an internal format, this checks whether the entry in the INPUT field is wholly numerical, whether it consists of digits only, possibly with blank spaces before and/or after. If yes, the sequence of digits is copied to the OUTPUT field, right-aligned, and the space on the left is filled with zeros (‘0'). Otherwise the sequence of digits is copied to the output field from left to right and the space to the right remains blank.

For conversions from an internal to an external format (function module CONVERSION_EXIT_ LPHA_OUTPUT), the process is reversed. Blank characters on the left-hand side are omitted from the output.

Example

Input and output fields are each 8 characters long. A conversion from an external to an internal format takes place:

'1234 ' arrow2 '00001234'

'ABCD ' arrow2 'ABCD '

BUCAT Conversion Routine

Use

The BUCAT conversion routine converts the internal presentation of the budget type (0BUD_CAT) into the external presentation (0BUD_CAT_EX), using the active entries in the master data table for the budget type InfoObject (0BUD_CAT).

Example

Conversion from the external into the internal format:

'1' arrow2 'IM000003'

EAN11 Conversion Routine

Use

The EAN11 conversion routine is used for European Article Numbers (EAN) and the American Universal Product Code (UPC).

Functions

It converts the external presentation, according to settings in transaction W4ES (in the R/3 source system), into the internal SAP presentation. In the SAP system, left-hand zeros are not saved as, according to EAN standards, these are not required. For example, the EAN ‘123' is the same as the EAN ‘00123'. As such, the left-hand zeros are dispensed with.

UPC-E code short forms are converted into the long form. The EAN11 conversion routine formats the internal presentation of each EAN type, again, according to settings in transaction W4ES, for output. This ensures that the internal presentation does have left-hand zeros, or that UPC codes are converted to the short form.

GJAHR Conversion Routine

Use

Conversion routine GJAHR is used when entering the business year in order to allow an abbreviated, two-digit entry. A business year has four digits in the internal format.

Functions

When converting from an external into an internal format this checks whether the entry in the INPUT field is wholly numerical, whether it consists of digits only, possibly with blank spaces before and/or after. If a two-digit sequence of numbers is entered then these are put in the third and fourth spaces of the OUTPUT field. The left-hand spaces are filled with 19 or 20 according to the following rule:

  • Two-digit sequence < 50. Fill from left with 20. Two-digit sequence >= 50. Fill from left with 19.

A sequence that does not have two-digits is transferred to the output field from left to right. Blank characters are omitted.

Example

Conversion from the external into the internal format:

'12' arrow2 '2012'

'51' arrow2 '1951'

'1997' arrow2 '1997'

'991# ' arrow2 991#

ISOLA Conversion Routine

Use

Conversion routine ISOLA converts the two-digit ISO language abbreviation INPUT into its SAP-internal OUTPUT presentation.

Functions

These are assigned using the LAISO and SPRAS fields in table T002. An INPUT that cannot be converted (because it is not defined as T002-LAISO) produces an error message and triggers the UNKNOWN_LANGUAGE exception. Because they are compatible, single-digit entries are supported in that they are transferred to OUTPUT unchanged. They are not checked against table T002.

The difference between upper and lower case letters is irrelevant with two-digit entries, however with single-digit entries, upper and lower case letters stand for different languages.

MATN1 Conversion Routine

Use

This conversion routine changes internal material numbers, stored in the system, into the external material numbers displayed in the interface and vice versa, according to settings in transaction OMSL. With regard to the specific details of the conversion, read the help for the appropriate input field of the transaction.

NUMCV Conversion Routine

Functions

When converting from an external into an internal format, this checks whether the entry in the INPUT field is wholly numerical, whether it consists of digits only, possibly with blank spaces before and/or after. If yes, the sequence of digits is copied to the OUTPUT field, right-aligned, and the space on the left is filled with zeros (‘0'). Otherwise the blank characters are removed from the sequence of digits, the result is transferred, left-aligned, into the output field, and this is then filled from the right with blank characters.

Converting from the internal format into the external format (conversion routine CONVERSION_EXIT_NUMCV_OUTPUT) does not produce any changes. The output field is set the same as the input field.

Example

Input and output fields are each 8 characters long. A conversion from an external to an internal format takes place:

'1234 ' arrow2 '00001234'

'ABCD ' arrow2 'ABCD '

' 1234 ' arrow2 '00001234'

' AB CD' arrow2 'ABCD '

PER15 Conversion Routine

Use

The PER15 conversion serves to convert a five-figure calendar quarter in an external format (Q.YYYY, for example) into the internal format (YYYYQ). Y stands for year (here four-digits) and Q for quarter (single-digit: 1, 2, 3 or 4). The separator (‘.' or ‘/') has to correspond to the date format in the user settings.

Functions

Permitted entries for the date format DD.MM.YYYY are:

  • QYY (two digits for year without separator)
  • Q.YY (two digits for year with separator)
  • QYYYY (four digits for year without separator)
  • Q.YYYY (four digits for year with separator)

Permitted entries for the date format YYYY/MM/DD would be:

  • YYQ,
  • YY/Q,
  • YYYYQ
  • YYYY/Q.

Example

Examples where the date format in the user settings is DD.MM.YYYY. A conversion from the external to the internal format takes place:

'2.02' arrow2 '20022'

'31999' arrow2 '19993'

'4.2006' arrow2 '20064'

PER16 Conversion Routine

Use

Conversion routine PER16 is used with six-digit entries for (business year) periods.

Functions

The internal format for six-digit periods is YYYYPP (200206, for example, for period 6 of business year 2002). As the external format is converted to the internal format, this checks whether the entries in the INPUT parameter with external date formatting (separators, order) comply with user settings. The separator (‘.' or ‘/') has to correspond to the date format in the user settings.

Different abbreviated entries are possible and these will be correctly converted into the internal format.

Example

For the external date formatting DD.MM.YYYY in the user settings, the following conversion takes place from external to internal formats:

'12.1999' arrow '199912'

'1.1999' arrow '199901'

'12.99' arrow '199912'

'1.99' arrow '199901'

PER17 Conversion Routine

Use

Conversion routine PER17 is used with seven-digit entries for (business year) periods.

Functions

The internal format for seven-digit periods is YYYYPPP (2002006, for example, for period 006 of business year 2002). As the external format is converted to the internal format, this checks whether the entries in the INPUT parameter with external date formatting (separators, order) comply with user settings. The separator (‘.' or ‘/') has to correspond to the date format in the user settings.

Different abbreviated entries are possible and these are converted correctly into the internal format.

Example

For the external date formatting DD.MM.YYYY in the user settings, the following conversion takes place from external to internal formats:

'012.1999' arrow2 '1999012'

'12.1999' arrow2 '1999012'

'1.1999' arrow2 '1999001'

'012.99' arrow2 '1999012'

'12.99' arrow2 '1999012'

'1.99' arrow2 '1999001'

POSID Conversion Routine

Use

The POSID conversion routine converts the external presentation of the program position (0PROG_PO_EX) into the internal presentation (0PROG_POS), using the active master data table entries for the program position InfoObject (0PROG_POS).

Example

Conversion from the external into the internal format:

P-2411 arrow2 P24110000

PROJ Conversion Routine

Use

There are extensive possibilities in the R/3 project system for editing the external presentation of the project and PSP elements (project coding, editing mask). These features are included in the R/3 conversion routine. This comprehensive logic cannot be mapped in the BW system. For this reason, the characteristic 0PROJECT_EX exists in the attributes of InfoObject 0PROJECT and the external description is stored there. As the external description is entered on the screen, conversion routine 'CONVERSION_EXIT_PROJ_INPUT' reads the corresponding internal description 0PROJECT and uses this for internal processing. If no master data has been loaded into the BW (master data generated by uploading transaction data), then the internal description has to be input in order to execute a query.

Example

Internal format: 0PROJECT: ‘A0001' arrow2 External format: 0PROJECT_EX: 'A / 0001'

REQID Conversion Routine

Use

The REQID conversion routine converts the external presentation of the appropriation request (0APPR_REQU) into the internal presentation (0APPR_RE_ED), using the active entries in the master data table for the appropriation request InfoObject (0APPR_RE_ED).

Example

Conversion from the external into the internal format:

P-2411-2 arrow2 P24110002

WBSEL Conversion Routine

Use

There are extensive possibilities in the R/3 system regarding WBS Element for editing the external presentation of the WBS Elements. These features are included in the R/3 conversion routine. This comprehensive logic cannot be mapped in the BW system. For this reason, the characteristic 0WBS_ELM_EX exists in the attributes of InfoObject 0WBS_ELEMT and the external description is stored there. As the external description is entered on the screen, conversion routine 'CONVERSION_EXIT_WBSEL_INPUT' reads the corresponding internal description 0WBS_ELEMT and uses this for internal processing. If no master data has been loaded into the BW (master data generated by uploading transaction data), then the internal description has to be input in order to execute a query.

Example

Internal Format: 0WBS_ELEMT: 'A0001-1' arrow2 External format: 0WBS_ELM_EX: 'A / 0001-1'

SDATE Conversion Routine

Use

This conversion routine assigns the appropriate internal date presentation (YYYYMMDD) to an external date (01.JAN.1994, for example). Call up the test report RSSCA1T0 to be able to better visualize the functionality of this routine. This test report contains the complete date conversion with external as well as internal presentations.

Example

Date formatting definition in the user master record: DD.MM.YYYY

Conversion from the external into the internal format:

'02.JAN.1994' arrow2 '19940102'

IDATE Conversion Routine

Use

This conversion routine assigns the appropriate internal date presentation (YYYYMMDD) to an external date (01JAN1994 , for example). Call up the test report RSSCA1T0 to be able to better visualize the functionality of this routine. This test report contains the complete date conversion with external as well as internal presentations.

Example

Conversion from the external into the internal format:

'02JAN1994' arrow2 '19940102'

No comments:

Post a Comment

SAP HR Configuration 6000 Real-time Screen Shots SAP HR, Configurations, Steps, Online Training, Screen shots, Download, Payroll, Time Management, Time Evaluation, TM, Personnel Administration, PA, Organization Management, OM, Personnel Development, PD, Sample Resumes, Free, Tips, Documents, SAP Help, SAP HR Forum, Discussion Forum, E-recruitment in SAP HR , mySAP, Certification, Interview Questions & Answers, Course Employee Master Data, Work Schedules, Payroll sub modules, Absence, Attendance, Quotas, Gross salary, Tax calculation, Statutory, Legislation, Forms, Reports, Year end Activities, Certification Review, Technical Principles, Third Party Vendors, Testing, UAT, SAP HR FAQ, ESS and MSS, AS-IS, TO-BE, Integration, GL, FICO, SD, MM, Transaction Codes, T-codes, LSO, HR module Tables, Queries, Positive & Negative Time Recording, PCR, Schema, Features, Functions, Operations, SDN SAP, Payroll Driver, Errors, Solutions, Structures in Human Resources, Actions, IMG Steps, Path, Benefits, Info Type, Country Payrolls, India, USA, Canada, Germany, France, Specification, Error Message, HR Sapscripts, HR ABAP Reports, HR Authorizaton, Training and Event Management, SAP Solution Manager, CATS, Wage Types, Free HR eBook (PDF) SAP Reference Books on Human Resources, SAP Certification Exam, Hiring, Promotion, Transfer, Separation and other Employee life cycle events Configurations, Infotypes explanations and configurations, Personal Data, Address, Bank, Basic,Planned working Time, Recurring Payments, One time Payments, Contract Elements, Monitoring of tasks, Family details, Education,Previous Employer details, Objects on Loans, Date Specifications, Loans,Membership Fees, Communication,Notifications,Person Ids, All the IMG confiG, Dynamic Actions, Screen Header, Screen Modifications, Infotype Menus, Organisational Key, Administartor Groups, Features, NUMKR, IGMOD, ABKRS, VDSK1, SCHKZ, TMSTA, LGMST,TARIFF,D ATAR,CONTR,PINCH,ZLSCH, Time Mgmt: Holidays and Holiday Calendars, Dynamic, Fixed and Variable Breaks, Daily Work Schedules, Variants, Day Types, Period Work Schedules, Rotating Shifts, Different Absence Types like PL, CL,SL, LWOP, Vacation Quotas etc, Time Constraint Classes for all Time Mgmt Infotypes, Attendance Types, Counting Rules, Absence Quotas, Base entitlements, and Deduction of Quotas, Shifts Patterns and Allowances, Daily and Weekly Over Time , Leave Encashment, Leave Carry Forwards, Flexi Time, Positive and Negative Time Evaluations, Paid and Unpaid Breaks, TM00 and TM04, Payroll, Basic, HRA, CEA/CHA, Conveyance, LTA,Medical, LWF, PTAX, ESI, Previous Exp,P.F and VPF,COA/CLA, Loans and Interest Subsidy, Cost accounting with Finance,D.A based on CPI, Perks, Hard Furnishing, Payslip Design, Quarterly Returns, Form 16 with Annexure, Complete IN00 Schema, Multiple Form 16, ESS: Leave Application, Basic data Changes, Payslip Display, Leave balances, Leave Encashment Request.. & More. TOPIC 1-10 SAP HR Configuration 6000 Real-time Screen Shots, Structures in Human Resources, Personnel Areas/SubAreas, Employee Areas/SubAreas, PA Personnel Administration Tables, Assignment of Personnel Area to Company Code, Assign employee subgroup to employee group, Hiring/Maintaing a new employee , Number Range for Personnel Numbers , Personnel number check , Personnel Area Change for Certain Employees , How To Configure Personnel Actions, Company Codes, Additional Action Is Not Working, What Are Dynamic Action , Employment Status In PA40 and PA30 Screen , How Employee Attributes Are Classified , IMG Steps To Configure Benefit, Qualification Block, Jobs, Positions, Cost Centers, Favorites, Business blue Print, Configuration workbook, Consultant, Sign-off, Roles & Responsibilities, End-User Training Guides, Attachments, Log-in, Development, Quality, Production, Systems, Project Management, SAP HR, Configurations, Steps, Online Training, Screen shots, Download, Payroll, Time Management, Time Evaluation, TM, Personnel Administration, PA, Organization Management, OM, Personnel Development, PD, Sample Resumes, Free, Tips, Documents, SAP Help, SAP HR Forum, Discussion Forum, mySAP, Certification, Interview Questions & Answers, Course Employee Master Data, Work Schedules, Payroll sub modules, Absence, Attendance, Quotas, Gross salary, Tax calculation, Statutory, Legislation, Forms, Reports, Year end Activities, Certification Review, Technical Principles, Third Party Vendors, Testing, UAT, SAP HR FAQ, ESS and MSS, AS-IS, TO-BE, Integration, GL, FICO, SD, MM, Transaction Codes, T-codes, LSO, HR module Tables, Queries, Positive & Negative Time Recording, PCR, Schema, Features, Functions, Operations, SDN SAP, Payroll Driver, Errors, Solutions, Structures in Human Resources, Actions, IMG Steps, Path, Benefits, Info Type, Country Payrolls, India, USA, Canada, Germany, France, Specification, Error Message, HR Sapscripts, HR ABAP Reports, HR Authorizaton, Training and Event Management, Wage Types, Free HR eBook (PDF) SAP Reference Books on Human Resources, SAP Certification Exam. TOPIC 11-20 SAP HR Configuration 6000 Real-time Screen Shots, Structures in Human Resources, Personnel Areas/SubAreas, Employee Areas/SubAreas, PA Personnel Administration Tables, Assignment of Personnel Area to Company Code, Assign employee subgroup to employee group, Hiring/Maintaing a new employee , Number Range for Personnel Numbers , Personnel number check , Personnel Area Change for Certain Employees , How To Configure Personnel Actions, Company Codes, Additional Action Is Not Working, What Are Dynamic Action , Employment Status In PA40 and PA30 Screen , How Employee Attributes Are Classified , IMG Steps To Configure Benefit, Qualification Block, Jobs, Positions, Cost Centers, Favorites, Business blue Print, Configuration workbook, Consultant, Sign-off, Roles & Responsibilities, End-User Training Guides, Attachments, Log-in, Config of One InfoTypes, Control Record , Organizational Data , User Parameter , Payroll Strutures , Pay Scale Structure Development, Quality, Production, Systems, Project Management, SAP HR, Configurations, Steps, Online Training, Screen shots, Download, Payroll, Time Management, Time Evaluation, TM, Personnel Administration, PA, Organization Management, OM, Personnel Development, PD, Sample Resumes, Free, Tips, Documents, SAP Help, SAP HR Forum, Discussion Forum, mySAP, Certification, Interview Questions & Answers, Course Employee Master Data, Work Schedules, Payroll sub modules, Absence, Attendance, Quotas, Gross salary, Tax calculation, Statutory, Legislation, Forms, Reports, Year end Activities, Certification Review, Technical Principles, Third Party Vendors, Testing, UAT, SAP HR FAQ, ESS and MSS, AS-IS, TO-BE, Integration, GL, FICO, SD, MM, Transaction Codes, T-codes, LSO, HR module Tables, Queries, Positive & Negative Time Recording, PCR, Schema, Features, Functions, Operations, SDN SAP, Payroll Driver, Errors, Solutions, Structures in Human Resources, Actions, IMG Steps, Path, Benefits, Info Type, Country Payrolls, India, USA, Canada, Germany, France, Specification, Error Message, HR Sapscripts, HR ABAP Reports, HR Authorizaton, Training and Event Management, Wage Types, Free HR eBook (PDF) SAP Reference Books on Human Resources, SAP Certification Exam. TOPIC 21-30 SAP HR Configuration 6000 Real-time Screen Shots, Indirect Valuation, Basic Pay, IT0008, IT0014, IT0015, IT2010, Creation of Wage Types, Indirect Valuation Annual Salary, Salary Components, Topic, Additional Payments, Recurring Payments, Wage Type Characteristics , Wage Type Permissibility, Maintain, Display, Holiday Calendar Setup For HR In ECC 6, SAP HR, Configurations, Steps, Online Training, Screen shots, Download, Payroll, Time Management, Time Evaluation, TM, Personnel Administration, PA, Organization Management, OM, Personnel Development, PD, Sample Resumes, Free, Tips, Documents, SAP Help, SAP HR Forum, Discussion Forum, mySAP, Certification, Interview Questions & Answers, Course Employee Master Data, Work Schedules, Payroll sub modules, Absence, Attendance, Quotas, Gross salary, Tax calculation, Statutory, Legislation, Forms, Reports, Year end Activities, Certification Review, Technical Principles, Third Party Vendors, Testing, UAT, SAP HR FAQ, ESS and MSS, AS-IS, TO-BE, Integration, GL, FICO, SD, MM, Transaction Codes, T-codes, LSO, HR module Tables, Queries, Positive & Negative Time Recording, PCR, Schema, Features, Functions, Operations, SDN SAP, Payroll Driver, Errors, Solutions, Structures in Human Resources, Actions, IMG Steps, Path, Benefits, Info Type, Country Payrolls, India, USA, Canada, Germany, France, Specification, Error Message, HR Sapscripts, HR ABAP Reports, HR Authorizaton, Training and Event Management, Wage Types, Free HR eBook (PDF) SAP Reference Books on Human Resources, SAP Certification Exam & More. TOPIC 31-40 Absence, Absence Valuation, Payroll Journal, Payroll Run, Payroll Driver, Wage type Reporter, Display Pay Results ,View, Create, Display Time Evaluation Results, Quota Overview, Day types, Sunday not being considered as a regular working day , Question on Payroll Journal Report for Print Forma , Creating Customer Specific Functions for HR Payroll , General Idea About UK, US, Indian Payroll , What Is The Difference Between PCR and CAP , Explanation on Deduction Rules , Configuration In Generation Of Absence Quota , BSI Communication Failure During Payroll Run , Holiday Calendar Setup For HR In ECC 6 , Payroll Questions and Help Required , Procedure To Design Payslip , Short Overview of SAP Payroll , Documenting HR Rules And Schemas , Counting Class And Counting Rules , Different Types of Pay Scale,Schema Process ,Income Tax, Statutory (ESI, PT, PT, LWF), Schema in Payroll, Absence Quotas , Schema, Overview, Configurations, Steps, Online Training, Screen shots, Download, Payroll, Time Management, Time Evaluation, TM, Personnel Administration, PA, Organization Management, OM, Personnel Development, PD, Sample Resumes, Free, Tips, Documents, SAP Help, SAP HR Forum, Discussion Forum, mySAP, Certification, Interview Questions & Answers, Course Employee Master Data, Work Schedules, Payroll sub modules, Absence, Attendance, Quotas, Gross salary, Tax calculation, Statutory, Legislation, Forms, Reports, Year end Activities, Certification Review, Technical Principles, Third Party Vendors, Testing, UAT, SAP HR FAQ, ESS and MSS, AS-IS, TO-BE, Integration, GL, FICO, SD, MM, Transaction Codes, T-codes, LSO, HR module Tables, Queries, Positive & Negative Time Recording, PCR, Schema, Features, Functions, Operations, SDN SAP, Payroll Driver, Errors, Solutions, Structures in Human Resources, Actions, IMG Steps, Path, Benefits, Info Type, Country Payrolls, India, USA, Canada, Germany, France, Specification, Error Message, HR Sapscripts, HR ABAP Reports, HR Authorizaton, Training and Event Management, Wage Types, Free HR eBook (PDF) SAP Reference Books on Human Resources, SAP Certification Exam & More. TOPIC 41-50 SAP HR Configuration 6000 Real-time Screen Shots, Processing Classes, Specifications, Rules, PCR, Schema, How to write PCR's with Examples, PCR Based on Rate, Number, Amount, Example, Link between PCR & Schema, Insert, Rates of Pay, X010 Base for rate, Addition, PCR X013, Division, Modifying, Standard PCR, V_512W_D, V_512W_B, How to Read Syntix, PC, Cumulation classes & Evaluation class and Specifications, PCR Based on Decision Making, Short Overview of SAP Payroll , Documenting HR Rules And Schemas , General Idea About UK, US, Indian Payroll , Interview Questions, Answers, Explanations, Errors, SAP HR Certification Review SAP HR, Configurations, Steps, Online Training, Screen shots, Download, Payroll, Time Management, Time Evaluation, TM, Personnel Administration, PA, Organization Management, OM, Personnel Development, PD, Sample Resumes, Free, Tips, Documents, SAP Help, SAP HR Forum, Discussion Forum, mySAP, Certification, Interview Questions & Answers, Course Employee Master Data, Work Schedules, Payroll sub modules, Absence, Attendance, Quotas, Gross salary, Tax calculation, Statutory, Legislation, Forms, Reports, Year end Activities, Certification Review, Technical Principles, Third Party Vendors, Testing, UAT, SAP HR FAQ, ESS and MSS, AS-IS, TO-BE, Integration, GL, FICO, SD, MM, Transaction Codes, T-codes, LSO, HR module Tables, Queries, Positive & Negative Time Recording, PCR, Schema, Features, Functions, Operations, SDN SAP, Payroll Driver, Errors, Solutions, Structures in Human Resources, Actions, IMG Steps, Path, Benefits, Info Type, Country Payrolls, India, USA, Canada, Germany, France, Specification, Error Message, HR Sapscripts, HR ABAP Reports, HR Authorizaton, Training and Event Management, Wage Types, Free HR eBook (PDF) SAP Reference Books on Human Resources, SAP Certification Exam & More. TOPIC 51-60 SAP HR Configuration 6000 Real-time Screen Shots, SAP HR Ad-Hoc Query, Payroll Accounting, Posting The Payroll Results To FICO , One payroll for two month , Factoring, Pro-ration, Monthly Factoring and Storage, Unpaid absences, mid month hire, termination, /801 to /8nn for partial period factors , PCR: XPPF Determine Partial Period Factors PCR: XVAL Valuate Payroll Elements using Partial Period Factors, Processing Class: Assign the Processing Class 10 to respective Wage type., ESS and MSS, Integration of SD, HR, FICO, Wage type Valuation, Availability, Infotype 2004, Time PCR & Schema, HRS, Processing Classes, Specifications, Rules, PCR, Schema, How to write PCR's with Examples, PCR Based on Rate, Number, Amount, Example, Link between PCR & Schema, Insert, Rates of Pay, X010 Base for rate, Addition, PCR X013, Division, Modifying, Standard PCR, V_512W_D, V_512W_B, How to Read Syntix, PC, Cumulation classes & Evaluation class and Specifications, PCR Based on Decision Making, Short Overview of SAP Payroll , Documenting HR Rules And Schemas , General Idea About UK, US, Indian Payroll , Interview Questions, Answers, Explanations, Errors, SAP HR Certification Review SAP HR, Configurations, Steps, Online Training, Screen shots, Download, Payroll, Time Management, Time Evaluation, TM, Personnel Administration, PA, Organization Management, OM, Personnel Development, PD, Sample Resumes, Free, Tips, Documents, SAP Help, SAP HR Forum, Discussion Forum, mySAP, Certification, Interview Questions & Answers, Course Employee Master Data, Work Schedules, Payroll sub modules, Absence, Attendance, Quotas, Gross salary, Tax calculation, Statutory, Legislation, Forms, Reports, Year end Activities, Certification Review, Technical Principles, Third Party Vendors, Testing, UAT, SAP HR FAQ, ESS and MSS, AS-IS, TO-BE, Integration, GL, FICO, SD, MM, Transaction Codes, T-codes, LSO, HR module Tables, Queries, Positive & Negative Time Recording, PCR, Schema, Features, Functions, Operations, SDN SAP, Payroll Driver, Errors, Solutions, Structures in Human Resources, Actions, IMG Steps, Path, Benefits, Info Type, Country Payrolls, India, USA, Canada, Germany, France, Specification, Error Message, HR Sapscripts, HR ABAP Reports, HR Authorizaton, Training and Event Management, Wage Types, Free HR eBook (PDF) SAP Reference Books on Human Resources, SAP Certification Exam & More. TOPIC 61-70 Advanced Leave, Compensation Management, Time Questions & Answers, FAQ, Data Loading Data Loading, CATS, Display, Modify, Create, Load, SAP HR, Configurations, Steps, Online Training, Screen shots, Download, Payroll, Time Management, Time Evaluation, TM, Personnel Administration, PA, Organization Management, OM, Personnel Development, PD, Sample Resumes, Free, Tips, Documents, SAP Help, SAP HR Forum, Discussion Forum, mySAP, Certification, Interview Questions & Answers, Course Employee Master Data, Work Schedules, Payroll sub modules, Absence, Attendance, Quotas, Gross salary, Tax calculation, Statutory, Legislation, Forms, Reports, Year end Activities, Certification Review, Technical Principles, Third Party Vendors, Testing, UAT, SAP HR FAQ, ESS and MSS, AS-IS, TO-BE, Integration, GL, FICO, SD, MM, Transaction Codes, T-codes, LSO, HR module Tables, Queries, Positive & Negative Time Recording, PCR, Schema, Features, Functions, Operations, SDN SAP, Payroll Driver, Errors, Solutions, Structures in Human Resources, Actions, IMG Steps, Path, Benefits, Info Type, Country Payrolls, India, USA, Canada, Germany, France, Specification, Error Message, HR Sapscripts, HR ABAP Reports, HR Authorizaton, Training and Event Management, Wage Types, Free HR eBook (PDF) SAP Reference Books on Human Resources, SAP Certification Exam & More. TOPIC 71-80 SAP HR, Configurations, Steps, Online Training, Screen shots, Download, Payroll, Time Management, Time Evaluation, TM, Personnel Administration, PA, Organization Management, OM, Personnel Development, PD, Sample Resumes, Free, Tips, Documents, SAP Help, TEM - Deleting Bus. Events after Historically Recording, Main HR Authorization Object for Security , Reporting on Infotypes limited by security , Structural Authorization vs Role Authorization, SAP HR Forum, Discussion Forum, mySAP, Certification, Interview Questions & Answers, Course Employee Master Data, Work Schedules, Payroll sub modules, Absence, Attendance, Quotas, Gross salary, Tax calculation, Statutory, Legislation, Forms, Reports, Year end Activities, Certification Review, Technical Principles, Third Party Vendors, Testing, UAT, SAP HR FAQ, ESS and MSS, AS-IS, TO-BE, Integration, GL, FICO, SD, MM, Transaction Codes, T-codes, LSO, HR module Tables, Queries, Positive & Negative Time Recording, PCR, Schema, Features, Functions, Operations, SDN SAP, Payroll Driver, Errors, Solutions, Structures in Human Resources, Actions, IMG Steps, Path, Benefits, Info Type, Country Payrolls, India, USA, Canada, Germany, France, Specification, Error Message, HR Sapscripts, HR ABAP Reports, HR Authorizaton, Training and Event Management, SAP Solution Manager, CATS, Wage Types, Free HR eBook (PDF) SAP Reference Books on Human Resources, SAP Certification Exam & More. TOPIC 81-90 General Idea About UK, US, Indian Payroll, Garnishments, US Tax, BSI, SAP HR, Configurations, Steps, Online Training, Screen shots, Download, Payroll, Time Management, Time Evaluation, TM, Personnel Administration, PA, Organization Management, OM, Personnel Development, PD, Sample Resumes, Free, Tips, Documents, SAP Help, SAP HR Forum, Discussion Forum, mySAP, Certification, Interview Questions & Answers, Course Employee Master Data, Work Schedules, Payroll sub modules, Absence, Attendance, Quotas, Gross salary, Tax calculation, Statutory, Legislation, Forms, Reports, Year end Activities, Certification Review, Technical Principles, Third Party Vendors, Testing, UAT, SAP HR FAQ, ESS and MSS, AS-IS, TO-BE, Integration, GL, FICO, SD, MM, Transaction Codes, T-codes, LSO, HR module Tables, Queries, Positive & Negative Time Recording, PCR, Schema, Features, Functions, Operations, SDN SAP, Payroll Driver, Errors, Solutions, Structures in Human Resources, Actions, IMG Steps, Path, Benefits, Info Type, Country Payrolls, India, USA, Canada, Germany, France, Specification, Error Message, HR Sapscripts, HR ABAP Reports, HR Authorizaton, Training and Event Management, SAP Solution Manager, CATS, Wage Types, Free HR eBook (PDF) SAP Reference Books on Human Resources, SAP Certification Exam & More. TOPIC 91-100 Download, Attachments, Global Implementation , Time Management Configuration Document, Blueprint_Questionnaire, HR 400, Time Constraint, SAP HR, Configurations, Steps, Online Training, Screen shots, Download, Payroll, Time Management, Time Evaluation, TM, Personnel Administration, PA, Organization Management, OM, Personnel Development, PD, Sample Resumes, Free, Tips, Documents, SAP Help, SAP HR Forum, Discussion Forum, mySAP, Certification, Interview Questions & Answers, Course Employee Master Data, Work Schedules, Payroll sub modules, Absence, Attendance, Quotas, Gross salary, Tax calculation, Statutory, Legislation, Forms, Reports, Year end Activities, Certification Review, Technical Principles, Third Party Vendors, Testing, UAT, SAP HR FAQ, ESS and MSS, AS-IS, TO-BE, Integration, GL, FICO, SD, MM, Transaction Codes, T-codes, LSO, HR module Tables, Queries, Positive & Negative Time Recording, PCR, Schema, Features, Functions, Operations, SDN SAP, Payroll Driver, Errors, Solutions, Structures in Human Resources, Actions, IMG Steps, Path, Benefits, Info Type, Country Payrolls, India, USA, Canada, Germany, France, Specification, Error Message, HR Sapscripts, HR ABAP Reports, HR Authorizaton, Training and Event Management, SAP Solution Manager, CATS, Wage Types, Free HR eBook (PDF) SAP Reference Books on Human Resources, SAP Certification Exam & More.
"sap_cache_", guixt sap creen shots, how to create holiday calendar in sap+screenshots, michel brandelik, print_param sap parameter, sap databrowser se16 max hits, sap hr data migration tool+dtt, sap pay scale, tms_ci_change_configuration, tms_ci_change_configuration, sybase afaria sap, sap supplier relationship management software, supplier relationship management software products, sap supplier relationship management solution map, supplier relationship management software download, sap supplier relationship management solution, supplier management process sap, sap supplier relationship management pdf, supplier relationship management sap what is it, supplier relationship management software, supplier relationship management sap srm, supplier relationship management sap, supplier relationship management benefits to supplier, installed base management, vendor portal sap, vendor portal in sap, sap procurement business process, business objects, durman esquivel mexico, business objects infoview training, sap dietmar hopp allee 16, oprogramowanie sap, e sourcing sap srm, e sourcing sap, e sourcing software sap, what is sap e sourcing, sap e sourcing frictionless, sap e sourcing training, e sourcing sap on demand, solman sap charm, solman sap training, solman sap certification, nakisa sap talent management, nakisa sap portal, nakisa sap talent visualization, what is sap nakisa sap, nakisa sap partner, sap talent visualization by nakisa, what is sap nakisa, nakisa sap, sap hcm nakisa, solman overview.pdf, losungen dashboard, satuan acara penyuluhan tbc, intellego chile, shabana khan sap, gestionale sap, partha biswas sap, szkolenia sap polska, szkolenia sap, xcelsius trial software, xcelsius trial code, xcelsius trial license key, xcelsius engage server software, xcelsius trial version key, crystal xcelsius trial version download, sap business objects xcelsius training, xcelsius engage 2008 trial, xcelsius trial version product key, xcelsius trial key, xcelsius trial version download, xcelsius software versions, xcelsius trial version, xcelsius trial version free download, xcelsius software business objects, sap xcelsius free download, xcelsius engage 2008 full product, xcelsius software sap, sap bo xcelsius download, xcelsius engage server software download, xcelsius 2008 trial versionxcelsius 2008 free trial, xcelsius 2008 trial, xcelsius software, xcelsius dashboard, sap web dynpro training, web dynpro java basics, sybase afaria sap, sap supplier relationship management software, supplier relationship management software products, sap supplier relationship management solution map, supplier relationship management software download, sap supplier relationship management solution, supplier management process sap, sap supplier relationship management pdf, supplier relationship management sap what is it, supplier relationship management software, supplier relationship management sap srm, supplier relationship management sap, supplier relationship management benefits to supplier, installed base management, vendor portal sap, vendor portal in sap, sap procurement business process, business objects, durman esquivel mexico, business objects infoview training, sap dietmar hopp allee 16, oprogramowanie sap, e sourcing sap srm, e sourcing sap, e sourcing software sap, what is sap e sourcing, sap e sourcing frictionless, sap e sourcing training, e sourcing sap on demand, solman sap charm, solman sap training, solman sap certification, nakisa sap talent management, nakisa sap portal, nakisa sap talent visualization, sap abap webdynpro tutorial, dynpro sap download, sap web dynpro java download, web dynpro abap alv tutorial,web dynpro for java concept, web dynpro java download file, abap webdynpro tree tutorial, dynpro sap tutorial, sap abap web dynpro download, web dynpro java table sort, web dynpro for abap tutorial 6 component usage, sap web dynpro for java, web dynpro error rabax_state, webdynpro for java tutorial, web dynpro abap tutorial, sap sdn web dynpro abap, web dynpro abap tutorial sap, dynpro download sap, web dynpro java tutorials pdf, webdynpro tutorial, sap abap web dynpro tutorial, web dynpro for java download, webdynpro tutorial abap, web dynpro abap tutorial download, web dynpro for java tutorials, dynpro java training, sap web dynpro alv table, web dynpro java training, sap web dynpro java tutorial, web dynpro abap alv pdf, sap web dynpro java ajax, web dynpro for java tutorials pdf, webdynpro tutorial in sap, web dynpro abap tutorial 5, sap web dynpro for java tutorial, web dynpro for java training, webdynpro tutorial java, sap web dynpro download, sap web dynpro tutorial, web dynpro java tutorials, sap web dynpro performance, sap web dynpro free download, sap web dynpro for java download, sap web dynpro download free, sap web dynpro for java training, sap web dynpro abap tutorial, dynpro sap abap, web dynpro java download, web dynpro java best practices, web dynpro java file download, wsaeconnrefused connection refused sap, wsaeconnrefused connection refused, wsaeconnrefused 10061 connection refused sap, 10061 wsaeconnrefused connection refused sap, wsaeconnrefused connection refused in sap, sap 10061 wsaeconnrefused connection refused, portal environment sap ,xcelsius 2008 download keycode, xcelsius 2008 sp3 free download, sap dashboard design xcelsius, xcelsius tutorial free download, xcelsius 2008 download free sp3, xcelsius 2008 sp3 download free, xcelsius 2008 sp3 supported platforms, xcelsius examples drill down, sap bo xcelsius tutorial, xcelsius dashboard design, xcelsius examples sap, xcelsius tutorial sap, crystal xcelsius dashboard examples, sap universal worklist sharepoint, sap universal worklist configuration, business portal software trial, sap extractors for bw, extractors sap bi, extractors in sap bi, extractors sap bw, crm extractors sap bi, types of extractors in sap bi, portal_content sharepoint, adobe livecycle designer tutorial sap, sap adobe livecycle designer tutorial, sap web application server 6.20, sap web application server download, web application server sap pdf, solman sap tutorial