Adds new records, groups, or items to an existing access descriptor.
| Type: | Optional statement |
| Applies to: | access descriptor |
| Interaction: | UPDATE statement |
is an index number that represents the item's place in the access descriptor. You can get the index number of an item by using the LIST statement described later in this section.
is the name of the IMS group, record, or item after which subsequent groups, records, or items are inserted. This field can also contain a quoted string.
proc access dbms=ims;
update adlib.custins.access;
list all db;
insert 0;
record=newfrec sg=newrecsg sl=400;
item=newfitem lv=3 dbf=$12. se=custfsti;
list all db;
run;