CL Program to read File from DSPFD and DSPFFD

/*  PROGRAM:  DSPFAC                                              */

/*   THIS PROGRAM DISPLAYS THE FILE ATTRIBUTES OF A FILE USING    */

/*   OUTPUT FILES FROM THE DSPFFD AND DSPFD COMMANDS.             */

/*   FILE = QADSPFFD, FORMAT QWHDRFFD                             */

/*          QAFDACCP         QWHFDACP                             */

/*          QADSPDBR         QWHDRDBR                             */

/*          QADSPFD          QWHFD                                */

PGM        PARM(&FILELIBR &OUTPUT)

DCLF       FILE(QADSPOBJ)

DCL        VAR(&FILELIBR) TYPE(*CHAR) LEN(20)

DCL        VAR(&FILE)     TYPE(*CHAR) LEN(10)

DCL        VAR(&LIBR)     TYPE(*CHAR) LEN(10)

DCL        VAR(&OUTPUT)   TYPE(*CHAR) LEN(5)

DCL        VAR(&IDX)      TYPE(*DEC)  LEN(2 0) VALUE(0)

DCL        VAR(&ERRORSW) TYPE(*LGL)

DCL        VAR(&MSGID)   TYPE(*CHAR) LEN(7)

DCL        VAR(&MSGDTA) TYPE(*CHAR) LEN(100)

DCL        VAR(&MSGF)    TYPE(*CHAR) LEN(10)

DCL        VAR(&MSGFLIB) TYPE(*CHAR) LEN(10)

MONMSG     MSGID(CPF0000) EXEC(GOTO STDERR1)

CHGVAR     VAR(&FILE) VALUE(%SST(&FILELIBR 01 10))

CHGVAR     VAR(&LIBR) VALUE(%SST(&FILELIBR 11 10))

/*   IF *GENERIC WAS NOT SELECTED  – DO                           */

/*   IF *ALL WAS NOT SELECTED      – DO                           */

LOOP:

CHGVAR     VAR(&IDX) VALUE(&IDX + 1)

IF         COND(%SST(&FILE &IDX 1) *EQ ‘*’) +

THEN(GOTO GENERIC)

IF         COND(&IDX < 10) THEN(GOTO LOOP)

/*   ASSUME ONLY 1 ENTRY                                          */

CHKOBJ     OBJ(&LIBR/&FILE) OBJTYPE(*FILE) AUT(*OBJEXIST)

MONMSG     MSGID(CPF0000) EXEC(GOTO STDERR1)

CALL       PGM(DSPFAC2) PARM(&FILELIBR &OUTPUT)

GOTO       END

/*   IF *ALL OR *GENERIC SELECTED                                 */

/*   DSPOBJD OF ALL FILES IN LIBRARY                              */

GENERIC:

DSPOBJD    OBJ(&LIBR/&FILE) OBJTYPE(*FILE) +

OUTPUT(*OUTFILE) OUTFILE(QTEMP/XDSPOBJD)

OVRDBF     FILE(QADSPOBJ) TOFILE(QTEMP/XDSPOBJD)

READ:

RCVF

MONMSG     MSGID(CPF0864) EXEC(DO)

END:

DLTF       FILE(QTEMP/X*)

RETURN

ENDDO

IF         COND(%SST(&ODOBNM 1 1) = ‘Q’) THEN(GOTO READ)

IF         COND(&ODOBAT *EQ ‘PF        ‘ +

*OR &ODOBAT *EQ ‘LF        ‘) THEN(DO)

CHGVAR     VAR(%SST(&FILELIBR 01 10)) VALUE(&ODOBNM)

CHGVAR     VAR(%SST(&FILELIBR 11 10)) VALUE(&ODLBNM)

CALL       PGM(DSPFAC2) PARM(&FILELIBR &OUTPUT)

ENDDO

GOTO       READ

STDERR1:

/* Standard error handling routine */

IF         COND(&ERRORSW) THEN(SNDPGMMSG MSGID(CPF9999) +

MSGF(QCPFMSG) MSGTYPE(*ESCAPE)) /* Func +

chk */

CHGVAR     VAR(&ERRORSW) VALUE(‘1’) /* Set to fail ir +

error occurs */

STDERR2:

RCVMSG     MSGTYPE(*DIAG) MSGDTA(&MSGDTA) MSGID(&MSGID) +

MSGF(&MSGF) MSGFLIB(&MSGFLIB)

IF         COND(&MSGID *EQ ‘       ‘) THEN(GOTO +

CMDLBL(STDERR3))

SNDPGMMSG  MSGID(&MSGID) MSGF(&MSGFLIB/&MSGF) +

MSGDTA(&MSGDTA) MSGTYPE(*DIAG)

GOTO       STDERR2 /* Loop back for addl diagnostics */

STDERR3:

RCVMSG     MSGTYPE(*EXCP) MSGDTA(&MSGDTA) MSGID(&MSGID) +

MSGF(&MSGF) MSGFLIB(&MSGFLIB)

SNDPGMMSG  MSGID(&MSGID) MSGF(&MSGFLIB/&MSGF) +

MSGDTA(&MSGDTA) MSGTYPE(*ESCAPE)

ENDPGM

unix commands

1. tar command examples

Create a new tar archive.

$ tar cvf archive_name.tar dirname/

Extract from an existing tar archive.

$ tar xvf archive_name.tar

View an existing tar archive.

$ tar tvf archive_name.tar

 

2. grep command examples

Search for a given string in a file (case in-sensitive search).

$ grep -i "the" demo_file

Print the matched line, along with the 3 lines after it.

$ grep -A 3 -i "example" demo_text

Search for a given string in all files recursively

$ grep -r "ramesh" *

 

3. find command examples

Find files using file-name ( case in-sensitve find)

# find -iname "MyCProgram.c"

Execute commands on files found by the find command

$ find -iname "MyCProgram.c" -exec md5sum {} ;

Find all empty files in home directory

# find ~ -empty

 

4. ssh command examples

Login to remote host

ssh -l jsmith remotehost.example.com

Debug ssh client

ssh -v -l jsmith remotehost.example.com

Display ssh client version

$ ssh -V OpenSSH_3.9p1, OpenSSL 0.9.7a Feb 19 2003

 

5. sed command examples

When you copy a DOS file to Unix, you could find \r\n in the end of each line. This example converts the DOS file format to Unix file format using sed command.

$sed 's/.$//' filename

Print file content in reverse order

$ sed -n '1!G;h;$p' thegeekstuff.txt

Add line number for all non-empty-lines in a file

$ sed '/./=' thegeekstuff.txt | sed 'N; s/n/ /'

 

6. awk command examples

Remove duplicate lines using awk

$ awk '!($0 in array) { array[$0]; print }' temp

Print all lines from /etc/passwd that has the same uid and gid

$awk -F ':' '$3==$4' passwd.txt

Print only specific field from a file.

$ awk '{print $2,$5;}' employee.txt

 

7. vim command examples

Go to the 143rd line of file

$ vim +143 filename.txt

Go to the first match of the specified

$ vim +/search-term filename.txt

Open the file in read only mode.

$ vim -R /etc/passwd

 

8. diff command examples

Ignore white space while comparing.

# diff -w name_list.txt name_list_new.txt  2c2,3 < John Doe --- > John M Doe > Jason Bourne

 

9. sort command examples

Sort a file in ascending order

$ sort names.txt

Sort a file in descending order

$ sort -r names.txt

Sort passwd file by 3rd field.

$ sort -t: -k 3n /etc/passwd | more

10. export command examples

To view oracle related environment variables.

$ export | grep ORACLE declare -x ORACLE_BASE="/u01/app/oracle" declare -x ORACLE_HOME="/u01/app/oracle/product/10.2.0" declare -x ORACLE_SID="med" declare -x ORACLE_TERM="xterm"

To export an environment variable:

$ export ORACLE_HOME=/u01/app/oracle/product/10.2.0

11. xargs command examples

Copy all images to external hard-drive

# ls *.jpg | xargs -n1 -i cp {} /external-hard-drive/directory

Search all jpg images in the system and archive it.

# find / -name *.jpg -type f -print | xargs tar -cvzf images.tar.gz

Download all the URLs mentioned in the url-list.txt file

# cat url-list.txt | xargs wget –c

12. ls command examples

Display filesize in human readable format (e.g. KB, MB etc.,)

$ ls -lh -rw-r----- 1 ramesh team-dev 8.9M Jun 12 15:27 arch-linux.txt.gz

Order Files Based on Last Modified Time (In Reverse Order) Using ls -ltr

$ ls -ltr

Visual Classification of Files With Special Characters Using ls -F

$ ls -F

 

13. pwd command

pwd is Print working directory. What else can be said about the good old pwd who has been printing the current directory name for ages.

14. cd command examples

Use “cd -” to toggle between the last two directories

Use “shopt -s cdspell” to automatically correct mistyped directory names on cd

 

15. gzip command examples

To create a *.gz compressed file:

$ gzip test.txt

To uncompress a *.gz file:

$ gzip -d test.txt.gz

Display compression ratio of the compressed file using gzip -l

$ gzip -l *.gz          compressed        uncompressed  ratio uncompressed_name               23709               97975  75.8% asp-patch-rpms.txt

16. bzip2 command examples

To create a *.bz2 compressed file:

$ bzip2 test.txt

To uncompress a *.bz2 file:

bzip2 -d test.txt.bz2

 

17. unzip command examples

To extract a *.zip compressed file:

$ unzip test.zip

View the contents of *.zip file (Without unzipping it):

$ unzip -l jasper.zip Archive:  jasper.zip   Length     Date   Time    Name  --------    ----   ----    ----     40995  11-30-98 23:50   META-INF/MANIFEST.MF     32169  08-25-98 21:07   classes_     15964  08-25-98 21:07   classes_names     10542  08-25-98 21:07   classes_ncomp

18. shutdown command examples

Shutdown the system and turn the power off immediately.

# shutdown -h now

Shutdown the system after 10 minutes.

# shutdown -h +10

Reboot the system using shutdown command.

# shutdown -r now

Force the filesystem check during reboot.

# shutdown -Fr now

19. ftp command examples

Both ftp and secure ftp (sftp) has similar commands. To connect to a remote server and download multiple files, do the following.

$ ftp IP/hostname ftp> mget *.html

To view the file names located on the remote server before downloading, mls ftp command as shown below.

ftp> mls *.html - /ftptest/features.html /ftptest/index.html /ftptest/othertools.html /ftptest/samplereport.html /ftptest/usage.html

 

20. crontab command examples

View crontab entry for a specific user

# crontab -u john -l

Schedule a cron job every 10 minutes.

*/10 * * * * /home/ramesh/check-disk-space

 

21. service command examples

Service command is used to run the system V init scripts. i.e Instead of calling the scripts located in the /etc/init.d/ directory with their full path, you can use the service command.

Check the status of a service:

# service ssh status

Check the steatus of all the services.

service --status-all

Restart a service.

# service ssh restart

22. ps command examples

ps command is used to display information about the processes that are running in the system.

While there are lot of arguments that could be passed to a ps command, following are some of the common ones.

To view current running processes.

$ ps -ef | more

To view current running processes in a tree structure. H option stands for process hierarchy.

$ ps -efH | more

23. free command examples

This command is used to display the free, used, swap memory available in the system.

Typical free command output. The output is displayed in bytes.

$ free              total       used       free     shared    buffers     cached Mem:       3566408    1580220    1986188          0     203988     902960 -/+ buffers/cache:     473272    3093136 Swap:      4000176          0    4000176

If you want to quickly check how many GB of RAM your system has use the -g option. -b option displays in bytes, -k in kilo bytes, -m in mega bytes.

$ free -g              total       used       free     shared    buffers     cached Mem:             3          1          1          0          0          0 -/+ buffers/cache:          0          2 Swap:            3          0          3

If you want to see a total memory ( including the swap), use the -t switch, which will display a total line as shown below.

ramesh@ramesh-laptop:~$ free -t              total       used       free     shared    buffers     cached Mem:       3566408    1592148    1974260          0     204260     912556 -/+ buffers/cache:     475332    3091076 Swap:      4000176          0    4000176 Total:     7566584    1592148    5974436

24. top command examples

top command displays the top processes in the system ( by default sorted by cpu usage ). To sort top output by any column, Press O (upper-case O) , which will display all the possible columns that you can sort by as shown below.

Current Sort Field:  P  for window 1:Def Select sort field via field letter, type any other key to return    a: PID        = Process Id              v: nDRT       = Dirty Pages count   d: UID        = User Id                 y: WCHAN      = Sleeping in Function   e: USER       = User Name               z: Flags      = Task Flags   ........

To displays only the processes that belong to a particular user use -u option. The following will show only the top processes that belongs to oracle user.

$ top -u oracle

 

25. df command examples

Displays the file system disk space usage. By default df -k displays output in bytes.

