AMT Help Files
Home Development Command Translation CICS Commands INQUIRE ASSOCIATION LIST

INQUIRE ASSOCIATION LIST

COBOL Java
EXEC CICS INQUIRE ASSOCIATION LIST ibmCics.inquireAssociationList

Syntax

ibmCics.inquireAssociationList(new InquireAssociationListOptions()
  .setPointer(<SetPointer>)
  [.listSize(<ListSize>)]
  [.distinguishedName(<DistinguishedName>)]
  [.distinguishedNameLength(<DistinguishedNameLength>)]
  [.realmName(<RealmName>)]
  [.realmNameLength(<RealmNameLength>)]
  [.userCorrelationData(<UserCorrelationData>)]
  [.noHandle(true)]
);

Parameter(s)

<SetPointer>
The address of a list of tasks filtered by the DistinguishedName, RealmName and UserCorrelationData filters.
<ListSize>
Return the number of tasks associated with the SetPointer address.
<DistinguishedName>
Filter for distinguished names.
<DistinguishedNameLength>
Length of the DistinguishedName option.
<RealmName>
The realm name that should be filtered.
<RealmNameLength>
Length of the RealmName option.
<UserCorrelationData>
Filter for user correlation data.
noHandle
Optional Boolean. If set to true, exceptions created by this command will be ignored.

Example(s)

COBOL Java
EXEC CICS
    INQUIRE ASSOCIATION LIST LISTSIZE (WS-LISTSIZE)
        DNAME (WS-NAME)
        DNAMELEN (WS-NAMELENGTH)
        SET (WS-POINTER)
END-EXEC.
                
ibmCics.inquireAssociationList(new InquireAssociationListOptions()
  .setPointer(locDef.ws_Pointer)
  .listSize(locDef.ws_Listsize)
  .distinguishedName(locDef.ws_Name)
  .distinguishedNameLength(locDef.ws_Namelength)
);
                

Contents

 Go to top