TOP 10 ABAP Tips

Report Tree Personalisation

This needs to be configured to enable the users to be able to run the customer specific reports.The transaction code to change this is:ORET: Configure Report Tree - Initial ScreenThis involves roles, profiles, authorisations etc and should be done by the person responsible for that area in the system.Transport Request created after saving infotype 1Whenever infotype 1 was saved, the dialogue box prompting a transport request appeared on the screen.The automatic transport indicator was switched off in PD.Long messages on footerClick on the message and hold the mouse button. After moving the mouse to the left side.Alternatively, you can use transaction code SERP to create and modify a report tree. Choose a name for the tree (preferable to start it with a Z...) Add in the reports that you wish to include - with pertinent nodes and sub-nodes. You can then run any of the reports using the transaction code SARP.

User Exits

User exits are useful enhancements to the system. More importantly, you can configure the system to meet your precise requirements. The transaction code to use is SMOD. If you wish to default certain values into an infotype, you could use a Customer Enhancement PBAS0001 and more specifically component EXIT_SAPFP50M_001. You would then need to insert the relevant code. These changes will be undertaken by an ABAP programmer.After entering a value in a field, it can be checked through a field exit. The system makes the field value available to be checked and changed in an ABAP/4 function.

User ExitPoints previously set in the system that let you evaluate data. The fields available are also previously defined by SAP. All fields value available can be checked in an ABAP/4 program.

Validation It allows solid data entry regarding special rules. According to previous rules, the system can evaluate an entry and a message can appear on the user's terminal if a check statement is not met. A validation step contains prerequisite statement and check statement. Both of them are defined using Boolean Logic or calling an ABAP/4 form.

Substitution Fields contents can be changed using substitution. When data are being entered, the data can be substituted by another value regarding rules previously defined. A substitution step contains prerequisite statement, substitution value and substitution exit. All of them are defined using Boolean Logic or calling an ABAP/4 form.

Set Values or ranges of values are specified under a set name. Sets are easier to create and maintain instead of using tables. They give you more flexibility when maintaining your system.

Key words It allows changes on field description according to data element. The short key word used on most screen to identify the corresponding field contents can be changed too.

Requirements & formulas ABAP/4 forms that can be used to handle pricing procedures, rounding rules, copy and data transport Sales activities.

HR User Exits Commonly used "user exits" in HR are ZXPADU01 and ZXPADU02. ZXPADU01 is called before entry into an infotype. It is commonly used to automatically populate fields on the infotype by reading data already on the employee's data record. ZXPADU02 is called after data entry into an infotype. It is commonly used to validate data that has been entered, which could not be validated by SAP standard functionality on the infotype.

Extended help under windows does not link correctly

Check the file sapdoccd.ini under your presentation server. It must be present in the main windows directory and should assign to help files directory.

SAP Documentation - Report: RPDSYS00

If unable to view documentation using the above report then do the following:

  1. Change the feature DSYSL.
  2. Enter &DSYSL=X instead of &DSYSL=.
  3. Save and generate the feature.
  4. Run report RPDIND00 specifying the language in which the texts for features, schemas and rules should be displayed.

SAP Help Files

For searching on all available help, use the menu path Help arrow R/3 Library. Use the Index and Search tabs to obtain the correct information. If you can't find the relevant part of the Help in the system - it can be quite difficult to find at times, go to the application or transaction and then once in, use the menu path Help arrow Application Path.

Customising of Local Layout

On the green/red/blue icon on the front screen (3 circles using 4.5 GUI or screen with the 3 coloured vertical lines on 4.6 GUI), you can do a screen print using the hardcopy option. By activating the "Quick Cut and Paste" you just need to highlight a field to have it placed on the clipboard.

Developers Key

If you are wishing to register a developers key for a particular user, you need to go to the OSS (transaction code OSS1). When registering the developer's key (also called access key) you need to stipulate the SAP installation number. To find this out, go to the ABAP workbench and try and copy a program. The system will request a developers key for the user. The dialogue box will also have the installation number which you will need when registering.

RFC Destinations

You can set up RFC connections to other SAP clients and boxes, using transaction code SM59. You can enter the target host details or the IP address of the client.

Customised Transactions

To create customised transactions use the menu path:

Tools arrow ABAP Workbench arrow Development arrow Other Tools arrow Transactions

or use transaction code: SE93.Note: You need to create the transactions before you create the Area Menus. The area menus are linked to transactions which in turn are linked to reports etc.When you create a transaction you have to choose one of the 5 radio buttons offered. Usually choose one of the first 2 options which are program and selection screen for reports in either dialogue or report selection mode. You then enter the details for transaction - name, report associated to the transaction, screen number and a development class. Choose local if you do not wish to promote the transaction in a transport. If you do want to promote it, then choose a transaction class which is transportable.

Creating Area Menus

To create customised transactions use the menu path:

Tools arrow ABAP Workbench arrow Development arrow Other Tools arrow Area menus