$ df -k Filesystem           1K-blocks      Used Available Use% Mounted on /dev/sda1             29530400   3233104  24797232  12% / /dev/sda2            120367992  50171596  64082060  44% /home

df -h displays output in human readable form. i.e size will be displayed in GB’s.

ramesh@ramesh-laptop:~$ df -h Filesystem            Size  Used Avail Use% Mounted on /dev/sda1              29G  3.1G   24G  12% / /dev/sda2             115G   48G   62G  44% /home

Use -T option to display what type of file system.

ramesh@ramesh-laptop:~$ df -T Filesystem    Type   1K-blocks      Used Available Use% Mounted on /dev/sda1     ext4    29530400   3233120  24797216  12% / /dev/sda2     ext4   120367992  50171596  64082060  44% /home

26. kill command examples

Use kill command to terminate a process. First get the process id using ps -ef command, then use kill -9 to kill the running Linux process as shown below. You can also use killall, pkill, xkill to terminate a unix process.

$ ps -ef | grep vim ramesh    7243  7222  9 22:43 pts/2    00:00:00 vim  $ kill -9 7243

 

27. rm command examples

Get confirmation before removing the file.

$ rm -i filename.txt

It is very useful while giving shell metacharacters in the file name argument.

Print the filename and get confirmation before removing the file.

$ rm -i file*

Following example recursively removes all files and directories under the example directory. This also removes the example directory itself.

$ rm -r example

28. cp command examples

Copy file1 to file2 preserving the mode, ownership and timestamp.

$ cp -p file1 file2

Copy file1 to file2. if file2 exists prompt for confirmation before overwritting it.

$ cp -i file1 file2

29. mv command examples

Rename file1 to file2. if file2 exists prompt for confirmation before overwritting it.

$ mv -i file1 file2

Note: mv -f is just the opposite, which will overwrite file2 without prompting.

mv -v will print what is happening during file rename, which is useful while specifying shell metacharacters in the file name argument.

$ mv -v file1 file2

30. cat command examples

You can view multiple files at the same time. Following example prints the content of file1 followed by file2 to stdout.

$ cat file1 file2

While displaying the file, following cat -n command will prepend the line number to each line of the output.

$ cat -n /etc/logrotate.conf     1	/var/log/btmp {     2	    missingok     3	    monthly     4	    create 0660 root utmp     5	    rotate 1     6	}

31. mount command examples

To mount a file system, you should first create a directory and mount it as shown below.

# mkdir /u01  # mount /dev/sdb1 /u01

You can also add this to the fstab for automatic mounting. i.e Anytime system is restarted, the filesystem will be mounted.

/dev/sdb1 /u01 ext2 defaults 0 2

32. chmod command examples

chmod command is used to change the permissions for a file or directory.

Give full access to user and group (i.e read, write and execute ) on a specific file.

$ chmod ug+rwx file.txt

Revoke all access for the group (i.e read, write and execute ) on a specific file.

$ chmod g-rwx file.txt

Apply the file permissions recursively to all the files in the sub-directories.

$ chmod -R ug+rwx file.txt

 

33. chown command examples

chown command is used to change the owner and group of a file. \

To change owner to oracle and group to db on a file. i.e Change both owner and group at the same time.

$ chown oracle:dba dbora.sh

Use -R to change the ownership recursively.

$ chown -R oracle:dba /home/oracle

34. passwd command examples

Change your password from command line using passwd. This will prompt for the old password followed by the new password.

$ passwd

Super user can use passwd command to reset others password. This will not prompt for current password of the user.

# passwd USERNAME

Remove password for a specific user. Root user can disable password for a specific user. Once the password is disabled, the user can login without entering the password.

# passwd -d USERNAME

35. mkdir command examples

Following example creates a directory called temp under your home directory.

$ mkdir ~/temp

Create nested directories using one mkdir command. If any of these directories exist already, it will not display any error. If any of these directories doesn’t exist, it will create them.

$ mkdir -p dir1/dir2/dir3/dir4/

36. ifconfig command examples

Use ifconfig command to view or configure a network interface on the Linux system.

View all the interfaces along with status.

$ ifconfig -a

Start or stop a specific interface using up and down command as shown below.

$ ifconfig eth0 up  $ ifconfig eth0 down

 

37. uname command examples

Uname command displays important information about the system such as — Kernel name, Host name, Kernel release number,
Processor type, etc.,

Sample uname output from a Ubuntu laptop is shown below.

$ uname -a Linux john-laptop 2.6.32-24-generic #41-Ubuntu SMP Thu Aug 19 01:12:52 UTC 2010 i686 GNU/Linux

38. whereis command examples

When you want to find out where a specific Unix command exists (for example, where does ls command exists?), you can execute the following command.

$ whereis ls ls: /bin/ls /usr/share/man/man1/ls.1.gz /usr/share/man/man1p/ls.1p.gz

When you want to search an executable from a path other than the whereis default path, you can use -B option and give path as argument to it. This searches for the executable lsmk in the /tmp directory, and displays it, if it is available.

$ whereis -u -B /tmp -f lsmk lsmk: /tmp/lsmk

39. whatis command examples

Whatis command displays a single line description about a command.

$ whatis ls ls		(1)  - list directory contents  $ whatis ifconfig ifconfig (8)         - configure a network interface

40. locate command examples

Using locate command you can quickly search for the location of a specific file (or group of files). Locate command uses the database created by updatedb.

The example below shows all files in the system that contains the word crontab in it.

$ locate crontab /etc/anacrontab /etc/crontab /usr/bin/crontab /usr/share/doc/cron/examples/crontab2english.pl.gz /usr/share/man/man1/crontab.1.gz /usr/share/man/man5/anacrontab.5.gz /usr/share/man/man5/crontab.5.gz /usr/share/vim/vim72/syntax/crontab.vim

41. man command examples

Display the man page of a specific command.

$ man crontab

When a man page for a command is located under more than one section, you can view the man page for that command from a specific section as shown below.

$ man SECTION-NUMBER commandname

Following 8 sections are available in the man page.

  1. General commands
  2. System calls
  3. C library functions
  4. Special files (usually devices, those found in /dev) and drivers
  5. File formats and conventions
  6. Games and screensavers
  7. Miscellaneous
  8. System administration commands and daemons

For example, when you do whatis crontab, you’ll notice that crontab has two man pages (section 1 and section 5). To view section 5 of crontab man page, do the following.

$ whatis crontab crontab (1)          - maintain crontab files for individual users (V3) crontab (5)          - tables for driving cron  $ man 5 crontab

42. tail command examples

Print the last 10 lines of a file by default.

$ tail filename.txt

Print N number of lines from the file named filename.txt

$ tail -n N filename.txt

View the content of the file in real time using tail -f. This is useful to view the log files, that keeps growing. The command can be terminated using CTRL-C.

$ tail -f log-file

 

43. less command examples

less is very efficient while viewing huge log files, as it doesn’t need to load the full file while opening.

$ less huge-log-file.log

One you open a file using less command, following two keys are very helpful.

CTRL+F – forward one window CTRL+B – backward one window

 

44. su command examples

Switch to a different user account using su command. Super user can switch to any other user without entering their password.

$ su - USERNAME

Execute a single command from a different account name. In the following example, john can execute the ls command as raj username. Once the command is executed, it will come back to john’s account.

[john@dev-server]$ su - raj -c 'ls'  [john@dev-server]$

Login to a specified user account, and execute the specified shell instead of the default shell.

$ su -s 'SHELLNAME' USERNAME

45. mysql command examples

mysql is probably the most widely used open source database on Linux. Even if you don’t run a mysql database on your server, you might end-up using the mysql command ( client ) to connect to a mysql database running on the remote server.

To connect to a remote mysql database. This will prompt for a password.

$ mysql -u root -p -h 192.168.1.2

To connect to a local mysql database.

$ mysql -u root -p

If you want to specify the mysql root password in the command line itself, enter it immediately after -p (without any space).

46. yum command examples

To install apache using yum.

$ yum install httpd

To upgrade apache using yum.

$ yum update httpd

To uninstall/remove apache using yum.

$ yum remove httpd

47. rpm command examples

To install apache using rpm.

# rpm -ivh httpd-2.2.3-22.0.1.el5.i386.rpm

To upgrade apache using rpm.

# rpm -uvh httpd-2.2.3-22.0.1.el5.i386.rpm

To uninstall/remove apache using rpm.

# rpm -ev httpd

 

48. ping command examples

Ping a remote host by sending only 5 packets.

$ ping -c 5 gmail.com

 

49. date command examples

Set the system date:

# date -s "01/31/2010 23:59:53"

Once you’ve changed the system date, you should syncronize the hardware clock with the system date as shown below.

# hwclock –systohc  # hwclock --systohc –utc

50. wget command examples

The quick and effective method to download software, music, video from internet is using wget command.

$ wget http://prdownloads.sourceforge.net/sourceforge/nagios/nagios-3.2.1.tar.gz

Download and store it with a different name.

$ wget -O taglist.zip http://www.vim.org/scripts/download_script.php?src_id=770

SAP Comments and Good Sql Example using Case

Open AP Invoices (Header)

SELECT DISTINCT 

                APMIHP.SPID,

                APMIHP.POID AS POID_1,

                APMIHP.INVID AS INVID_1,

                SUBSTRING( CAST( APMIHP.IHINVD AS CHAR( 8 ) ), 7, 2 ) || ‘/’ || SUBSTRING( CAST(

APMIHP.IHINVD AS CHAR( 8 ) ), 5, 2 ) || ‘/’ || SUBSTRING( CAST( APMIHP.IHINVD AS CHAR( 8 ) ),

1, 4 ) AS COLUMN0000,

                APMIHP.ATID,

                CASE

                                WHEN ( APMIHP.CMPNBR = ‘301’ AND APMIHP.CURCDE <> ‘USD’ )

                                         THEN SUM ( DGDAMC ) * – 1

                                ELSE 0

                                END AS COLUMN0003,

                CASE

                                WHEN ( APMIHP.CMPNBR = ‘301’ AND APMIHP.CURCDE <> ‘USD’ )

THEN APMIHP.CURCDE

                                ELSE ‘ ‘

                                END AS COLUMN0004,

                CASE

                                WHEN ( APMIHP.CMPNBR = ‘301’ AND APMIHP.CURCDE = ‘USD’ )

THEN SUM ( DGDAMC ) * – 1

                                ELSE 0

                                END AS DGDAMC_1,

                CASE

                                WHEN ( APMIHP.IHHOLD = ‘1’ ) THEN APMIHP.IHHOLD

                                ELSE ‘ ‘

                                END AS IHHOLD,

                ‘ ‘ AS COLUMN0005,

                ‘ ‘ AS COLUMN0006,

                CASE

                                WHEN ( APMIHP.AYID = ‘CHECK’ ) THEN ‘C’

                                WHEN ( APMIHP.AYID = ‘ACH’ ) THEN ‘U’

                                WHEN ( APMIHP.AYID = ‘WIRE’ ) THEN ‘1’

                                ELSE APMIHP.AYID

                                END AS AYID,

                APMIHP.CMPNBR

FROM

                CHICAGO.EPDB.APMIHP APMIHP, 

                CHICAGO.EPDB.APMDGP APMDGP

WHERE

                APMIHP.CMPNBR = APMDGP.CMPNBR

                AND APMIHP.PFTCTR = APMDGP.PFTCTR

                AND APMIHP.SPID = APMDGP.SPID

                AND APMIHP.INVID = APMDGP.INVID

                AND APMIHP.AYID = APMDGP.AYID

                AND ( ( APMIHP.IHSTAT = ‘1’)

                AND ( APMIHP.IHCAMT – APMIHP.IHPAMT <> 0)

                AND ( APMIHP.CMPNBR = ‘301’)

                AND ( NOT ( ( SUBSTRING( APMIHP.INVID, 1, 5 ) = ‘RECUR’)

                AND ( APMIHP.IHINVD > 20110901)))

                AND ( APMDGP.GLACCT = 10100))

 

                                 

 

Open AP Invoices (Comments)

SELECT

                APMIHP.SPID,

                APMIHP.POID AS POID_1,

                APMIHP.INVID AS INVID_1,

                SUBSTRING( CAST( APMIHP.IHINVD AS CHAR( 8 ) ), 7, 2 ) || ‘/’ ||

SUBSTRING( CAST( APMIHP.IHINVD AS CHAR( 8 ) ), 5, 2 ) || ‘/’ ||

SUBSTRING( CAST( APMIHP.IHINVD AS CHAR( 8 ) ), 1, 4 ) AS COLUMN0000,

                AYFCKCM.CHECK_COMMENT,

                APMIHP.CMPNBR

FROM

                CHICAGO.EPDB.APMIHP APMIHP, 

                CHICAGO.EPDB.AYFCKCM AYFCKCM

