SAS Institute. The Power to Know

SAS(R) 9.2 Integration Technologies: Directory Services Reference

Previous Page | Next Page

LDAP CALL Routine Interface

LDAPS_DELETE



Deletes an entry from an LDAP directory
Syntax
Arguments
Example

Syntax

CALL LDAPS_DELETE(lHandle, entryName, rc);

Arguments

lHandle

specifies the connection handle that is returned by the LDAPS_OPEN CALL routine.

Type: Numeric
Direction: Input
entryName

names the entry that is to be deleted from the LDAP directory.

Type: Character
Direction: Input
rc

receives a return code that indicates success or failure.

Type: Numeric
Direction: Output

Example

The following example deletes an entry from an LDAP directory.

dn = "cn=alpair02.unx.com,o=Alphalite Airways,c=US";
rc=0;
call ldaps_delete(lHandle, entryName, rc);

Previous Page | Next Page | Top of Page