Monday 16 July, 2007

Check User Activities for days-weeks by tcode-report....

Check User Activities for days-weeks by tcode-report
=======================================================================

You can use transaction code ST03N.

**Check out TCodes STAT or STATTRACE**

1. Go to tx code - ST03N
2. Under "Workload" you can select your "Instance or Total" so that it expands and shows you Days, Week, Month.
3. If you want to look at the transactions executed for a particular day, lets say, then double click on any day.
4. At the bottom left you get "Analysis Views"
5. Select & expand "User and Settlement Statistics"
6. Double click on "User Profile"
7. On the right side of the window you get a list of all the users
8. Double click on a particular user you want to view the details of.
9. The new screen will display the "Transactions/Reports Utilized by User XXX"

If you wanna track which users executed a particular transacation then follow this:

10. In "Analysis Views" expand "Transaction Profile"
11. Double click on "Standard"
You can view the list of Transactions and Reports.
12. Double click on the Tx Code or Report you wanna check and it will show the Use of it.

LICENSING THE J2EE ENGINE.......

Licensing the J2EE Engine
======================================================
Once the J2EE Engine has been installed, you can log on, since a temporary license has automatically been installed.

You then have to request and install a permanent license from SAP.



If you have installed the SAP Web Application Server with ABAP and J2EE, you can follow the licensing procedure used in earlier releases of the SAP Web AS. The documentation can be found in SAP License.

There are two types of SAP licenses – permanent and temporary licenses

· Permanent License

How you go about getting a permanent license from SAP is explained in Requesting and Installing an SAP License.

· Temporary License

If your permanent license has expired, as a short term measure you can install a temporary license.

In the Visual Administrator choose Server 0 ® Services ® Licensing Adapter. Then choose tab page Runtime ® Installed Licenses and Install subsequent temporary license.

This is valid for 28 days. By then you should have installed a permanent license again.



Note that you cannot install another temporary license, if the expired license is also a temporary license.



A newly installed license does not take affect until the J2EE Engine has been restarted. It is irrelevant whether the license is a permanent or a temporary license.

=======================================================


Requesting and Installing the SAP License
===========================================

You need a valid SAP license to log on to the SAP Web AS. When the SAP Web AS is installed, a temporary license is also installed, which you must replace with a permanent license.


Note that with a J2EE+ABAP installation (SAP Web Application Server with ABAP and J2EE), you have to import the ABAP license (see SAP License). You can then ignore this section.

Prerequisites
You have installed the SAP J2EE Engine and started the Visual Administrator.

Procedure
...

1. In the Visual Administrator choose Server 0 ® Services ® Licensing Adapter. The system data that you need to request the license from the SAP Service Marketplace appears.

¡ Installation number (if it exists)

¡ System ID,

¡ System number (if it exists)

¡ Hardware key

¡ Current release

2. Under the Internet address service.sap.com ® mySAP Business Suite, you can get to the initial page of the license key requests in SAP Service Marketplace. Here you will find all the information you need to request license keys.

3. Enter your e-mail address in the request. The license key will be sent to you promptly by e-mail. Alternatively, you can also download the license key from the SAP Service Marketplace.

Do not make any changes to the license key. To import the license key, the file must not have been changed.

4. In the Licensing Adapter in the Visual Administrator choose Install License from File.

5. Select the license file that you want from SAP.

Result
The license has been installed.

You can view all the licenses installed in your SAP System, by choosing, in the Visual Administrator, Server ® Services ® Licensing Adapter, then tab Runtime ® Installed Licenses.

Additional Information
For more information about requesting license keys, see SAP note 94998.

TELNET-NFS-DNS-NFSCORE Settings Enabling...

TELNET-NFS-DNS-NFSCORE Settings Enabling
---------------------------------------------------------

To enable Telnet:
1, un-comment below line in /etc/inetd.conf
telnet stream tcp nowait root /usr/lbin/telnetd telnetd
2, issue inetd -c command
#inetd -c

To enable NFS server:
1, vi /etc/rc.config.d/netdaemons

export XNTPD=1

2, edit /etc/exports
/tmp/dir_temp root=hosta
/home -a
...and so on....
3, start
#/sbin/init.d/nfs.core start
#/sbin/init.d/nfs.server start
4. Export file system
#exportfs -a

4, exportfs

Enable NFS client:
1, set at boot time:
vi /etc/rc.config.d/netdaemons
NFS_CLIENT=1
NFS_SERVER=0
enable 02 service :
#/sbin/init.d/nfs.client start
#/sbin/init.d/nfs.core start
NOTE: 02 above services are started at level 02 by default!
2, vi /etc/fstab : add mount point and server
myhp:/home /home03 nfs rw 0 0
myhp:/usr/share/man /usr/share/man nfs ro 0 0
3, create mount point
cd /home03 /usr/share/man
4. mount manually if desire!
#mount myhp:/home /home03


Enable DNS require much time than other.
DNS SERVER CONFIGURATION

1, Create /etc/name.data directory
2, Create /etc/name.data/param file
#vi param
-d boota.com
-n 192.168.3
-z 192.168.3.10
-b /etc/named.boot
-s
3, create database
#hosts_to_name -f param
4, download db.cache from internet and put it into /etc/named.data
5. Modify
#vi /etc/rc.config.d/namesvrs
NAMED=1
6. start named service
#/sbin/init.d/named start
CLIENT CONFIGURATION
1, vi /etc/nsswitch.conf
hosts: dns files
2, vi /etc/resolv.conf
search your.domain.com
nameserver 10.0.76.1 ---IPofDNSserver
nameserver 10.0.76.2 ---IPofDNSSeconndserver