brain/04 Ressourcen/IT/Custom Field nicht zugewies...

28 lines
729 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
tags:
- upnote-import
---
# Custom Field nicht zugewiesen
Problem:
Ticketsystem zeit ein Custom field, wie die Meeting-Referenz nicht an.
Form-ID des Feldes aus Tabelle ost_form_field sichen
für Meeting Referenz ist das z.B. 119, zugehörife Form-ID ist 41
Tabell Form-Entry mit Object-ID = Ticket ID suchen
Eintrag einfügen:
![](https://notes.straso.com/api/file_storage/7f2dc6d8-e16f-49eb-a4c6-01c7a87e5718/v1/blob/f24d3e32%2D3b92%2D44dd%2Db5cd%2D7fb866a767d3/6k5oVSldJC-TfahVmuY8f7J0TmOtxUj-_LWhgB6a8jc=.png)<br>
SQL assign\_meetings\_selection:
```sql
insert into osticket_202411.ost_form_entry (form_id, object_id, object_type, sort, created, updated)
values (41, @@TICKETID@@, 'T', 2, now(), now());
```