Geek out: Programmers and Holidays

A friend of mine shared this little joke…some of you may appreciate it Why do programmers confuse Halloween and Christmas? Click for answer Because: OCT31 == DEC25 Tweet it if you got it! Cheers, Byron

Read full story Comments { 1 }

jQuery Forms Plugin: Unsupported Property or Method Error

Another minor headache with the jQuery Forms plugin and WordPress.  I’m trying to do this WordPress Plugin right, using the standard WP way of Ajax where you target “wp-admin/admin-ajax.php” and hook into the Ajax features with a hidden field named “action” from your form that tells WP what the hook name you’re trying to call. [...]

Read full story Comments { 3 }

jQuery Forms Plugin – Uncaught TypeError: Property ‘submit’ not a Function

Good grief!!! Finally found the answer to an error I was getting when trying to upload a file using the jQuery Forms plugin (jquery.forms.js). I’ve used that excellent little plugin a lot in the past, but just got stumped on this simple little problem.  Seriously, this was not fun. The Situation Using jquery.forms.js plugin in [...]

Read full story Comments { 0 }
server-settings

WordPress: Fatal Memory Error when Upgrading to 3.1.1 or 3.2

[UPDATE]  This also applies to 3.2.  I’m finding that I have to deactivate more and more plugins as time goes on.  I believe it is the UNZIP operation that is eating up so much memory.  But something awesome should occur after you get 3.2 installed…future upgrades are only going to update the changed files.  This [...]

Read full story Comments { 8 }
se10-obj-in-requests-search1

SAP Configuration Tip: Search for Objects in Transports

Another quick tip for SAP Configurators (the old dogs will probably know this already, but noobs like me might appreciate it). You can search for various objects in transports as follows: Go to the Transport Organizer (T-code: SE10) Click Goto > Objects in Requests Now, you have to know the Object Name and Object Type [...]

Read full story Comments { 2 }
comp-diffs

SAP – Compare Configuration Between Systems

With SAP, you can easily compare configuration between different systems. Most configurators probably know that, but put this one in the “you learn something every day” column, at least for me. I was recently trying to determine if there were any differences between our QA and Development systems in some configuration for Electronic Banking, when [...]

Read full story Comments { 1 }

SAP – Standard Treasury and Payables T-codes

As I get deeper into SAP Treasury and Payables, my t-code repertoire is expanding. On this page, I’m going to capture some of the basics. You may ask, “Why not on an internal wiki?” Well, while I capture similar info there, I find this faster to access…don’t have to login and 5 or 6 fewer [...]

Read full story Comments { 0 }
f111error

SAP: F111 Payment Request Error – Inconsistent Tables

In testing out my Fedwire configuration, I ran into a situation where I needed to switch the clearing account from the normal bank clearing to a Wire Clearing account. I made this change to the Payment Method in transaction FBZP by changing the Bank Sub-Account to the Wire Clearing GL account. After I did this, [...]

Read full story Comments { 0 }
se93-f110

SAP – SE93 – Gets You Details on T-codes

In SAP, you can use transaction SE93 – Display Dialog Transaction – to display some additional details on T-codes, including the Program Name and Authorization Object. Of course, you can usually see the Program name by clicking on the info icon at the bottom right of your SAP screen, as shown here: But by using [...]

Read full story Comments { 0 }
PHP – Sort a Multi-dimensional Array by Value for a Key

PHP – Sort a Multi-dimensional Array by Value for a Key

Here’s a problem I’ve run into a time or two with sorting arrays. I had a multi-dimension array that I needed to sort on a the values for a specific key (“name” in this case). This array is similar to what you would get back from a mysql database query when you use ARRAY_A to [...]

Read full story Comments { 1 }