> ## Documentation Index
> Fetch the complete documentation index at: https://notevil.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# CAPLfunctionIso11783ILPDDObjectPoolDelete

[Open topic with navigation](../../../../../../CANoeDEFamily.htm#Topics/CAPLFunctions/ISO11783/ISOInteractionLayer/Functions/CAPLfunctionIso11783ILPDDObjectPoolDelete.md)

[CAPL Functions](../../../CAPLfunctions.md) » [ISO11783](../../CAPLfunctionsISO11783Overview.md) » [ISO11783 Interaction Layer](../CAPLfunctionsISOILOverview.md) » Iso11783IL\_PDDObjectPoolDelete

# Iso11783IL\_PDDObjectPoolDelete

[Valid for](../../../../Shared/FeatureAvailability.md):  CANoe DE • CANoe4SW DE

## Function Syntax

* `long Iso11783IL_PDDObjectPoolDelete(); // form 1`
* `long Iso11783IL_PDDObjectPoolDelete(dbNode implement); // form 2`

## Description

The function deletes the current device description object pool and sends an **Object-pool Delete** message to the Task Controller.

Contrary to [Iso11783IL\_PDDDelete](CAPLfunctionIso11783ILpdddelete.md) the connection to the Task Controller is not removed.

## Parameters

* **implement**: Simulation node to apply the function.

## Return Values

[error code](../../../CAPLfunctionsISOj1939ErrorCodes.md)

## Example

```c theme={null}
if (Iso11783IL_PDDObjectPoolDelete() == 0) {
  write("Object pool is deleted and Object-Pool delete message is sent successfully");
}
```
