LookupListRemoveEntryWithClientID

Note: This function is available for use in sub-tenancy environments only.

Syntax:LookupListRemoveEntryWithClientID(TableName, Key, ClientID)

Arguments:

  • TableName is the Lookup List table name.
  • Key is the key to look up in the table.
  • ClientID is the client ID from the transaction data

Return Type: Integer

1: If it fails.

0: If it is successful.

-1: If there are more than 32 add, update, or remove operations per transaction.

-2: If the record size exceeds the maximum record size (currently 1024 characters).

Description: Removes a List lookup entry based on ClientID from the List table.

Examples:
retCode is an integer;
Key is a string initially CRTRAN24.pan;
ClientID is a string initially CRTRAN24.clientIdFromHeader;

retCode = LookupListRemoveEntryWithClientID(SYSTEM_RESTRICT, Key, ClientID);
  • www.fico.com