2009-10-21

SAP SmartForms Checklist

We currently have a project underway to implement SAP at one of our facilities in Mexico, and for this project I am responsible for getting all of the shipping labels created using SAP SmartForms. I must create a huge number of labels, so I have many labels moving through various stages of development. In order to keep track of each label and ensure that nothing gets missed I have created a simple checklist.

We use a formal service request (help desk) system in which I must create proper requests. The system only supports plain text, so that is what my checklist is. I simply copy this checklist template into one of the service request fields and then change the "O"s to "X"s when an item is completed. I also fill in certain values after they are defined so that I have a reference. Otherwise the team and I could confuse which message types go to which customer.

If you are interested, you can see the checklist after the jump.

2009-10-19

SAP Exit for PA30

I recently had to write a small exit for HR that would set certain default values, and then make sure that each group could only be selected from once. Below is the ABAP code that I used to accomplish this small task (inside tcode CMODE, by drilling down).

EXIT_SAPFP50M_001 > ZXPADU01
data:
 i0025 like p0025

* stollcri -- 2009-10-05 -- SR1182496
if innnn-infty = '0025'.
 CALL METHOD cl_hr_pnnnn_type_cast=>prelp_to_pnnnn
  EXPORTING
   prelp = innnn
  IMPORTING
   pnnnn = i0025.

 i0025-pkt01 = '1'.
 i0025-pkt02 = '1'.
 i0025-pkt03 = '1'.
 i0025-pkt04 = '1'.
 i0025-pkt05 = '1'.
 i0025-pkt06 = '1'.

 CALL METHOD cl_hr_pnnnn_type_cast=>pnnnn_to_prelp
  EXPORTING
   pnnnn = i0025
  IMPORTING
   prelp = innnn.
endif.

(more after the jump)

New Features in Windows XP

I know that Windows 7 will be available for retail sale in a few days, but my company is still using Window XP. And, unfrotunately, many people are still limiting themseleves to skills that they learned with Windows 95 and NT.

We have countless people who use the Windows desktop as their main storage location. The desktop is where they store documents, links and even small programs. The problem with this is that once the desktop gets full it gets hard to find what find anything. So, to resolve that problem people organize their desktop icons. And, that works great until the user logs in to a PC with a smaller resolution screen, then all the icons get rearranged. To solve this problem our users found a nice little third party application.

I believe that software should not be used to replace user education, so I decided to create some training material regarding the organization features built into Windows XP. I simply created an image that shows the organizational features that are built in to Windows XP.

Just in case any one else finds themselves in this same situation, the image is after the jump.

2009-10-17

Imitation Christmas Ale 2009

Almost three months ago I brewed up another batch of my Imitation Christmas Ale, and I forgot to write a post about it. But, since that batch is long gone I am considering brewing up another batch and thought that it would be a good time to write up the revised recipe.

I am definitely getting better at this recipe, and this version is much closer to my target, but I still have some things I would like to improve. I would like to add a little more spice flavor and bitterness, so in the next batch I am considering adding some spices and hops to the secondary. Also, the bottled brew was barely carbonated, but the taste was still good. It could probably use a little more time to age. But, as any brewer knows, it is hard to keep yours hands off of beer in the bottle.

The beer was best served at around 50 degrees, and tasted great at cellar temperatures. It did exhibit chill haze (and loss of flavor) at refrigerator temperatures. This would be a good brew to drink on a cold winter day.

The recipe is after the jump.

Napoleon was the "Son of the Revolution"

Please don't plagiarize my work, your instructor will know. If you can find it, so can he/she (I can see by looking at the logs for my site). Thanks.

If the life and career of Napoleon Bonaparte is examined in a vacuum, then it would certainly appear that he was a demagogue and dictator who simply imposed his will upon subjected peoples. But, it would be naïve to judge this great leader without considering the world around him, the events that led up to his rule, and the ultimate effects of his decisions. In light of those circumstances it is reasonable to assert that Napoleon was the “son of the Revolution”, and that he liberated Europeans from reactionary and monarchical rule.

Napoleon started at the lowest possible rung on the ladder where his ascension to greatness would still be possible. If he were any lower in the socio-economic system then he would have not been able to obtain the education necessary to achieve greatness. His rise to power is equivalent to what we call the “American Dream”, and his actions show that he understood the importance of this sort of meritocracy. Napoleon is often quoted as saying, “La carrière ouverte aux talents", which roughly means “careers open to the talented.” And, his rule certainly spread this sort of republican ideology that was ingrained in the French revolution.

2009-10-16

SAP Quick Cut and Paste

I recently had a user call and ask why he couldn't copy and paste properly inside of SAP, it was working properly outside of SAP. So, I took a look at his problem and saw that everytime he highlighted some text it would automatically unhighlight itself. After looking through some of his settings I noticed that he had "quick cut and paste" enabled.

To change this setting you must click the "Customize Local Layout" button on the toolbar, and the check or uncheck "Quick Cut and Paste."

This copies text as soon as you highlight it and helps with areas where you would normally have to use Ctrl-y prior to copying. But, it causes some unexpected behavior in areas where you would normally not have to use Ctrl-y. I recomend that if you are in an area of the system where Ctrl-y is necessary a lot that you turn it on, but turn it back off when you are done.