Category Archives for SAP Development

Change name of enhancement tab within IW32

This is very simple to do by using SAP translation: Open function group COIH within transaction code SE80. Select screen 1100 (double click) Use menu option GOTO->Translation Click Ok(green tick) on

Continue reading

Add WBS Milestones to sales order

Use SAP transaction VA02 Enter your sales order number and press enter Use menu Goto->Header->Billing plan On the next screen click on the Milestones button at the bottom   Now enter

Continue reading

Create milestones on WBS

Here are the simple steps required to add milestones to a WBS Execute SAP Transaction CJ02 Enter your WBS number into the appropriate field and press enter Use menu option WBS element->Milestone

Continue reading

Display URL in SAP ABAP report using class method

*&---------------------------------------------------------------------* *& Report  ZDISPLAY_URL *& *&---------------------------------------------------------------------* *& *&---------------------------------------------------------------------* REPORT  Zdisplay_url.

Continue reading

Add Google analytics to your wordpress blog

Slightly off topic but if you want to install Google Analytics onto your WordPress blog simply add the code provided by Google to the footer.php file, directly above the </body> command. This can

Continue reading

Payroll control record PA03

The payroll information displayed via transaction PA03 is stored within tables T569V, T549A and T549Q. They can also be retrieved using Function module PA03_PCR_READ Another useful function module could

Continue reading

What is SAP master data?

Master data is data which does not change very often such as an employee or customer name, address or telephone number. It is generally data which is used within your ABAP code rather than updated, such

Continue reading

What is SAP transaction data?

Unlike master data, transaction data is the data that you create on a day to day basis i.e. the purchase order! When a user creates a new purchase order all the information added to this order such as

Continue reading

SAP structures, tables and internal tables

A structure is just a definition containing a list of fields under a name and does not contain any data within the SAP data dictionary. Although there is not data you can still view the definition within

Continue reading

View SAP parameter ID value within debug

In-order to see the parameter ID value within the SAP debugger simply got to the menu option Goto->System Areas->SAP Memory. All Parameter ID’s used by current program should be listed here. Please

Continue reading