The CEDA ADD command

Use the CEDA ADD command to add a group to a list on the CSD.

Syntax

Read syntax diagramSkip visual syntax diagramCEDAADdGroup( groupname)LISt( listname)After( groupname3)Before( groupname2)

Description

You can use the ADD command from a DISPLAY screen.

Options

After(groupname3)
You can use this to control the placing of the new group name. If you do not specify BEFORE or AFTER, the group name is added at the end of the list.
Before(groupname2)
You can use this to control the placing of the new group name. If you do not specify BEFORE or AFTER, the group name is added at the end of the list.
Group(groupname1)
specifies the name of the group to be added. The name must not already exist in the list. A generic group name is not accepted. If you do not specify a group, the current group name is added.
LISt(listname)
specifies the name of the list to which the group is to be added. If the list does not already exist, a new one is created. If LIST is not specified, the group name is added to the current list if there is one. A generic list name is not accepted.
Acceptable characters:
A-Z 0-9 $ @ #
Any lowercase characters that you enter are converted to uppercase.

Examples

  1. To create a list LA01 by adding a group to it:
    ADD GROUP(GA001) LIST(LA01)
  2. To add another group to list LA01, without specifying where:
    ADD GROUP(GA002) LIST(LA01)
    LA01 now looks like this:
    • GA001
    • GA002
  3. To add another group at the beginning of the list:
    ADD GROUP(GA003) LIST(LA01) BEFORE(GA001)
    and another group between GA001 and GA002:
    ADD GROUP(GA004) LIST(LA01) AFTER(GA001)
    LA01 now looks like this:
    • GA003
    • GA001
    • GA004
    • GA002