Dear All,
I'm using a fresh new otrs install:
PRODUCT = OTRS
VERSION = 5.0.3
BUILDDATE = Wed Nov 11 20:17:38 CET 2015
BUILDHOST = otrsbuild.otrs.com
I have to declare a new Article Type, I put this in Config.pm:
$Self->{'Ticket::Frontend::AgentTicketNote'}->{'ArticleTypes'} = {
'note-custom' => '1',
'note-external' => '1',
'note-internal' => '1',
'note-report' => '1'
};
But when I try to add a new Note, there is no note-custom option. I tried to put this to ZZZAuto.pm and ZZZAAuto.pm too, but the result is the same. The note-report is showing up, so that works.
What's am I wrong?
Thank's in advance
[SOLVED] Custom Article Type
Moderator: crythias
[SOLVED] Custom Article Type
Last edited by bzg on 23 May 2016, 10:03, edited 1 time in total.
Re: Custom Article Type
Hi,
what is in the article type table in the database? You have to add it if you want to use it.
Flo
what is in the article type table in the database? You have to add it if you want to use it.
Flo
OTRS 2025 SILVER (Prod)
OTRS 2025 auf Debian 12 (Test)
Znuny 7.x latest version testing auf Debian 12
-- Ich beantworte keine Forums-Fragen PN - No PN please
I won't answer to unfriendly users any more. A greeting and regards are just polite.
OTRS 2025 auf Debian 12 (Test)
Znuny 7.x latest version testing auf Debian 12
-- Ich beantworte keine Forums-Fragen PN - No PN please
I won't answer to unfriendly users any more. A greeting and regards are just polite.
Re: Custom Article Type
Great, thank's for idea, it works. I didn't found it in the developer guide.