How To Transport Organizational Structure After spending hours creating an Organizational Structure, it is rather silly to recreate that for each environment you have for testing purposes. One simple solution to that vs doing an entire system company is to use a standard delivered tool from SAP. This tool could be used in several different way, we’ll get that into [...]
Out of the box functionality, you can type in comments through PA30 on some of the infotypes.
But how do you have this cool feature for other infotypes, such as custom infotypes or infotypes not automatically default out of the box?
You can! Very easy as the matter of fact. You can point your table to [...]
I came across a posting on SDN recently with a user confused with PS Grouping and ES Grouping in payroll. This is actually very simple to use.
Personnel Subareas for Primary Wage Type (PS Grouping - table V_001P_K) allows you to give a grouping to the combination of Personnel Area and Personnel Sub Area.
Employee [...]
Disneyland Resort, California A couple of weekends ago, my wife and I join our friends at Disneyland Resort for a day. I’ve been to Disneyland several times and each time you could never seems to take enough pictures. Each time I come across new angle of things to take pictures of. This time around, since we went with [...]
Nikon Annouced D700?!?! D3 in “mini-me” format! Nikon has once again stunt the photography world. Since the D200 release, Nikon was quiet, while Canon and other companies releasing major blow one after another. The highly anticipated D200 replacement, dubbed the D300 was released not too long ago along with it’s bigger brother the D300.
Earlier this month, Nikon annouced the “mini me” of [...]
It was press released a few days ago that Nikon will have a new release of their previous popular image editing software Capture NX. Capture NX took image editing to a whole new level with their unique Control Point U-Technology and Non-Destructive RAW format editing.
http://www.nikonusa.com/Find-Your-Nikon/Product/Imaging-Software/25385/Capture-NX-2.html
Key Features include
Capture NX 2 features award-winning U Point® technology for [...]
Here is a little neat trick for Wordpress. Normally, you would use the WordPress tag “query_posts” to query against the database to list all of the posts relating to one or more categories.
Usually a simple query against a category would like something like this:
<?php query_posts(showposts=5&cat=$category);
while(have_posts()) { the_post();
}
?>
Basically all this is doing is show 5 posts [...]
This should be helpful for anyone who decided to host their own blog using WordPress another location. It took me awhile to search for this since the new blogger version template style changed a bit.
http://laffers.net/howtos/howto-redirect-blogger-to-wordpress
Thanks to laffers.net for putting this together. It was extremely useful!
Here are snip of what he presented there. All credit goes [...]
Here is a little WordPress tip / trick. For anyone who is trying to build their sidebar and or want to add a dropwdown list style for category listing, this is one simple method.
http://codex.wordpress.org/Template_Tags/wp_dropdown_categories
You can use the code snip they’ve provided
<li id=”categories”>lt;h2><?php _e(’Posts by Category’); ?></h2>
<?php wp_dropdown_categories(’show_option_none=Select category’); ?>
<script type=”text/javascript”><!–
var dropdown = document.getElementById(”cat”);
function onCatChange() {
if [...]