You can check the installed Languages. Default Languages are German and English.
To add more follow the below link.
http://help.sap.com/saphelp_nw70/helpdata/en/a3/30ad5296b511d384bb0060975b04f3/content.htm
http://scn.sap.com/thread/1482841
db2 get snapshot for tablespaces on
To check information about the automatic extend and automatic storage status of all tablespaces, you can also use the following SQL statement:
db2 "SELECT SUBSTR(TBSP_NAME,1,10) AS TBSP_NAME, TBSP_TYPE, TBSP_CONTENT_TYPE, TBSP_USING_AUTO_STORAGE, TBSP_AUTO_RESIZE_ENABLED FROM TABLE(SNAP_GET_TBSP_V91('')) AS T"
A value of 1 in the columns TBSP_USING_AUTO_STORAGE and TBSP_AUTO_RESIZE_ENABLED indicates that the respective feature is enabled, 0 would indicate that it is not enabled.
To check if the database is enabled for automatic storage, use the following command:
db2 "get snapshot for database on
To check if the tablespaces in your DB2 9.7 installation have the reclaimable storage attribute, use the following SQL statement:
db2 "SELECT varchar(tbsp_name, 30) as tbsp_name, tbsp_type, reclaimable_space_enabled FROM TABLE(MON_GET_TABLESPACE('',-2)) AS t"
A value of 1 in the reclaimable_space_enabled column would indicate that this tablespace has the reclaimable storage attribute.

1. After the user triggers the print process, the print requests are sent to the spool server, which contains the dialog and spool work processes required for the processing.
2. A dialog work process (D-WP) of the spool server forwards the spool data to the spool database for temporary storage.
3.When the data is explicitly sent to an output device, an output request is generated from the spool request. This is forwarded to the spool work process (S-WP).
4.The spool work process formats the output request data.
This converts an internal data stream of the SAP Systems to a data stream that the output device understands.
5. After formatting, the spool work process forwards the print request to the host spool system (operating system spooler). The host spool system has the following tasks:
Wait queue management
Transferring the data to the output device
Depending on the situation of the host spool system, one of the following print types is used:
local: The print requests are forwarded to the printer through a local network. The host spool system and the spool work process are on the same host.
It is irrelevant whether the output device is directly connected to the server, or whether it is defined using a remote print server.
remote: The print requests are forwarded from the spool work process to the printer through a remote network. The host spool system is on a different host to the spool work process. This remote host is called the target host.