Re: [Arsperl-users] HELP! How to make a Remedy incident management ticket - why does it fail?
Brought to you by:
jeffmurphy
|
From: <jar...@gm...> - 2007-07-17 20:21:08
|
If you'r using Change mgmt in ITSM7 I do not recomend to fetch field
tables. The Change mgmt form contain more than 1200 fields, so it
takes forever to fetch them.
Use the CHG:Change_Interface form, or even better, use the fieldid.
--
Jarl
On 7/17/07, Jeff Murphy <jcm...@je...> wrote:
> Van De Kerk, David - PHX wrote:
> >
> >
>
> >
> > The code I am trying to use is:
> >
> > my $schema = "Incident Management";
> >
>
> $f = ars_GetFieldTable($c, $schema);
>
> > $entry_id = ars_CreateEntry($c,
> > $schema,
> > $f{'Notification Text'}, "Demo notification Text create ticket from Perl",
> > $f{'Incident Description'}, "Demo description of Perl item",
> > $f{'Category'},"Applications",
> > $f{'Type'}, "Interface",
> > $f{'Affected Item +'}, "Claims Backend Processing",
> > $f{'Assignee Group +'}, "CHWE-Integration Svs EDI",
> > $f{'Account Affected +'}, "Catholic Healthcare West",
> > $f{'Customer Name +'}, "David van De Kerk",
> > $f{'Source'}, "Phone"
> > )
> > ||
> >
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by DB2 Express
> Download DB2 Express C - the FREE version of DB2 express and take
> control of your XML. No limits. Just data. Click to get it now.
> http://sourceforge.net/powerbar/db2/
> _______________________________________________
> Arsperl-users mailing list
> Ars...@ar...
> https://lists.sourceforge.net/lists/listinfo/arsperl-users
>
|