or use transaction code: SE43.Choose and name for your area menu and a description for it. In the menu bar, enter the menu headings as you wish to see them. Once entered, double-click on them to enter the details on the drop down menu. Enter the transaction code and the associated text for each.In the application toolbar enter the transaction codes in the relevant places. The function text can be either static or dynamic. Enter the function text (the actual text on the icon) in the next dialogue box and then choose an icon from any of the SAP standard ones in the dropdown. The information text is the text displayed when you hover over the icon. You then have the option of entering a function key.Area menus are no longer used in version 4.6. You can extend the SAP menu using transaction code SE43. Add the new menu by using EXTEND S000.

Customising Cross-System Viewer

This is commonly known as OY19 (you can also use SCU0) which is its transaction code. It allows you to compare IMG activities, application components, transports or a manual selection of items, between different clients on separate servers. The manual selections could be tables, structures, reports etc. The resultant view then allows to filter the results. The color legend then gives you an idea as to where the differences are.

Table Comparison

The transaction code for this piece of functionality is SCMP. This allows you to compare tables in different systems. The comparison is made using RFC's which link the clients and then allows the system to compare the tables. It is very similar to the compare option found on the Utilities menu of the table maintenance screen (SM30). In SCMP you have the option of entering selection criteria, displaying only the differences, whether you wish to execute the query in background or whether you wish to restrict the fields which are to be compared. It is a very useful tool.If you wish to copy entries or contents of a table from one client to another you can do so in SM30. In the target client , choose the table and then go into the maintenance option. Use the menu path Utilities arrow Adjust (if you used the display option you will see the Compare icon). Enter the RFC connection - this has to have been set up using transaction code SM59. The resultant output shows the differences etc. Use the filter and the color legend to make things a bit clearer. Tick the relevant lines and then click on the "adjust" icon. The screen shows the entries that you have chosen. Choose entry, field or all entries to be copied into the table. When exiting the screen you should get a message "data has been changed by adjustment - copy changes?". When exiting the table maintenance screen you will be asked to save the table - if you have not yet already done so. A very useful piece of functionality. Ensure that you are able to use SM30 in your Production environment.

ABAP Splitscreen Editor

The transaction code for this functionality is SE39. It allows you to compare 2 program either in the same client or in 2 different clients. The resultant screen offers both programs and their differences. You can step through the differences.

Repository Browser

Transaction code SE80 takes you to the repository browser. This is quite a useful tool to see all the reports, function groups, local objects or fields associated with a particular development class. If you have used only a few development classes on a project, you can specify them here. You will then be able to view, for example, all the reports associated with those development classes.

Debugging an ABAP Program

Use transaction code SE38 to go to the ABAP editor. Place a breakpoint (stop icon) on the relevant line. Execute the program from the main screen. The program will then stop at the relevant point. Double-click on a line to allow you to see what is being passed through the program at that point.

Function Builder

To use this functionality, you need to use transaction code SE37. This allows you to view and run function modules individually, before they are run in other programs.

Changing Text Elements

You can change text elements in a number of different ways. Use transaction code SE11 and input your Data Element - to find out the data element go to the screen on which it is held and use F1 arrow Technical Info on the field. To change a text element, you need to have a developers key registered. Click on the change icon and change the short, medium or long field label. Check that you have changed the correct one by checking back on the infotype.You can also change text elements using the functionality offered by GuiXT. See the document on GuiXT which is available from the Contents page of this website.

Period Selections on SAP standard Reports

The selection screen in SAP standard reports and ABAP Queries can be a bit confusing when selecting "Other Period" as your selection criteria. You will note 2 lines with "From" and "To" values for input. The first set relates to the data that is to be output, whilst the second set called "Person selection period" relates to the actual selection parameters. Consequently, if you wanted to query and output all data in a specific period, you should enter the start and end dates in both the output and selection parameters.

ABAP Reporting on Payroll Results

It is possible to write ABAP reports that pull data from the payroll clusters. This is a fairly complex task made trickier by the fact that retroactive calculations will have to be included.

It is possible to configure and store payroll results for an employee in the following infotypes:

InfotypeInfotype Description
0402 Payroll Results
0403 Payroll Results 2
0458 Accounting infotype
0459 Quarterly Cumulation
0460 Annual Cumulation

Once the data has been stored on the infotypes, it is possible to include these infotypes in a functional area and interrogate them, using SAP Query and Ad Hoc Query. For the configuration of payroll results in the above infotypes, see the relevant page under Personnel Administration.

Reading Data from Payroll Clusters

You can use the reports RPCLSTRx to read specific payroll results - where "x" is the country-specific identifier. Replace the 'x' with your country-specific letter.You can convert certain clusters using the reports RPUCB*** where *** relates to the different clusters.You can copy these reports or modify them to write your own reports that interrogate the payroll results clusters.

Deleting Data from Clusters

You can use report RPUP2D00 to remove employee data from cluster B2. Use Relation ID = B2 and Sort Field (use *99999999*, where 99999999 is employee number to see the exact format e.g. 999999992001091, which means employee number year - 2001 pay period - 09 and cluster type - 1).If you wish to update the data held in the variouse clusters, you can do so by using the different macros held in table TRMAC. Use the macros RP-EXP-... and RP-IMP-... to export and import the data.

Data Migration - Available Tools