WHERE

                APMIHP.CMPNBR = AYFCKCM.CMPNBR

                AND APMIHP.SPID = AYFCKCM.SPID

                AND APMIHP.PFTCTR = AYFCKCM.PFTCTR

                AND APMIHP.INVID = AYFCKCM.INVID

                AND ( ( APMIHP.IHSTAT = ‘1’)

                AND ( APMIHP.IHCAMT – APMIHP.IHPAMT <> 0)

                AND ( APMIHP.CMPNBR = ‘301’)

                AND ( NOT ( ( SUBSTRING( APMIHP.INVID, 1, 5 ) = ‘RECUR’)

                AND ( IHINVD > 20110901))))

 

Note:

SPID is the current AS400 vendor ID

ATID is the AS400 payment term ID – this should be converted to SAP payment term ID

The IHINVD is the invoice date – select anything from the current run date

The clause (APMIHP.IHCAMT – APMIHP.IHPAMT <> 0) stands for Open item with pending $

The clause  ( NOT ( ( SUBSTRING( APMIHP.INVID, 1, 5 ) = ‘RECUR’) means we exclude all the future recurring invoices

 

iseries as400 commands

ADDACC        Add Access Code

ADDAJE        Add Autostart Job Entry

ADDALRACNE    Add Alert Action Entry

ADDALRD       Add Alert Description

ADDALRSLTE    Add Alert Selection Entry

ADDAUTLE      Add Authorization List Entry

ADDBKP        Add Breakpoint

ADDBNDDIRE    Add Binding Directory Entry

ADDCCTRTE     Add Circuit Route

ADDCCTSRV     Add Circuit Service

ADDCFGLE      Add Configuration List Entries

ADDCMNE       Add Communications Entry

ADDCNNLE      Add Connection List Entry

ADDCOMSNMP    Add Community for SNMP

ADDDIRE       Add Directory Entry

ADDDIRSHD     Add Directory Shadow System

ADDDLOAUT     Add DLO Authority

ADDDSTLE      Add Distribution List Entry

ADDDSTQ       Add Distribution Queue

ADDDSTRTE     Add Distribution Route

ADDDSTSYSN    Add Secondary System Name

ADDDTADFN     Add Data Definition

ADDEMLCFGE    Add Configuration Entry

ADDENVVAR     Add Environment Variable

ADDEWCBCDE    Add EWC Barcode Entry

ADDEWCM       Add Wireless Ctl Member

ADDEWCPTCE    Add EWC PTC Entry

ADDEWLM       Add Wireless Line Member

ADDEXITPGM    Add Exit Program

ADDFCTE       Add Forms Control Entry

ADDFNTTBLE    Add Font Table Entry

ADDICFDEVE    Add ICF Device Entry

ADDIPIADR     Add IP over IPX Address

ADDIPIIFC     Add IP over IPX Interface

ADDIPIRTE     Add IP over IPX Route

ADDIPSIFC     Add IP over SNA Interface

ADDIPSLOC     Add IP over SNA Location

ADDIPSRTE     Add IP over SNA Route

ADDIPXCCT     Add IPX Circuit

ADDJOBJS      Add Job using Job Scheduler

ADDJOBQE      Add Job Queue Entry

ADDJOBSCDE    Add Job Schedule Entry

ADDLANADPI    Add LAN Adapter Information

ADDLFM        Add Logical File Member

ADDLIBLE      Add Library List Entry

ADDLICKEY     Add License Key Information

ADDLNK        Add Link

ADDMFS        Add Mounted FS

ADDMSGD       Add Message Description

ADDNCK        Add Nickname

ADDNETJOBE    Add Network Job Entry

ADDNETTBLE    Add Network Table Entry

ADDNODLE      Add Node List Entry

ADDNWSSTGL    Add Server Storage Link

ADDOPTCTG     Add Optical Cartridge

ADDOPTSVR     Add Optical Server

ADDPCLTBLE    Add Protocol Table Entry

ADDPEXDFN     Add PEX Definition

ADDPFCST      Add PF Constraint

ADDPFM        Add Physical File Member

ADDPFRCOL     Add Performance Collection

ADDPFTRG      Add Physical File Trigger

ADDPFVLM      Add Phy File Variable Len Mbr

ADDPGM        Add Program

ADDPJE        Add Prestart Job Entry

ADDPRBACNE    Add Problem Action Entry

ADDPRBSLTE    Add Problem Selection Entry

ADDRDBDIRE    Add RDB Directory Entry

ADDREXBUF     Add REXX Buffer

ADDRJECMNE    Add RJE Communication Entry

ADDRJERDRE    Add RJE Reader Entry

ADDRJEWTRE    Add RJE Writer Entry

ADDRMTDFN     Add Remote Definition

ADDRMTSVR     Add Remote Server

ADDRPYLE      Add Reply List Entry

ADDRTGE       Add Routing Entry

ADDSCHIDXE    Add Search Index Entry

ADDSNILOC     Add SNA over IPX Location

ADDSOCE       Add Sphere of Control Entry

ADDSRVTBLE    Add Service Table Entry

ADDTAPCTG     Add Tape Cartridge

ADDTCPHTE     Add TCP/IP Host Table Entry

ADDTCPIFC     Add TCP/IP Interface

ADDTCPLNK     Add TCP/IP Link

ADDTCPPORT    Add TCP/IP Port Restriction

ADDTCPRSI     Add TCP/IP Remote System

ADDTCPRTE     Add TCP/IP Route

ADDTRC        Add Trace

ADDWSE        Add Work Station Entry

ALCOBJ        Allocate Object

ANSLIN        Answer Line

ANSQST        Answer Questions

ANZACCGRP     Analyze Process Access Group

ANZBESTMDL    Analyze BEST/1 Model

ANZDBF        Analyze Database Files

ANZDBFKEY     Analyze Database File Keys

ANZDFTPWD     Analyze Default Passwords

ANZPFRDTA     Analyze Performance Data

ANZPGM        Analyze Programs

ANZPRB        Analyze Problem

ANZPRFACT     Analyze Profile Activity

ANZQRY        Analyze Query

ANZS34OCL     Analyze S/34 OCL

ANZS36OCL     System/36 OCL Analysis

ANZUSROBJ     ANALYZE USER OBJECTS

APING         Verify APPC Connection

APYJRNCHG     Apply Journaled Changes

APYPTF        Apply Program Temporary Fix

AREXEC        Run Remote Command

ASKQST        Ask Question

BCHJOB        Batch Job

CALL          Call Program

CALLPRC       Call Bound Procedure

CD            Change Current Directory

CFGDEVMLB     Configure Device Media Library

CFGDSTSRV     Configure Distribution Service

CFGIPI        Configure IPI

CFGIPS        Configure IP over SNA

CFGIPX        Configure IPX

CFGRPDS       Configure VM/MVS Bridge

CFGSYSSEC     Configure System Security

CFGTCP        Configure TCP/IP

CFGTCPAPP     Configure TCP/IP Applications

CFGTCPBP      Configure TCP/IP BOOTP

CFGTCPFTP     Configure TCP/IP FTP

CFGTCPHTTP    Configure TCP/IP HTTP

CFGTCPLPD     Configure TCP/IP LPD

CFGTCPPTP     Configure Point-to-Point TCPIP

CFGTCPRTD     Configure TCP/IP RouteD

CFGTCPRXC     Configure TCP/IP REXEC

CFGTCPSMTP    Configure TCP/IP SMTP

CFGTCPSNMP    Configure TCP/IP SNMP

CFGTCPTELN    Configure TCP/IP TELNET

CFGTCPWSG     Configure TCP/IP Workstation

CHDIR         Change Current Directory

CHGACGCDE     Change Accounting Code

CHGACTPRFL    Change Active Profile List

CHGACTSCDE    Change Activation Scd Entry

CHGAJE        Change Autostart Job Entry

CHGALRACNE    Change Alert Action Entry

CHGALRD       Change Alert Description

CHGALRSLTE    Change Alert Selection Entry

CHGALRTBL     Change Alert Table

CHGAUD        Change Auditing Value

CHGAUT        Change Authority

CHGAUTJS      Change Job Authority using JS

CHGAUTLE      Change Auth List Entry

CHGBCKUP      Change Backup Options

CHGBPA        Change BOOTP Attributes

CHGCCTRTE     Change Circuit Route

CHGCCTSRV     Change Circuit Service

CHGCFGL       Change Configuration List

CHGCFGLE      Change Cfg List Entries

CHGCLNUP      Change Cleanup

CHGCLS        Change Class

CHGCMD        Change Command

CHGCMDDFT     Change Command Default

CHGCMNE       Change Communications Entry

CHGCNNL       Change Connection List

CHGCNNLE      Change Connection List Entry

CHGCOMSNMP    Change Community for SNMP

CHGCOSD       Change Class-of-Service Desc

CHGCRQD       Change CRQ Description

CHGCSI        Change Comm Side Information

CHGCTLAPPC    Change Ctl Desc (APPC)

CHGCTLASC     Change Ctl Desc (Async)

CHGCTLBSC     Change Ctl Desc (BSC)

CHGCTLFNC     Change Ctl Desc (Finance)

CHGCTLHOST    Change Ctl Desc (SNA Host)

CHGCTLLWS     Change Ctl Desc (Local WS)

CHGCTLNET     Change Ctl Desc (Network)

CHGCTLRTL     Change Ctl Desc (Retail)

CHGCTLRWS     Change Ctl Desc (Remote WS)

CHGCTLTAP     Change Ctl Desc (Tape)

CHGCTLVWS     Change Ctl Desc (Virtual WS)

CHGCURDIR     Change Current Directory

CHGCURLIB     Change Current Library

CHGDBG        Change Debug

CHGDDMF       Change DDM File

CHGDEVAPPC    Change Device Desc (APPC)

CHGDEVASC     Change Device Desc (Async)

CHGDEVBSC     Change Device Desc (BSC)

CHGDEVDKT     Change Device Desc (Diskette)

CHGDEVDSP     Change Device Desc (Display)

CHGDEVFNC     Change Device Desc (Finance)

CHGDEVHOST    Change Device Desc (SNA Host)

CHGDEVINTR    Change Device Desc (Intra)

CHGDEVMLB     Change Device Desc (Media Lib)

CHGDEVNET     Change Device Desc (Network)

CHGDEVOPT     Change Device Desc (Optical)

CHGDEVPR      Change Device Desc (Printer)

CHGDEVRTL     Change Device Desc (Retail)

CHGDEVSNPT    Change Device Desc (SNPT)

CHGDEVSNUF    Change Device Desc (SNUF)

CHGDEVTAP     Change Device Desc (Tape)

CHGDIRE       Change Directory Entry

CHGDIRSHD     Change Directory Shadow System

CHGDKTF       Change Diskette File

CHGDLOAUD     Change DLO Auditing Level

CHGDLOAUT     Change DLO Authority

CHGDLOOWN     Change DLO Owner

CHGDLOPGP     Change DLO Primary Group

CHGDOCD       Change Document Description

CHGDSPF       Change Display File

CHGDSTA       Change Distribution Attributes

CHGDSTD       Change Distribution

CHGDSTL       Change Distribution List

CHGDSTPWD     Change DST Password

CHGDSTQ       Change Distribution Queue

CHGDSTRTE     Change Distribution Route

CHGDTA        Change Data

CHGDTAARA     Change Data Area

CHGEMLCFGE    Change Configuration Entry

CHGENVVAR     Change Environment Variable

CHGEWCBCDE    Change EWC Barcode Entry

CHGEWCM       Change Wireless Ctl Member

CHGEWCPTCE    Change EWC PTC Entry

CHGEWLM       Change Wireless Line Member

CHGEXPSCDE    Change Expiration Scd Entry

CHGFCNARA     Change Functional Area

CHGFCT        Change Forms Control Table

CHGFCTE       Change Forms Control Entry

CHGFTPA       Change FTP Attributes

CHGFTR        Change Filter

CHGGPHFMT     Change Graph Format

CHGGPHPKG     Change Graph Package

CHGGRPA       Change Group Attributes

CHGHLLPTR     Change HLL Pointer

CHGHTTPA      Change HTTP Attributes

CHGICFDEVE    Change ICF Device Entry

CHGICFF       Change ICF File

CHGIPIADR     Change IP over IPX Address

CHGIPIIFC     Change IP over IPX Interface

CHGIPLA       Change IPL Attributes

CHGIPSIFC     Change IP over SNA Interface

CHGIPSLOC     Change IP over SNA Location

CHGIPSTOS     Change IP over SNA TOS

CHGIPXCCT     Change IPX Circuit

CHGIPXD       Change IPX Description

CHGJOB        Change Job

CHGJOBD       Change Job Description

CHGJOBJS      Change Job using Job Scheduler

CHGJOBQE      Change Job Queue Entry

CHGJOBSCDE    Change Job Schedule Entry

CHGJOBTYP     Change Job Type

CHGJRN        Change Journal

CHGKBDMAP     Change Keyboard Map

CHGLANADPI    Change LAN Adapter Information

CHGLF         Change Logical File

CHGLFM        Change Logical File Member

CHGLIB        Change Library

CHGLIBL       Change Library List

CHGLICINF     Change License Information

CHGLINASC     Change Line Desc (Async)

CHGLINBSC     Change Line Desc (BSC)

CHGLINDDI     Change Line Desc (DDI)

CHGLINETH     Change Line Desc (Ethernet)

CHGLINFAX     Change Line Desc (Fax)

CHGLINFR      Change Line Desc (Frame Relay)

CHGLINIDLC    Change Line Desc (IDLC)

CHGLINNET     Change Line Desc (Network)

CHGLINSDLC    Change Line Desc (SDLC)

CHGLINTDLC    Change Line Desc (TDLC)

CHGLINTRN     Change Line Desc (Token-Ring)

CHGLINWLS     Change Line Desc (Wireless)

CHGLINX25     Change Line Desc (X.25)

CHGLPDA       Change LPD Attributes

CHGM36CFG     Change Machine Configuration

CHGMNU        Change Menu

CHGMOD        Change Module

CHGMODD       Change Mode Description

CHGMSGD       Change Message Description

CHGMSGF       Change Message File

CHGMSGQ       Change Message Queue

CHGNCK        Change Nickname

CHGNETA       Change Network Attributes

CHGNETJOBE    Change Network Job Entry

CHGNFSEXP     Change NFS Export

CHGNODGRPA    Change Node Group Attributes

CHGNTBD       Change NetBIOS Description

CHGNWIATM     Change NWI ATM

CHGNWIFR      Change Network Interface (FR)

CHGNWIISDN    Change Network Interface ISDN

CHGNWSA       Change NWS Attributes

CHGNWSALS     Change Network Server Alias

CHGNWSD       Change Network Server Desc

CHGNWSUSRA    Change NWS User Attributes

CHGOBJAUD     Change Object Auditing

CHGOBJD       Change Object Description

CHGOBJOWN     Change Object Owner

CHGOBJPGP     Change Object Primary Group

CHGOPTA       Change Optical Attributes

CHGOPTVOL     Change Optical Volume

CHGOUTQ       Change Output Queue

CHGOWN        Change Owner

CHGPCOPRF     Change PC Organizer Profile

CHGPDGPRF     Change PDG Profile

CHGPEXDFN     Change PEX Definition

CHGPF         Change Physical File

CHGPFCST      Change PF Constraint

CHGPFM        Change Physical File Member

CHGPFRCOL     Change Performance Collection

CHGPGM        Change Program

CHGPGMVAR     Change Program Variable

CHGPGP        Change Primary Group

CHGPJ         Change Prestart Job

CHGPJE        Change Prestart Job Entry

CHGPOPA       Change POP Server Attributes

CHGPRB        Change Problem

CHGPRBACNE    Change Problem Action Entry

CHGPRBSLTE    Change Problem Selection Entry

CHGPRF        Change Profile

CHGPRTF       Change Printer File

CHGPSFCFG     Change PSF Configuration

CHGPTR        Change Pointer

CHGPWD        Change Password

CHGPWRSCD     Change Power On/Off Schedule

CHGPWRSCDE    Change Power Schedule Entry

CHGQRYA       Change Query Attributes

CHGQSTDB      Change Q/A Database

CHGRCYAP      Chg Recovery for Access Paths

CHGRDBDIRE    Change RDB Directory Entry

CHGRJECMNE    Change RJE Communication Entry

CHGRJERDRE    Change RJE Reader Entry

CHGRJEWTRE    Change RJE Writer Entry

CHGRMTDFN     Change Remote Definition

CHGRPYLE      Change Reply List Entry

CHGRTDA       Change RouteD Attributes

CHGRTGE       Change Routing Entry

CHGRWSPWD     Change RWS Controller Password

CHGRXCA       Change REXEC Attributes

CHGS34LIBM    Change S/34 Library Member

CHGS36        Change S/36 Configuration

CHGS36A       Change S/36 Environment Attr

CHGS36MSGL    Change S/36 Message List

CHGS36PGMA    Change S/36 Program Attributes

CHGS36PRCA    Change S/36 Proc Attributes

CHGS36SRCA    Change S/36 Source Attributes

CHGSAVF       Change Save File

CHGSBSD       Change Subsystem Description

CHGSCHIDX     Change Search Index

CHGSECA       Change Security Attributes

CHGSECAUD     Change Security Auditing

CHGSHRPOOL    Change Shared Storage Pool

CHGSMTPA      Change SMTP Attributes

CHGSNILOC     Change SNA over IPX Location

CHGSNMPA      Change SNMP Attributes

CHGSPLFA      Change Spooled File Attributes

CHGSRCPF      Change Source Physical File

CHGSRVA       Change Service Attributes

CHGSRVPGM     Change Service Program

CHGSSND       Change Session Description

CHGSSNMAX     Change Session Maximum

CHGSYSDIRA    Change System Dir Attributes

CHGSYSJOB     Change System Job

CHGSYSLIBL    Change System Library List

CHGSYSVAL     Change System Value

CHGTAPCTG     Change Tape Cartridge

CHGTAPF       Change Tape File

CHGTCPA       Change TCP/IP Attributes

CHGTCPHTE     Change TCP/IP Host Table Entry

CHGTCPIFC     Change TCP/IP Interface

CHGTCPLNK     Change TCP/IP Link

CHGTCPRTE     Change TCP/IP Route

CHGTELNA      Change TELNET Attributes

CHGTFTPA      Change TFTP Attributes

CHGUSRAUD     Change User Auditing

CHGUSRPRF     Change User Profile

CHGUSRPRTI    Change User Print Info

CHGVAR        Change Variable

CHGVT1MAP     Change VT100 keyboard map

CHGVTMAP      Change VT Keyboard Map

CHGWSE        Change Work Station Entry

CHGWSGA       Change WSG Attributes

CHGWTR        Change Writer

CHKCMNTRC     Check Communications Trace

CHKDKT        Check Diskette

CHKDLO        Check Document Library Object

CHKIN         Check In Object

CHKOBJ        Check Object

CHKOBJITG     Check Object Integrity

CHKOUT        Check Out Object

CHKPRDOPT     Check Product Option

CHKPWD        Check Password

CHKRCDLCK     Check Record Locks

CHKS36SRCA    Check S/36 Source Attributes

CHKTAP        Check Tape

CLOF          Close File

CLRDKT        Clear Diskette

CLRJOBQ       Clear Job Queue

CLRLIB        Clear Library

CLRMSGQ       Clear Message Queue

CLROUTQ       Clear Output Queue

CLRPFM        Clear Physical File Member

CLRPOOL       Clear Pool

CLRSAVF       Clear Save File

CLRTRCDTA     Clear Trace Data

CMD           Command Definition

CMPJRNIMG     Compare Journal Images

CMPPFM        Compare Physical File Member

CMPPTFLVL     Compare PTF Level

CNLRJERDR     Cancel RJE Reader

CNLRJEWTR     Cancel RJE Writer

COMMIT        Commit

COPY          Copy Object

COPYRIGHT     Copyright

CPROBJ        Compress Object

CPY           Copy Object

CPYCFGL       Copy Configuration List

CPYDOC        Copy Document

CPYF          Copy File

CPYFCNARA     Copy Functional Area

CPYFRMDIR     Copy From Directory

CPYFRMDKT     Copy From Diskette

CPYFRMPCD     Copy From PC Document

CPYFRMQRYF    Copy From Query File

CPYFRMSTMF    Copy From Stream File

CPYFRMTAP     Copy From Tape

CPYGPHFMT     Copy Graph Format

CPYGPHPKG     Copy Graph Package

CPYJOBJS      Copy Job using Job Scheduler

CPYLIB        Copy Library

CPYOPT        Copy Optical

CPYPFRDTA     Copy Performance Data

CPYPTF        Copy Program Temporary Fix

CPYSPLF       Copy Spooled File

CPYSRCF       Copy Source File

CPYTODIR      Copy To Directory

CPYTODKT      Copy To Diskette

CPYTOPCD      Copy To PC Document

CPYTOSTMF     Copy To Stream File

CPYTOTAP      Copy To Tape

CRTALRTBL     Create Alert Table

CRTAUTHLR     Create Authority Holder

CRTAUTL       Create Authorization List

CRTBESTMDL    Create BEST/1 Model

CRTBNDCBL     Create Bound COBOL Program

CRTBNDCL      Create Bound CL Program

CRTBNDDIR     Create Binding Directory

CRTBNDRPG     Create Bound RPG Program

CRTCBLMOD     Create COBOL Module

CRTCBLPGM     Create COBOL Program

CRTCFGL       Create Configuration List

CRTCLD        Create C Locale Description

CRTCLMOD      Create CL Module

CRTCLPGM      Create CL Program

CRTCLS        Create Class

CRTCMD        Create Command

CRTCNNL       Create Connection List

CRTCOSD       Create Class-of-Service Desc

CRTCRQD       Create CRQ Description

CRTCSI        Create Comm Side Information

CRTCTLAPPC    Create Ctl Desc (APPC)

CRTCTLASC     Create Ctl Desc (Async)

CRTCTLBSC     Create Ctl Desc (BSC)

CRTCTLFNC     Create Ctl Desc (Finance)

CRTCTLHOST    Create Ctl Desc (SNA Host)

CRTCTLLWS     Create Ctl Desc (Local WS)

CRTCTLNET     Create Ctl Desc (Network)

CRTCTLRTL     Create Ctl Desc (Retail)

CRTCTLRWS     Create Ctl Desc (Remote WS)

CRTCTLTAP     Create Ctl Desc (Tape)

CRTCTLVWS     Create Ctl Desc (Virtual WS)

CRTDDMF       Create DDM File

CRTDEVAPPC    Create Device Desc (APPC)

CRTDEVASC     Create Device Desc (Async)

CRTDEVBSC     Create Device Desc (BSC)

CRTDEVDKT     Create Device Desc (Diskette)

CRTDEVDSP     Create Device Desc (Display)

CRTDEVFNC     Create Device Desc (Finance)

CRTDEVHOST    Create Device Desc (SNA Host)

CRTDEVINTR    Create Device Desc (Intra)

CRTDEVMLB     Create Device Desc (Media Lib)

CRTDEVNET     Create Device Desc (Network)

CRTDEVOPT     Create Device Desc (Optical)

CRTDEVPRT     Create Device Desc (Printer)

CRTDEVRTL     Create Device Desc (Retail)

CRTDEVSNPT    Create Device Desc (SNPT)

CRTDEVSNUF    Create Device Desc (SNUF)

CRTDEVTAP     Create Device Desc (Tape)

CRTDFUDSPF    Create DFU Display File

CRTDIR        Create Directory

CRTDKTF       Create Diskette File

CRTDOC        Create Document

CRTDSPF       Create Display File

CRTDSTL       Create Distribution List

CRTDTAARA     Create Data Area

CRTDTADCT     Create Data Dictionary

CRTDTAQ       Create Data Queue

CRTDUPOBJ     Create Duplicate Object

CRTEDTD       Create Edit Description

CRTFCNARA     Create Functional Area

CRTFCT        Create Forms Control Table

CRTFLR        Create Folder

CRTFNTRSC     Create Font Resource

CRTFORMDF     Create Form Definition

CRTFTR        Create Filter

CRTGPHFMT     Create Graph Format

CRTGPHPKG     Create Graph Package

CRTGSS        Create Graphics Symbol Set

CRTHSTDTA     Create Historical Data

CRTICFF       Create ICF File

CRTIPXD       Create IPX Description

CRTJOBD       Create Job Description

CRTJOBQ       Create Job Queue

CRTJRN        Create Journal

CRTJRNRCV     Create Journal Receiver

CRTLF         Create Logical File

CRTLIB        Create Library

CRTLINASC     Create Line Desc (Async)

CRTLINBSC     Create Line Desc (BSC)

CRTLINDDI     Create Line Desc (DDI)

CRTLINETH     Create Line Desc (Ethernet)

CRTLINFAX     Create Line Desc (Fax)

CRTLINFR      Create Line Desc (Frame Relay)

CRTLINIDLC    Create Line Desc (IDLC)

CRTLINNET     Create Line Desc (Network)

CRTLINSDLC    Create Line Desc (SDLC)

CRTLINTDLC    Create Line Desc (TDLC)

CRTLINTRN     Create Line Desc (Token-Ring)

CRTLINWLS     Create Line Desc (Wireless)

CRTLINX25     Create Line Desc (X.25)

CRTLOCALE     Create Locale

CRTM36CFG     Create Machine Configuration

CRTMNU        Create Menu

CRTMODD       Create Mode Description

CRTMSGF       Create Message File

CRTMSGFMNU    Create Menu from Msg Files

CRTMSGQ       Create Message Queue

CRTNODGRP     Create Node Group

CRTNODL       Create Node List

CRTNTBD       Create NetBIOS Description

CRTNWIATM     Create NWI ATM

CRTNWIFR      Create Network Interface (FR)

CRTNWIISDN    Create Network Interface ISDN

CRTNWSALS     Create Network Server Alias

CRTNWSD       Create Network Server Desc

CRTNWSSTG     Create NWS Storage Space

CRTOUTQ       Create Output Queue

CRTOVL        Create Overlay

CRTPAGDFN     Create Page Definition

CRTPAGSEG     Create Page Segment

CRTPDG        Create Print Descriptor Group

CRTPF         Create Physical File

CRTPGM        Create Program

CRTPNLGRP     Create Panel Group

CRTPRTF       Create Printer File

CRTPSFCFG     Create PSF Configuration

CRTQMFORM     Create Query Management Form

CRTQMQRY      Create Query Management Query

CRTQSTDB      Create Q/A Database

CRTQSTLOD     Create Q/A Database Load

CRTRJEBSCF    Create RJE BSC File

CRTRJECFG     Create RJE Configuration

CRTRJECMNF    Create RJE Communication File

CRTRPGMOD     Create RPG Module

CRTRPGPGM     Create RPG/400 Program

CRTRPTPGM     Create Auto Report RPG Program

CRTS36CBL     Create S/36 COBOL Program

CRTS36DSPF    Create S/36 Display File

CRTS36MNU     Create S/36 Menu

CRTS36MSGF    Create S/36 Message File

CRTS36RPG     Create RPG II Program

CRTS36RPGR    Create Console Display File

CRTS36RPT     Create S/36 RPG II Auto Report

CRTSAVF       Create Save File

CRTSBSD       Create Subsystem Description

CRTSCHIDX     Create Search Index

CRTSPADCT     Create Spelling Aid Dictionary

CRTSQLC       Create SQL C Program

CRTSQLCBL     Create SQL COBOL Program

CRTSQLCBLI    Create SQL ILE COBOL Object

CRTSQLCI      Create SQL ILE C object

CRTSQLFTN     Create SQL FORTRAN Program

CRTSQLPKG     Create SQL Package

CRTSQLPLI     Create SQL PL/I Program

CRTSQLRPG     Create SQL RPG Program

CRTSQLRPGI    Create SQL ILE RPG Object

CRTSRCPF      Create Source Physical File

CRTSRVPGM     Create Service Program

CRTSSND       Create Session Description

CRTTAPCGY     Create Tape Category

CRTTAPF       Create Tape File

CRTTBL        Create Table

CRTUDFS       Create User-Defined FS

CRTUSRPRF     Create User Profile

CRTVLDL       Create Validation List

CRTWSCST      Create WSCST

CVTBASSTR     Convert S/36 Stream File

CVTBASUNF     Convert S/36 Unformatted File

CVTBGUDTA     Convert BGU Data

CVTCLSRC      Convert CL Source

CVTDAT        Convert Date

CVTDLSNAM     Convert DLS Name

CVTEDU        Convert Education

CVTIPSIFC     Convert IP Address

CVTIPSLOC     Convert Network ID / Location

CVTNAMSMTP    Convert SMTP Names

CVTOPTBKU     Convert Optical Backup

CVTPFRDTA     Convert Performance Data

CVTRJEDTA     Convert RJE Data

CVTRPGSRC     Convert RPG Source

CVTS36CFG     Convert S/36 Configuration

CVTS36FCT     Convert Forms Control Table

CVTS36JOB     Convert S/36 Migration Job

CVTS36QRY     Convert S/36 Query

CVTS38JOB     Convert S/38 Migration Job

CVTTCPCL      Convert TCP/IP CL Source

CVTTOFLR      Convert To Folder

DATA          Data

DCL           Declare CL Variable

DCLF          Declare File

DCPOBJ        Decompress Object

DEL           Remove Link

DEP           Dependent Definition

DLCOBJ        Deallocate Object

DLTALR        Delete Alert

DLTALRTBL     Delete Alert Table

DLTAPARDTA    Delete APAR Data

DLTAUTHLR     Delete Authority Holder

DLTAUTL       Delete Authorization List

DLTBESTMDL    Delete BEST/1 model

DLTBNDDIR     Delete Binding Directory

DLTCFGL       Delete Configuration List

DLTCLD        Delete C Locale Description

DLTCLS        Delete Class

DLTCMD        Delete Command

DLTCMNTRC     Delete Communications Trace

DLTCNNL       Delete Connection List

DLTCOSD       Delete Class-of-Service Desc

DLTCRQD       Delete CRQ Description

DLTCSI        Delete Comm Side Information

DLTCSPMAP     Delete CSP/AE Map Group

DLTCTLD       Delete Controller Description

DLTDEVD       Delete Device Description

DLTDEVMLB     Delete Device Media Library

DLTDFUPGM     Delete DFU Program

DLTDKTLBL     Delete Diskette Label

DLTDLO        Delete Document Library Object

DLTDOCL       Delete Document List

DLTDST        Delete Distribution

DLTDSTL       Delete Distribution List

DLTDTAARA     Delete Data Area

DLTDTADCT     Delete Data Dictionary

DLTDTAQ       Delete Data Queue

DLTEDTD       Delete Edit Description

DLTF          Delete File

DLTFCNARA     Delete Functional Area

DLTFCT        Delete Forms Control Table

DLTFNTRSC     Delete Font Resource

DLTFNTTBL     Delete Font Table

DLTFORMDF     Delete Form Definition

DLTFTR        Delete Filter

DLTGPHFMT     Delete Graph Format

DLTGPHPKG     Delete Graph Package

DLTGSS        Delete Graphic Symbol Set

DLTHSTDTA     Delete Historical Data

DLTIPXD       Delete IPX Description

DLTJOBD       Delete Job Description

DLTJOBQ       Delete Job Queue

DLTJRN        Delete Journal

DLTJRNRCV     Delete Journal Receiver

DLTLIB        Delete library

DLTLICPGM     Delete Licensed Program

DLTLIND       Delete Line Description

DLTLOCALE     Delete Locale

DLTM36        Delete Machine

DLTM36CFG     Delete Machine Configuration

DLTMNU        Delete Menu

DLTMOD        Delete Module

DLTMODD       Delete Mode Description

DLTMSGF       Delete Message File

DLTMSGQ       Delete Message Queue

DLTNETF       Delete Network File

DLTNODGRP     Delete Node Group

DLTNODL       Delete Node List

DLTNTBD       Delete NetBIOS Descriptions

DLTNWID       Delete Network Interface Desc

DLTNWSALS     Delete Network Server Alias

DLTNWSAPP     Delete Network Server App

DLTNWSD       Delete Network Server Desc

DLTNWSSTG     Delete NWS Storage Space

DLTOUTQ       Delete Output Queue

DLTOVL        Delete Overlay

DLTOVR        Delete Override

DLTOVRDEVE    Delete Override Pgm Dev Entry

DLTPAGDFN     Delete Page Definition

DLTPAGSEG     Delete Page Segment

DLTPDG        Delete Print Descriptor Group

DLTPEXDTA     Delete PEX Data

DLTPFRDTA     Delete Performance Data

DLTPGM        Delete Program

DLTPNLGRP     Delete Panel Group

DLTPRB        Delete Problem

DLTPSFCFG     Delete PSF Configuration

DLTPTF        Delete Program Temporary Fix

DLTQMFORM     Delete Query Management Form

DLTQMQRY      Delete Query Management Query

DLTQRY        Delete Query

DLTQST        Delete Questions and Answers

DLTQSTDB      Delete Q/A Database

DLTRJECFG     Delete RJE Configuration

DLTSBSD       Delete Subsystem Description

DLTSCHIDX     Delete Search Index

DLTSHF        Delete Bookshelf

DLTSPADCT     Delete Spelling Aid Dictionary

DLTSPLF       Delete Spooled File

DLTSQLPKG     Delete SQL Package

DLTSRVPGM     Delete Service Program

DLTSSND       Delete Session Description

DLTTAPCGY     Delete Tape Category

DLTTBL        Delete Table

DLTUDFS       Delete User-Defined FS

DLTUSRIDX     Delete User Index

DLTUSRPRF     Delete User Profile

DLTUSRQ       Delete User Queue

DLTUSRSPC     Delete User Space

DLTVLDL       Delete Validation List

DLTWSCST      Delete WSCST

DLYJOB        Delay Job

DMPCLPGM      Dump CL Program

DMPDLO        Dump Document Library Object

DMPJOB        Dump Job

DMPJOBINT     Dump Job Internal

DMPOBJ        Dump Object

DMPSYSOBJ     Dump System Object

DMPTAP        Dump Tape

DMPTRC        Dump Trace

DO            Do Group

DSCJOB        Disconnect Job

DSPACC        Display Access Code

DSPACCAUT     Display Access Code Authority

DSPACCGRP     Display Access Group

DSPACTPJ      Display Active Prestart Jobs

DSPACTPRFL    Display Active Profile List

DSPACTSCD     Display Activation Schedule

DSPAPPNINF    Display APPN Information

DSPAUDJRNE    Display Audit Journal Entries

DSPAUT        Display Authority

DSPAUTHLR     Display Authority Holder

DSPAUTL       Display Authorization List

DSPAUTLDLO    Display Authorization List DLO

DSPAUTLOBJ    Display Authorization List Obj

DSPAUTUSR     Display Authorized Users

DSPBCKSTS     Display Backup Status

DSPBCKUP      Display Backup Options

DSPBCKUPL     Display Backup List

DSPBKP        Display Breakpoints

DSPBNDDIR     Display Binding Directory

DSPCCTRTE     Display Circuit Route

DSPCCTSRV     Display Circuit Service

DSPCDEFNT     Display Coded Font

DSPCFGL       Display Configuration List

DSPCLS        Display Class

DSPCMD        Display Command

DSPCNNL       Display Connection List

DSPCNNSTS     Display Connection Status

DSPCOSD       Display Class-of-Service Desc

DSPCPCST      Display CHKPND Constraint

DSPCSI        Display Comm Side Information

DSPCTLD       Display Controller Description

DSPCURDIR     Display Current Directory

DSPDBG        Display Debug

DSPDBGWCH     Display Debug Watch

DSPDBR        Display Data Base Relations

DSPDDMF       Display DDM File

DSPDEVD       Display Device Description

DSPDIRE       Display Directory Entries

DSPDKT        Display Diskette

DSPDLOAUD     Display DLO Auditing Level

DSPDLOAUT     Display DLO Authority

DSPDLONAM     Display DLO Name

DSPDOC        Display Document

DSPDSTL       Display Distribution List

DSPDSTLOG     Display Distribution Log

DSPDSTSRV     Display Distribution Services

DSPDTA        Display Data

DSPDTAARA     Display Data Area

DSPDTADCT     Display Data Dictionary

DSPEDTD       Display Edit Description

DSPEWCBCDE    Display EWC Barcode Entry

DSPEWCM       Display Wireless Ctl Member

DSPEWCPTCE    Display EWC PTC Entry

DSPEWLM       Display Wireless Line Member

DSPEXPSCD     Display Expiration Schedule

DSPFD         Display File Description

DSPFFD        Display File Field Description

DSPFLR        Display Folder

DSPFNTRSCA    Display Font Resource Attr

DSPFNTTBL     Display Font Table

DSPHDWRSC     Display Hardware Resources

DSPHFS        Display Hierarchical File Sys.

DSPHLPDOC     Display Help Document

DSPHSTGPH     Display Historical Graph

DSPHSTJS      Display History using JS

DSPIPLA       Display IPL Attributes

DSPIPXCCT     Display IPX Circuit

DSPIPXD       Display IPX Description

DSPJOB        Display Job

DSPJOBD       Display Job Description

DSPJOBJS      Display Job using JS

DSPJOBLOG     Display Job Log

DSPJOBTBL     Display Job Tables

DSPJRN        Display Journal

DSPJRNRCVA    Display Journal Receiver Atr

DSPKBDMAP     Display Keyboard Map

DSPLANADPP    Display LAN Adapter Profile

DSPLANMLB     Display LAN Media Library

DSPLANSTS     Display LAN Status

DSPLIB        Display Library

DSPLIBD       Display Library Description

DSPLIBL       Display Library List

DSPLICKEY     Display License Key Info

DSPLIND       Display Line Description

DSPLNK        Display Object Links

DSPLOG        Display Log

DSPM36        Display Machine

DSPM36CFG     Display Machine Configuration

DSPMFSINF     Display Mounted FS Information

DSPMNUA       Display Menu Attributes

DSPMOD        Display Module

DSPMODD       Display Mode Description

DSPMODSRC     Display Module Source

DSPMODSTS     Display Mode Status

DSPMSG        Display Messages

DSPMSGD       Display Message Description

DSPNCK        Display Nickname

DSPNETA       Display Network Attributes

DSPNODGRP     Display Node Group

DSPNTBD       Display NetBIOS Description

DSPNWID       Display Network Interface Desc

DSPNWSA       Display NWS Attributes

DSPNWSALS     Display Network Server Alias

DSPNWSD       Display Network Server Desc

DSPNWSSSN     Display Network Server Session

DSPNWSSTC     Display NWS Statistics

DSPNWSSTG     Display NWS Storage Space

DSPNWSUSR     Display Network Server Users

DSPNWSUSRA    Display NWS User Attributes

DSPOBJAUT     Display Object Authority

DSPOBJD       Display Object Description

DSPOPCLNK     Display OptiConnect Link Sts

DSPOPT        Display Optical

DSPOPTLCK     Display Optical Locks

DSPOPTSVR     Display Optical Server

DSPOVR        Display Override

DSPPDGPRF     Display PDG Profile

DSPPFM        Display Physical File Member

DSPPFRDTA     Display Performance Data

DSPPFRGPH     Display Performance Graph

DSPPGM        Display Program

DSPPGMADP     Display Program Adopt

DSPPGMREF     Display Program References

DSPPGMVAR     Display Program Variable

DSPPRB        Display Problems

DSPPSFCFG     Display PSF Configuration

DSPPTF        Display Program Temporary Fix

DSPPWRSCD     Display Power On/Off Schedule

DSPRCDLCK     Display Record Locks

DSPRCYAP      Dsp Recovery for Access Paths

DSPRDBDIRE    Display RDB Directory Entries

DSPRJECFG     Display RJE Configuration

DSPRMTDFN     Display Remote Definition

DSPS36        Display S/36 Configuration

DSPSAVF       Display Save File

DSPSBSD       Display Subsystem Description

DSPSECA       Display Security Attributes

DSPSECAUD     Display Security Auditing

DSPSFWRSC     Display Software Resources

DSPSOCSTS     Display Sphere of Control Sts

DSPSPLF       Display Spooled File

DSPSRVA       Display Service Attributes

DSPSRVPGM     Display Service Program

DSPSRVSTS     Display Service Status

DSPSYSSTS     Display System Status

DSPSYSVAL     Display System Value

DSPTAP        Display Tape

DSPTAPCGY     Display Tape Category

DSPTAPCTG     Display Tape Cartridge

DSPTAPSTS     Display Tape Status

DSPTM         Display Trademarks

DSPTRC        Display Trace

DSPTRCDTA     Display Trace Data

DSPUDFS       Display User-Defined FS

DSPUPGPRP     Display Upgrade Preparation

DSPUSRPMN     Display User Permission

DSPUSRPRF     Display User Profile

DSPUSRPRTI    Display User Print Info

DSPVT1MAP     Display VT100 keyboard map

DSPVTMAP      Display VT Keyboard Map

DSPWSUSR      Display Work Station User

DUPDKT        Duplicate Diskette

DUPOPT        Duplicate Optical

DUPTAP        Duplicate Tape

EDTAUTL       Edit Authorization List

EDTBCKUPL     Edit Backup List

EDTCPCST      Edit CHKPND Constraints

EDTDLOAUT     Edit DLO Authority

EDTDOC        Edit Document

EDTLIBL       Edit Library List

EDTOBJAUT     Edit Object Authority

EDTQST        Edit Questions and Answers

EDTRBDAP      Edit Rebuild of Access Paths

EDTRCYAP      Edit Recovery for Access Path

EDTS36PGMA    Edit S/36 Program Attributes

EDTS36PRCA    Edit S/36 Procedure Attribute

EDTS36SRCA    Edit S/36 Source Attributes

EDTWSOAUT     Edit Workstation Object Aut

EJTEMLOUT     Eject Emulation Output

ELEM          Element Definition

ELSE          Else

EMLPRTKEY     Emulate Printer Keys

ENDBCHJOB     End Batch Job

ENDCBLDBG     End COBOL Debug

ENDCLNUP      End Cleanup

ENDCMNSVR     End Communications Server

ENDCMNTRC     End Communications Trace

ENDCMTCTL     End Commitment Control

ENDCPYSCN     End Copy Screen

ENDCTLRCY     End Controller Recovery

ENDDBG        End Debug Mode

ENDDBGSVR     End Debug Server

ENDDBMON      End Database Monitor

ENDDEVRCY     End Device Recovery

ENDDIRSHD     End Directory Shadowing

ENDDO         End Do Group

ENDEPMENV     End EPM Environments

ENDGRPJOB     End Group Job

ENDHOSTSVR    End Host Server

ENDINP        End Input

ENDIPIIFC     End IP over IPX Interface

ENDIPSIFC     End IP over SNA Interface

ENDIPX        End IPX

ENDIPXCCT     End IPX Circuit

ENDISDB       End ISDB

ENDJOB        End Job

ENDJOBABN     End Job Abnormal

ENDJOBTRC     End Job Trace

ENDJRNAP      End Journal Access Path

ENDJRNPF      End Journaling PF Changes

ENDJS         End Job Scheduler

ENDLINRCY     End Line Recovery

ENDM36        End Machine

ENDMOD        End Mode

ENDMSF        End Mail Server Framework

ENDNFSSVR     End NFS Server

ENDNWIRCY     End Network Interface Recovery

ENDNWSAPP     End Network Server Application

ENDPASTHR     End Pass-Through

ENDPEX        End Performance Explorer

ENDPFRCOL     End Performance Collection

ENDPFRMON     End Performance Monitor

ENDPGM        End Program

ENDPGMEXP     End Program Export List

ENDPJ         End Prestarted Jobs

ENDPRTEML     End Printer Emulation

ENDRCV        End Receive

ENDRDBRQS     End relational database request

ENDRDR        End Reader

ENDRJESSN     End RJE Session

ENDRMTSPT     End Remote Support

ENDRQS        End Request

ENDS36        End S/36 Session

ENDSBS        End Subsystem

ENDSRVJOB     End Service Job

ENDSYS        End System

ENDTCP        End TCP/IP

ENDTCPCNN     End TCP/IP Connection

ENDTCPIFC     End TCP/IP Interface

ENDTCPLNK     End TCP/IP Link

ENDTCPPTP     End Point-to-Point TCP/IP

ENDTCPSVR     End TCP/IP Server

ENDTIESSN     End TIE Session

ENDTRPMGR     End Trap Manager

ENDWTR        End Writer

EOF           End of File

ERASE         Remove Link

EXPORT        Export a Program Symbol

EXPORTFS      Change NFS Export

EXTPGMINF     Extract Program Information

FILDOC        File Document

FMTDTA        Format Data

FNDSTRPART    Find String in Parts with PDM

FNDSTRPDM     Find String Using PDM

FTP           Start TCP/IP File Transfer

GENCAT        Generate Message Catalog

GENS36RPT     Generate S/36 Report

GENS38RPT     Generate S/38 Report

GO            Go to Menu

GOTO          Go To

GRTACCAUT     Grant Access Code Authority

GRTOBJAUT     Grant Object Authority

GRTUSRAUT     Grant User Authority

GRTUSRPMN     Grant User Permission

GRTWSOAUT     Grant Workstation Object Aut

HLDCMNDEV     Hold Communications Device

HLDDSTQ       Hold Distribution Queue

HLDJOB        Hold Job

HLDJOBQ       Hold Job Queue

HLDJOBSCDE    Hold Job Schedule Entry

HLDOUTQ       Hold Output Queue

HLDRDR        Hold Reader

HLDSPLF       Hold Spooled File

HLDWTR        Hold Writer

IF            If

INSNWSAPP     Install Network Server App

INSPTF        Install Program Temporary Fix

INZDKT        Initialize Diskette

INZDSTQ       Initialize Distribution Queue

INZOPT        Initialize Optical

INZPCS        Initialize Client Access/400

INZPFM        Initialize Physical File Mbr

INZSYS        Initialize System

INZTAP        Initialize Tape

IPXPING       Verify IPX Connection

LNKDTADFN     Link/Unlink Data Definition

LODPTF        Load Program Temporary Fix

LODQSTDB      Load Q/A Database

LODRUN        Load and Run

LPR           Send TCP/IP Spooled File

MD            Create Directory

MDLSYS        Model System

MGRS36        Complete System/36 Migration

MGRS36APF     System/36 APF Migration

MGRS36CBL     System/36 Cobol Migration

MGRS36DFU     System/36 DFU Migration

MGRS36DSPF    System/36 Display File Migrate

MGRS36ITM     Migrate S/36 item

MGRS36LIB     System/36 Library Migration

MGRS36MNU     System/36 Menu Migration

MGRS36MSGF    System/36 Message File Migrate

MGRS36QRY     System/36 Query Migration

MGRS36RPG     System/36 RPG II Migration

MGRS36SEC     System/36 User ID Migration

MGRS38OBJ     Migrate S/38 object

MIGRATE       Migration Menu

MKDIR         Create Directory

MONMSG        Monitor Message

MOUNT         Add Mounted FS

MOV           Move Object

MOVDOC        Move Document

MOVE          Move Object

MOVOBJ        Move Object

MRGFMRSPL     Merge spool file with a form

MRGFORMD      Merge Form Description

MRGMSGCLG     Merge Message Catalog

MRGMSGF       Merge Message File

MRGSRC        Merge Source

MRGTCPHT      Merge TCP/IP Host Table

NETSTAT       Work with TCP/IP Network Sts

OPNDBF        Open Data Base File

OPNQRYF       Open Query File

OVRDBF        Override with Data Base File

OVRDKTF       Override with Diskette File

OVRDSPF       Override with Display File

OVRICFDEVE    Override ICF Pgm Device Entry

OVRICFF       Override ICF File

OVRMSGF       Override Message File

OVRPRTF       Override with Printer File

OVRSAVF       Override with Save File

OVRTAPF       Override with Tape File

PARM          Parameter Definition

PGM           Program

PING          Verify TCP/IP Connection

PMTCTL        Prompt Control Definition

POSDBF        Position Data Base File

PRTACTRPT     Print Activity Report

PRTADPOBJ     Print Adopting Objects

PRTAFPDTA     Print AFP Data

PRTCMDUSG     Print Command Usage

PRTCMNSEC     Print Communications Security

PRTCMNTRC     Print Communications Trace

PRTCPTRPT     Print Component Report

PRTDEVADR     Print Device Addresses

PRTDOC        Print Document

PRTDSKINF     Print Disk Information

PRTERRLOG     Print Error Log

PRTINTDTA     Print Internal Data

PRTIPSCFG     Print IP over SNA

PRTJOBDAUT    Print JOBD Authority

PRTJOBRPT     Print Job Interval Report

PRTJOBTRC     Print Job Trace

PRTLCKRPT     Print Lock Report

PRTPEXRPT     Print PEX Report

PRTPOLRPT     Print Pool Report

PRTPUBAUT     Print Publicly Auth Objects

PRTPVTAUT     Print Private Authorities

PRTQAUT       Print Queue Authority

PRTRSCRPT     Print Resource Report

PRTSBSDAUT    Print Subsystem Description

PRTSCDJS      Print Schedule using JS

PRTSQLINF     Print SQL Information

PRTSWL        Print Stop Word List

PRTSYSINF     Print System Information

PRTSYSRPT     Print System Report

PRTSYSSECA    Print System Security Attr

PRTTNSRPT     Print Transaction Report

PRTTRCRPT     Print Job Trace Report

PRTTRGPGM     Print Trigger Programs

PRTUSROBJ     Print User Objects

PRTUSRPRF     Print User Profile

PWRDWNSYS     Power Down System

QMUS36        System/36 Command Selection

QPZA000844    Send Distribution

QRYDOCLIB     Query Document Library

QRYDST        Query Distributions

QRYPRBSTS     Query Problem Status

QRYTIEF       Query TIE Files

QUAL          Qualifier Definition

RCLACTGRP     Reclaim Activation Group

RCLDDMCNV     Reclaim DDM Conversations

RCLDLO        Reclaim Document Lib Object

RCLLIB        Reclaim Library

RCLOPT        Reclaim Optical

RCLRSC        Reclaim Resources

RCLSPLSTG     Reclaim Spool Storage

RCLSTG        Reclaim Storage

RCLTMPSTG     Reclaim Temporary Storage

RCVDST        Receive Distribution

RCVF          Receive File

RCVJRNE       Receive Journal Entry

RCVMGRDTA     Receive Migration Data

RCVMSG        Receive Message

RCVNETF       Receive Network File

RCVTIEF       Receive TIE File

RD            Remove Directory

READFILE      Read a File

REN           Rename Object

RESMGRNAM     no discription

RETURN        Return

RGZDLO        Reorganize Document Lib Object

RGZPFM        Reorganize Physical File Mbr

RLSCMNDEV     Release Communications Device

RLSDSTQ       Release Distribution Queue

RLSIFSLCK     Release File System Locks

RLSJOB        Release Job

RLSJOBQ       Release Job Queue

RLSJOBSCDE    Release Job Schedule Entry

RLSOUTQ       Release Output Queue

RLSRDR        Release Reader

RLSRMTPHS     Release Remote Phase

RLSSPLF       Release Spooled File

RLSWTR        Release Writer

RMDIR         Remove Directory

RMVACC        Remove Access Code

RMVAJE        Remove Autostart Job Entry

RMVALRD       Remove Alert Description

RMVAUTLE      Remove Auth List Entry

RMVBKP        Remove Breakpoint

RMVBNDDIRE    Remove Binding Directory Entry

RMVCCTRTE     Remove Circuit Route

RMVCCTSRV     Remove Circuit Service

RMVCFGLE      Remove Cfg List Entries

RMVCMNE       Remove Communications Entry

RMVCNNLE      Remove Connection List Entry

RMVCOMSNMP    Remove Community for SNMP

RMVDIR        Remove Directory

RMVDIRE       Remove Directory Entry

RMVDIRSHD     Remove Directory Shadow System

RMVDLOAUT     Remove DLO Authority

RMVDSTLE      Remove Distribution List Entry

RMVDSTQ       Remove Distribution Queue

RMVDSTRTE     Remove Distribution Route

RMVDSTSYSN    Remove Secondary System Name

RMVEMLCFGE    Remove Configuration Entry

RMVEWCBCDE    Remove EWC Barcode Entry

RMVEWCPTCE    Remove EWC PTC Entry

RMVEXITPGM    Remove Exit Program

RMVFCTE       Remove Forms Control Entry

RMVFTRACNE    Remove Filter Action Entry

RMVFTRSLTE    Remove Filter Selection Entry

RMVICFDEVE    Remove ICF Device Entry

RMVIPIADR     Remove IP over IPX Address

RMVIPIIFC     Remove IP over IPX Interface

RMVIPIRTE     Remove IP over IPX Route

RMVIPSIFC     Remove IP over SNA Interface

RMVIPSLOC     Remove IP over SNA Location

RMVIPSRTE     Remove IP over SNA Route

RMVIPXCCT     Remove IPX Circuit

RMVJOBQE      Remove Job Queue Entry

RMVJOBSCDE    Remove Job Schedule Entry

RMVJRNCHG     Remove Journaled Changes

RMVLANADPI    Remove LAN Adapter Information

RMVLANADPT    Remove LAN Adapter

RMVLIBLE      Remove Library List Entry

RMVLICKEY     Remove License Key Information

RMVLNK        Remove Link

RMVM          Remove Member

RMVMFS        Remove Mounted FS

RMVMSG        Remove Message

RMVMSGD       Remove Message Description

RMVNCK        Remove Nickname

RMVNETJOBE    Remove Network Job Entry

RMVNETTBLE    Remove Network Table Entry

RMVNODLE      Remove Node List Entry

RMVNWSSTGL    Remove Server Storage Link

RMVOPTCTG     Remove Optical Cartridge

RMVOPTSVR     Remove Optical Server

RMVPCLTBLE    Remove Protocol Table Entry

RMVPEXDFN     Remove PEX Definition

RMVPFCST      Remove PF Constraint

RMVPFTRG      Remove Physical File Trigger

RMVPGM        Remove Program

RMVPJE        Remove Prestart Job Entry

RMVPTF        Remove Program Temporary Fix

RMVRDBDIRE    Remove RDB Directory Entry

RMVREXBUF     Remove REXX Buffer

RMVRJECMNE    Remove RJE Communication Entry

RMVRJERDRE    Remove RJE Reader Entry

RMVRJEWTRE    Remove RJE Writer Entry

RMVRMTDFN     Remove Remote Definition

RMVRPYLE      Remove Reply List Entry

RMVRTGE       Remove Routing Entry

RMVSCHIDXE    Remove Search Index Entry

RMVSNILOC     Remove SNA over IPX Location

RMVSOCE       Remove Sphere of Control Entry

RMVSRVTBLE    Remove Service Table Entry

RMVTAPCTG     Remove Tape Cartridge

RMVTCPHTE     Remove TCP/IP Host Table Entry

RMVTCPIFC     Remove TCP/IP Interface

RMVTCPLNK     Remove TCP/IP Link

RMVTCPPORT    Remove TCP/IP Port Restriction

RMVTCPRSI     Remove TCP/IP Remote System

RMVTCPRTE     Remove TCP/IP Route

RMVTRC        Remove Trace

RMVWSE        Remove Work Station Entry

RNM           Rename Object

RNMCNNLE      Rename Connection List Entry

RNMDIRE       Rename Directory Entry

RNMDKT        Rename Diskette

RNMDLO        Rename Document Library Object

RNMDSTL       Rename Distribution List

RNMLANADPI    Rename LAN Adapter

RNMM          Rename Member

RNMNCK        Rename Nickname

RNMOBJ        Rename Object

RNMTCPHTE     Rename TCP/IP Host Table Entry

ROLLBACK      Rollback

RPLDOC        Replace Document

RQSORDAST     Request Order Assistance

RRTJOB        Reroute Job

RSMBKP        Resume Breakpoint

RSMCTLRCY     Resume Controller Recovery

RSMDEVRCY     Resume Device Recovery

RSMLINRCY     Resume Line Recovery

RSMNWIRCY     Resume NWI Recovery

RST           Restore Object

RSTAUT        Restore Authority

RSTCFG        Restore Configuration

RSTDLO        Restore Document Lib Object

RSTLIB        Restore Library

RSTLICPGM     Restore Licensed Program

RSTOBJ        Restore Object

RSTS36F       Restore S/36 File

RSTS36FLR     Restore S/36 Folder

RSTS36LIBM    Restore S/36 Library Members

RSTS38AUT     Restore S/38 Authorities

RSTSHF        Restore Bookshelf

RSTUSRPRF     Restore User Profiles

RTVAUTLE      Retrieve Auth List Entry

RTVBCKUP      Retrieve Backup Options

RTVBNDSRC     Retrieve Binder Source

RTVCFGSRC     Retrieve Configuration Source

RTVCFGSTS     Retrieve Configuration Status

RTVCLDSRC     Retrieve C Locale Description

RTVCLNUP      Retrieve Cleanup

RTVCLSRC      Retrieve CL Source

RTVCURDIR     Retrieve Current Directory

RTVDLOAUT     Retrieve DLO Authority

RTVDLONAM     Retrieve DLO Name

RTVDOC        Retrieve Document

RTVDSKINF     Retrieve Disk Information

RTVDTAARA     Retrieve Data Area

RTVGRPA       Retrieve Group Attributes

RTVJOBA       Retrieve Job Attributes

RTVJRNE       Retrieve Journal Entry

RTVLIBD       Retrieve Library Description

RTVMBRD       Retrieve Member Description

RTVMSG        Retrieve Message

RTVNETA       Retrieve Network Attributes

RTVOBJD       Retrieve Object Description

RTVPDGPRF     Retrieve PDG Profile

RTVPWRSCDE    Retrieve Power Schedule Entry

RTVQMFORM     Retrieve Query Management Form

RTVQMQRY      Retrieve Query Mgmt Query

RTVS36A       Retrieve S/36 Environment Attr

RTVSWLSRC     Retrieve Stop Word List Source

RTVSYSINF     Retrieve System Information

RTVSYSVAL     Retrieve System Value

RTVUSRPRF     Retrieve User Profile

RTVUSRPRTI    Retrieve User Print Info

RTVWSCST      Retrieve WSCST source

RUNBCKUP      Run Backup

RUNLPDA       Run LPDA-2

RUNQRY        Run Query

RUNRMTCMD     Run Remote Command

RUNSQLSTM     Run SQL Statements

RVKACCAUT     Revoke Access Code Authority

RVKOBJAUT     Revoke Object Authority

RVKPUBAUT     Revoke Public Authority

RVKUSRPMN     Revoke User Permission

RVKWSOAUT     Revoke Workstation Object Aut

SAV           Save Object

SAVAPARDTA    Save APAR Data

SAVCFG        Save Configuration

SAVCHGOBJ     Save Changed Objects

SAVDLO        Save Document Library Object

SAVEBRKMSG    Send Break Message

SAVLIB        Save Library

SAVLICPGM     Save Licensed Program

SAVOBJ        Save Object

SAVRST        Save Restore

SAVRSTCHG     Save Restore Changed Objects

SAVRSTDLO     Save Restore Doc/Lib Object

SAVRSTLIB     Save Restore Library

SAVRSTOBJ     Save Restore Object

SAVS36F       Save S/36 File

SAVS36LIBM    Save S/36 Library Members

SAVSAVFDTA    Save Save File Data

SAVSECDTA     Save Security Data

SAVSHF        Save Bookshelf

SAVSTG        Save Storage

SAVSYS        Save System

SBMCODEJOB    Submit CODE Batch Job

SBMDBJOB      Submit Data Base Jobs

SBMDKTJOB     Submit Diskette Jobs

SBMFNCJOB     Submit Finance Job

SBMJOB        Submit Job

SBMNETJOB     Submit Network Job

SBMNWSCMD     Submit Network Server Command

SBMRJEJOB     Submit RJE Job

SBMRMTCMD     Submit Remote Command

SETATNPGM     Set Attention Program

SETCSTDTA     Set Customization Data

SETKBDMAP     Set Keyboard Map

SETOBJACC     Set Object Access

SETPGMINF     Set Program Information

SETTAPCGY     Set Tape Category

SETUPGENV     Set Upgrade Environment

SETVT1MAP     Set VT100 keyboard map

SETVTMAP      Set VT Keyboard Map

SETVTTBL      Set VT Mapping Tables

SIGNOFF       Sign Off

SLTCMD        Select Command

SNDDST        Send Distribution

SNDDSTQ       Send Distribution Queue

SNDF          Send File

SNDFNCIMG     Send Finance Diskette Image

SNDJRNE       Send Journal Entry

SNDMGRDTA     Send Migration Data

SNDMSG        Send Message

SNDNETF       Send Network File

SNDNETMSG     Send Network Message

SNDNETSPLF    Send Network Spooled File

SNDNWSMSG     Send Network Server Message

SNDPGMMSG     Send Program Message

SNDPTFORD     Send PTF Order

SNDRCVF       Send/Receive File

SNDRJECMD     Send RJE Command

SNDRPY        Send Reply

SNDSRVRQS     Send Service Request

SNDTCPSPLF    Send TCP/IP Spooled File

SNDTIEF       Send TIE File

SNDUSRMSG     Send User Message

STATFS        Display Mounted FS Information

STRAPF        Advanced Printer Function

STRBEST       Start BEST/1

STRCBLDBG     Start COBOL Debug

STRCLNUP      Start Cleanup

STRCMNSVR     Start Communications Server

STRCMNTRC     Start Communications Trace

STRCMTCTL     Start Commitment Control

STRCODE       Start CODE

STRCPYSCN     Start Copy Screen

STRDBG        Start Debug

STRDBGSVR     Start Debug Server

STRDBMON      Start Database Monitor

STRDBRDR      Start Data Base Reader

STRDFU        Start DFU

STRDIRSHD     Start Directory Shadowing

STRDKTRDR     Start Diskette Reader

STRDKTWTR     Start Diskette Writer

STREDU        Start Education

STREML3270    Start 3270 Display Emulation

STREPMENV     Start EPM Environment

STRHOSTSVR    Start Host Server

STRIDD        Start IDDU

STRINFSKR     Start InfoSeeker

STRIPIIFC     Start IP over IPX Interface

STRIPSIFC     Start IP over SNA Interface

STRIPX        Start IPX

STRIPXCCT     Start IPX Circuit

STRISDB       Start ISDB

STRITF        Start ITF

STRJOBTRC     Start Job Trace

STRJRNAP      Start Journal Access Path

STRJRNPF      Start Journal Physical File

STRMOD        Start Mode

STRMSF        Start Mail Server Framework

STRNFSSVR     Start NFS Server

STRNWSAPP     Start Network Server App

STROBJCVN     Start Object Conversion

STRPASTHR     Start Pass-Through

STRPCCMD      Start PC Command

STRPCO        Start PC Organizer

STRPDM        Start PDM

STRPEX        Start Performance Explorer

STRPFRCOL     Start Performance Collection

STRPFRG       Start Performance Graphics

STRPFRMON     Start Performance Monitor

STRPFRT       Start Performance Tools

STRPGMEXP     Start Program Export List

STRPGMMNU     Start Programmer Menu

STRPJ         Start Prestarted Jobs

STRPRTEML     Start Printer Emulation

STRPRTWTR     Start Printer Writer

STRQM         Start DB2 Query Manager OS/400

STRQMPRC      Start Query Management Proc

STRQMQRY      Start Query Management Query

STRQRY        Start Query

STRQST        Start Question and Answer

STRREXPRC     Start REXX Procedure

STRRJECSL     Start RJE Console

STRRJERDR     Start RJE Reader

STRRJESSN     Start RJE Session

STRRJEWTR     Start RJE Writer

STRRLU        Start Report Layout Utility

STRRMTSPT     Start Remote Support

STRRMTWTR     Start Remote Writer

STRS36        Start S/36 Session

STRS36MGR     Start S/36 Migration

STRS36PRC     Start S/36 Procedure

STRS38MGR     Start S/38 Migration

STRSBS        Start Subsystem

STRSCHIDX     Start Search Index

STRSDA        Start SDA

STRSEU        Start Source Entry Utility

STRSPTN       Start Support Network

STRSQL        Start SQL Interactive Session

STRSRVJOB     Start Service Job

STRSST        Start System Service Tools

STRTCP        Start TCP/IP

STRTCPFTP     Start TCP/IP File Transfer

STRTCPIFC     Start TCP/IP Interface

STRTCPLNK     Start TCP/IP Link

STRTCPPTP     Start Point-to-Point TCP/IP

STRTCPSVR     Start TCP/IP Server

STRTCPTELN    Start TCP/IP TELNET

STRTIESSN     Start TIE Session

STRTRPMGR     Start Trap Manager

TELNET        Start TCP/IP TELNET

TFRBCHJOB     Transfer Batch Job

TFRCTL        Transfer Control

TFRGRPJOB     Transfer to Group Job

TFRJOB        Transfer Job

TFRPASTHR     Transfer Pass-Through

TFRSECJOB     Transfer Secondary Job

TRCCPIC       Trace CPI Communications

TRCICF        Trace ICF

TRCINT        Trace Internal

TRCJOB        Trace Job

TRCREX        Trace REXX

UNMOUNT       Remove Mounted FS

UPDDTA        Update Data with Temp Program

UPDPGM        Update Program

UPDSRVPGM     Update Service Program

UPDSYSINF     Update System Information

VFYAPPCCNN    Verify APPC Connection

VFYCMN        Verify Communications

VFYIPXCNN     Verify IPX Connection

VFYLNKLPDA    Verify Link supporting LPDA-2

VFYOPT        Verify Optical

VFYPRT        Verify Printer

VFYTAP        Verify Tape

VFYTCPCNN     Verify TCP/IP Connection

VRYCFG        Vary Configuration

WAIT          Wait

WRKACTJOB     Work with Active Jobs

WRKALR        Work with Alerts

WRKALRD       Work with Alert Descriptions

WRKALRTBL     Work with Alert Table

WRKAUT        Work with Authority

WRKAUTL       Work with Authorization Lists

WRKBNDDIR     Work with Binding Directories

WRKBNDDIRE    Work with Binding Dir Entries

WRKBPTBL      Work with BOOTP table

WRKCCTRTE     Work with Circuit Routes

WRKCCTSRV     Work with Circuit Services

WRKCFGL       Work with Configuration Lists

WRKCFGSTS     Work with Configuration Status

WRKCHTFMT     Work with Chart Formats

WRKCLS        Work with Classes

WRKCMD        Work with Commands

WRKCMTDFN     Work with Commitment Def

WRKCNNL       Work with Connection Lists

WRKCNNLE      Work with CNNL Entries

WRKCNTINF     Work with Contact Information

WRKCOSD       Work with COS Descriptions

WRKCSI        Work Comm Side Information

WRKCTLD       Work with Ctl Descriptions

WRKDBFIDD     Work with DB Files using IDDU

WRKDDMF       Work with DDM Files

WRKDEVD       Work with Device Descriptions

WRKDEVTBL     Work with Device Tables

WRKDIRE       Work with Directory Entries

WRKDIRLOC     Work with Directory Locations

WRKDIRSHD     Work with Dir Shadow Systems

WRKDOC        Work with Documents

WRKDOCLIB     Work with Document Libraries

WRKDOCPRTQ    Work with Document Print Queue

WRKDPCQ       Work with DSNX/PC Queues

WRKDSKSTS     Work with Disk Status

WRKDSTL       Work with Distribution Lists

WRKDSTQ       Work with Distribution Queue

WRKDTAARA     Work with Data Areas

WRKDTADCT     Work with Data Dictionaries

WRKDTADFN     Work with Data Definitions

WRKDTAQ       Work with Data Queues

WRKEDTD       Work with Edit Descriptions

WRKENVVAR     Work with Environment Var

WRKF          Work with Files

WRKFCNARA     Work with Functional Areas

WRKFCT        Work with Forms Control Table

WRKFLR        Work with Folders

WRKFNTRSC     Work with Font Resources

WRKFORMDF     Work with Form Definitions

WRKFTR        Work with Filters

WRKFTRACNE    Work with Ftr Action Entry

WRKFTRSLTE    Work with Ftr Selection Entry

WRKGRPPDM     Work with Groups Using PDM

WRKGSS        Work with Graphics Symbol Sets

WRKHDWPRD     Work with Hardware Products

WRKHDWRSC     Work with Hardware Resources

WRKHLDOPTF    Work with Held Optical Files

WRKHTTPCFG    Work with HTTP Configuration

WRKIPXCCT     Work with IPX Circuits

WRKIPXD       Work with IPX Descriptions

WRKIPXSTS     Work with IPX Status

WRKJOB        Work with Job

WRKJOBD       Work with Job Descriptions

WRKJOBQ       Work with Job Queue

WRKJOBSCDE    Work with Job Schedule Entries

WRKJRN        Work with Journal

WRKJRNA       Work with Journal Attributes

WRKJRNRCV     Work with Journal Receivers

WRKLANADPT    Work With LAN Adapters

WRKLIB        Work with Libraries

WRKLIBPDM     Work with Libraries Using PDM

WRKLICINF     Work with License Information

WRKLIND       Work with Line Descriptions

WRKLNK        Work with Object Links

WRKM36        Work with Machines

WRKM36CFG     Work with Machine Config

WRKMBRPDM     Work with Members Using PDM

WRKMLBSTS     Work with Media Library Status

WRKMNU        Work with Menus

WRKMOD        Work with Module

WRKMODD       Work with Mode Descriptions

WRKMSG        Work with Messages

WRKMSGD       Work with Message Descriptions

WRKMSGF       Work with Message Files

WRKMSGQ       Work with Message Queues

WRKNAMSMTP    Work with Names for SMTP

WRKNCK        Work With Nickname

WRKNETF       Work with Network Files

WRKNETJOBE    Work with Network Job Entries

WRKNETTBLE    Work with Network Table Entry

WRKNODL       Work with Node List

WRKNODLE      Work with Node List Entries

WRKNTBD       Work with NetBIOS Descriptions

WRKNWID       Work with Network Interfaces

WRKNWSALS     Work with NWS Aliases

WRKNWSD       Work with Network Servers

WRKNWSENR     Work with NWS User Enrollment

WRKNWSSSN     Work with NWS Sessions

WRKNWSSTG     Work with NWS Storage Spaces

WRKNWSSTS     Work with NWS Status

WRKOBJ        Work with Objects

WRKOBJLCK     Work with Object Locks

WRKOBJOWN     Work with Objects by Owner

WRKOBJPDM     Work with Objects Using PDM

WRKOBJPGP     Work Objects by Primary Group

WRKOPCACT     Work with OptiConnect Activity

WRKOPTDIR     Work with Optical Directories

WRKOPTF       Work with Optical Files

WRKOPTVOL     Work with Optical Volumes

WRKORDINF     Work with Order Information

WRKORDRQS     Work with Order Requests

WRKOUTQ       Work with Output Queue

WRKOUTQD      Work with OUTQ Description

WRKOVL        Work with Overlays

WRKPAGDFN     Work with Page Definitions

WRKPAGSEG     Work with Page Segments

WRKPARTPDM    Work with Parts Using PDM

WRKPCLTBLE    Work with Protocol Table Entry

WRKPFCST      Work with PF Constraints

WRKPFRCOL     Work with Pfr Collection

WRKPGM        Work with Programs

WRKPGMTBL     Work with Program Tables

WRKPNLGRP     Work with Panel Groups

WRKPRB        Work with Problem

WRKPRDINF     Work with Product Information

WRKPRJPDM     Work with Projects Using PDM

WRKPRTSTS     Work with Printing Status

WRKPSFCFG     Work with PSF Configuration

WRKQMFORM     Work with Query Mgmt Forms

WRKQMQRY      Work with Query Mgmt Queries

WRKQRY        Work With Queries

WRKQST        Work with Questions

WRKRDBDIRE    Work with RDB Directory Entry

WRKRDR        Work with Readers

WRKREGINF     Work with Registration Info

WRKRJESSN     Work with RJE Session

WRKRMTDFN     Work with Remote Definitions

WRKRPYLE      Work with Reply List Entries

WRKRTDCFG     Work with RouteD Configuration

WRKS36        Work with S/36 Configuration

WRKS36PGMA    Work with S/36 Program Attr

WRKS36PRCA    Work with S/36 Procedure Attr

WRKS36SRCA    Work with S/36 Source Attr

WRKSBMJOB     Work with Submitted Jobs

WRKSBS        Work with Subsystems

WRKSBSD       Work with Subsystem Desc

WRKSBSJOB     Work with Subsystem Jobs

WRKSCHIDX     Work with Search Indexes

WRKSCHIDXE    Work Search Index Entry

WRKSHRPOOL    Work with Shared Storage Pools

WRKSOC        Work with Sphere of Control

WRKSPADCT     Work with Spelling Aid Dict

WRKSPLF       Work with Spooled Files

WRKSPLFA      Work with Spooled File Attr

WRKSRVPGM     Work with Service Program

WRKSRVPVD     Work with Service Providers

WRKSRVTBLE    Work with Service Table Entry

WRKSSND       Work with Session Description

WRKSYSACT     Work with System Activity

WRKSYSSTS     Work with System Status

WRKSYSVAL     Work with System Value

WRKTAPCTG     Work with Tape Cartridge

WRKTBL        Work with Tables

WRKTCPPTP     Work with Point-to-Point TCPIP

WRKTCPSTS     Work with TCP/IP Network Sts

WRKTIE        Work with TIE

WRKUSRJOB     Work with User Jobs

WRKUSRPRF     Work with User Profiles

WRKUSRTBL     Work with User Tables

WRKWTR        Work with Writers

Godaddy Coupon Codes Save Big

THURSDAY, NOVEMBER 10, 2011

10 november 2011 godaddy source codes
Last check 10 Nov 2011 Thursday checked and verified manually*, 22 Godaddy promo code listed.
1-click the code (automaticalaly copies to your clipboard)
2-just Ctrl+V (paste) to code field in Go daddy.
Popular Codes:
…………
7.49$ .Com domain registration (not for Renewals)

*Better then other codes on registrations
……………..
7.95$ .Com RENEWALS–Save more then 35% —

Best for .com renewals
……………………
$7.49 .Net .Org .Biz

*Better then other codes on registrations–
………..
Save 20% on ALL hosting plans

………………………………………….
Web Hosting from just $1.99 per month for 3 months!

…………………….
Save more than 50% on Ssl certificates /12.99$ ssl certification

………………………………………………………
General Codes–You can save for ANY product on your order with this codes.
……………….
Save $1 on your order

……………………..
Save 10% off your order -No minumum-Works for Renewals also-

…………………………
Save 5$ off your order 30$ or more-May work for Renewals also-

………
Save 5$ off your order 30$ or more

…………..
Save 10$ off your order 50$ or more-may work for renewals also-

……………….
Save 10$ off your order 50$ or more

………
Save 15% off your order 75$ or more–For renewals also-

…………..
Save 25% off your order – no minumum

……….
Save 26% off your order

………….
Save 33% off your order!

…………….
Godaddy Domain Promo Codes
…………..
Free private registration!

Expires november 23 2011.
…………
Register or renew .COM and .NET domains and SAVE before prices go up January 15, 2012.

……………
$7.49 .Net .Org .Biz

*Better then other codes on registrations–
…….
7.95$ .Com RENEWALS–Save more then 35% —

Best for .com renewals
………………
7.49$ .Com domain registration (not for Renewals)

…………
7.49$ .com domain registrations

…………
3.49$ .Us domain registrations

3.69$ with icann fee.
………………..
Renew your .Mobi domains for 10.99$-save over 40% and .Tv domains

The is the best code for .mobi renewals.means over 40% savings.
…………….
OTHER PRODUCTS
………………………
Save $30.00 off all Reseller Plans!

………..
Godaddy Auction Discount-save more then 40%

………………..
This blog is a service of Godaddy Promo Codes
*gmt +3