SAP: Favorites and Links
All information about user set up - like favorites and links - are stored in system tables.
So if you want to take a look how the information is layed out just hit se16 and take a look at the following tables.
SMEN_BUFFC: stores favorites informatoin
COLUMN-UNAME will display user name
COLUMN-REPORT will display transaction code
SMEN_BUFFI: stores user associated links
COLUMN-UNAME will display user name
COLUMN-URL will display the link of the address
Upgrading your Nikon firmware
If you are a proud oowner of a Nikon camera and want to know a little more about what version of firmware is installed oon your system and ify ou need to upgrade have a look here.
Free Tickets: Henry’s Photo Show 2009
Find your free tickets for The Photographic, Video, & Digital Imaging Show right here. All you need to do is print it and show it at the entrance.
Have fun and enjoy!
Thoughtful approach to photography by Andrew Kornylak
A great article about a leap and following what you love. Andrew talks about his journey in becoming a pro photographer while working as a Software Developer.
The article talks aobut taking your time and loosing your self in the moment. I absoltuely agree with the statement “it’s not enough to just snap away wildly”; I find my self more often taking my time with the subjects that I shoot.
It’s true, it’s not what you see it’s how you see it.
SQL: SELECT random number of rows
Here’s a quick way of requesting a random number of rows from a MySQL database:
SELECT * FROM <tablename> order by rand() limit <n>;
tablename: is the name of the table you wish to access
n: is thenumber of rows you wish to return
Be careful though, don’t use this logic on a database with a large record, the performance will be unpleasant.
SAP who has access to what?
To quickly check who has access to a particular object in an SAP system try executing program RSUSR002.
I needed to find out who has access to transaction SMQ1 and managed to accomplish that by filling in the following parameters in the first screen:

RSUSR002
Computer Science and I - where it all started
This is a little reminiscent - these are the guys who were there when I walked down the halls of UofT.
Brought to you by ByteClub.
Online ABAP community
Get involved, get started!
ABAP cancelling an SD Billing Document
If you have access to a billing document number try executing the following function:
DATA: l_rtrn TYPE bapireturn1 OCCURS 0.
DATA: l_succ TYPE bapivbrksuccess OCCURS 0.
CALL FUNCTION 'BAPI_BILLINGDOC_CANCEL1'
EXPORTING
billingdocument =
* testrun =
* no_commit =
billingdate = sy-datum
TABLES
return = l_rtrn
success = l_succ.
This should create a cancellation document.
A scam or not a scam [phone tracking]
Just got a phone call from a Police Association asking for a donation. Obviously the first thought that crossed my mind is ‘another scam’. But I did some checking and it looks like these guys are legid - though it seems that only a small percentage of the funds goes to the actual charity.
To check if you got a scam phone check with Phonebusters [applies to Canada only].