You can upload old master data info into SAP by using the report, RPUSTD00, use this interface as a model and modify it to suit your needs. Transaction Code SXDA takes you to the Data Transfer Workbench. Use object 0555 for Personnel Administration and 0777 for HR Planning. 0555 uses the program RPUSTD00 whilst 0777 uses RHALTD00 (Legacy Data Transfer). The documentation on SAP will give you a good start.You can use the legacy system migration workbench - transaction code LSMW. It is a standard tool delivered with the SAP system.Wanting to move Personnel Administration data from one client to another? You can use CATT procedures to do this quite easily. SAP designed Computer Aided Test Tool for repetitive testing on the system, but it can be used effectively for data migration exercises. You would need to export all the required data into Excel and then write a CATT procedure to load up the data into the other client.

Schema/Rule Debugging Tips

Setting breakpoints:Before version 4.0:The internal table AS tells you where you are in the exploded schemas/sub-schemas. It is an exploded version of table T52C0, which contains all schemas/subschemas.Schema Lines: Use the BREAK Function with your "rosco" as parameter one in the Schema. Rosco is your unique identifier, as set up in the payroll parameters (Parameter name is AB4).Features: Break at form RE549D until you get the right Feature.Rules: Use a BREAK function on the line before the Rule is called using your rosco.Functions: Set a Breakpoint on the function, remembering to put FU at the beginning of the form. Use OP for operations.After version 4.0:Schema Lines: Set a Watchpoint* on AS-parameters with a value the same as your schema line. Press Continue after it stops for the first time as this is just the AS table loadingFeatures: Set a Watchpoint at T549D-NAMEN with the Feature name you want.Rules: Set a Watchpoint* on AS-PARM1 with a value the same as your rule. Press Continue after it stops for the first time as this is just the AS table loading. Then continue to Form REGEL.Functions: Set a Breakpoint on the function, remembering to put FU at the beginning of the form. Use OP first for Operations.

Identifying Reports

An easy way to identify reports is to go to ABAP workbench, select the object (e.g. table) and click on the "where-used" icon. This will give you a list of all the reports that contain this object. You then can filter out certain reports and look in detail at them. Alternatively you can search for a string value in any specific report using the report RPINCL10.

Programming Macros - RMAC Modules

Macros in HR are quite a useful ABAP feature. You can find them in the table TRMAC and all the HR macros should start with RPThe online help is quite good. It can be found following the path:

HR arrow HR Tools arrow RMAC Modules
in the HR Standard System

ABAP Programs - Version Management

The version management functionality is quite useful. Use the menu path:

Tools arrow ABAP Workbench arrow ABAP Editor arrow Utilities arrow Version Management

Alternatively you can use transaction code SE38, enter the program name and then use the menu path: Utilities arrow Version Management. You will see the current active version of the program and any other previous versions of the program. You will also see the transports that those versions have been included in. Note: When saving a program version in a transport, you are effectively saving a snapshot of the transport at that particular moment in time. This highlights the importance of the order in which the transports are promoted.You can compare different versions in the same client as well as versions in different clients in other systems. To compare different versions in the same client use the F5 key or click on the icon with 2 vertical arrows. To compare between versions held in different clients on the same or different systems, click on the icon "remote comparison". To undertake this you will have had to set up the RFC connections between the systems (transaction code SM59).

Infotype Text

It is possible to capture text that has been entered against an infotype, during the running of a report. The example below gives an extract of the code required to extract text, which has been maintained against infotype 0019.loop at p0019 where begda le pn-endda and endda ge pn-begda. move-corresponding p0019 to cprel. move '0019' to cprel-infty. move cprel to tx-key. rp-imp-c1-tx. loop at ptext. ... ... ... endloop. endloop.

Dynamic Actions

If you would like to subtract one day from a date in infotype 41 when a person is terminated you can do so by carrying out a mathmatical operation directly in T588Z - which holds the configuration relating to dynamic actions. Table T588Z allows you to do a direct mathematical operation only in IT 0019. An example from SAP Help is inserted:INS,0019,30W P0019-TERMN=P0028-BEGDAW P0019-VTRAN='1'W P0019-VTRZH='013'W P0019-VTROP='+'But after that you can populate dates in infotype 0041 using the date from infotype 0019. It would be preferable though to write a user exit - you could provide additional date(s) validation calling table RP50D.

Using SE11: Dictionary

If you would like to display the contents of a structure, then you can do so using transaction code SE11. Enter the structure in the field titled "Data Type" and click on the display icon. This will give you all the available fields within a structure. You can also use this field to search for:

  • data elementsstrucuresdatabase tablestable typesclass andinterface

Changing the development class

To change the development class from $TMP, use transaction code SE80 - click to Local Objects, find your ABAP program or other object, right click on it - more functions - change development class on 4.6c.

Default Values for a Field

Wishing to set a default value in particular field in an infotype.There are certain features which can do this. For fields that are not covered by SAP standard features.

  • You can use a dynamic action whilst in the personnel action. You can create a feature.
  • Otherwise you can use the user exit available for infotypes - ZXPADU01

Remember that they have to be activated first, and you will have to have ABAP knowledge to make adjustments.

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