> ## 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.

# CAPLfunctionIso11783MakeName

# Iso11783MakeName

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

## Function Syntax

```c theme={null}
void Iso11783MakeName( char[] retDeviceName, long selfConfiguring, long industryGroup, long deviceClassInstance, long deviceClass, long function, long functionInstance, long ECUInstance, long manufacturerCode, long identityNumber );
```

## Description

This function creates a Iso11783 device name.

The parameter `retDeviceName` must be an array with size 8. It will be filled with the device name.

## Parameters

* **retDeviceName**: Device name is copied in this buffer (must be 8 bytes)

## Return Values

—

## Example

```c theme={null}
char name[8];
Iso11783MakeName( name, 1, 2, 3, 4, 5, 6, 7, 8, 9);
```
