THE NIKON LENS ALPHABET
A great post by DtownTV
D: Stands for Distance. These lenses take the distance between the subject and camera into account for metering. They have a physical aperture ring which needs to be locked.
G: These lenses have the same technology as D lenses, but they do not have an aperture ring. The G doesn’t stand for anything. It’s just a D lens without a physical aperture ring.
VR: Stands for Vibration Reduction. These lenses minimize blur caused by camera shake.
ED: Stands for Extra Low Dispersion Glass. This is the best glass Nikon makes, giving you better color, contrast, and sharpness. ED doesn’t just mean pro, though, as it’s in many Nikon lenses.
N: Stands for Nano Crystal Coat. This is a new type of lens element designed to reduce ghosting and flare, especially off really bright specular highlights. The 105 micro was the first lens to have this element.
AF-S or SWM: Stands for Auto Focus Silent Wave Motor. These lenses are quiet and fast, and the AF motors are built into these lenses.
IF: Stand for Internal Focusing. This is usually on higher-end lenses that have constant aperture (typically f/2.8) where the barrel doesn’t extend, and the front element doesn’t rotate.
Aspherical: These lenses have a certain amount of wide-angle correction built in.
DX: Stands for the DX Format. There are no FX lenses, only DX or not. If it doesn’t say DX, it’s a full frame lens. DX will work on FX camera, but only uses a portion of the sensor and makes it ~5MP.
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.
