Hey thanx for the help, I got it to work, i had to use the following code in the initialization statements of the category field in the problem open event map.
you have to use this statement in your email: "CATEGORY: example"
Code:
$axtype=type is $axces.target
if (index("axmail", evuser in $axces)>0) then $axtype=type in $axces.target
if (index("axmail", evuser in $axces)>0) then ($ax.action=denull(action in $axces.target);$axl=lng($ax.action))
if (index('axmail", evuser in $axces)>0) then for $axpos=1 to $axl do ($axt=$axpos in $ax.action;if $axt#"CATEGORY" then ($axtype=substr($axt, 10, lng($axt) - 9);$ax.action=delete($ax.action, $axpos);action in $axces.target=$ax.action))
if (index("axmail", evuser in $axces)>0) then category in $axces.target=$axtype
cleanup($axtype);cleanup($axt);cleanup($axpos);cleanup($axl)
cleanup($ax.action)
This code will work for any field you want but inorder to have it work you have to make sure that the map record you enter this code in has a higher sequence number than the action or action.update field map records.
I know it looks odd but it does work! :lol:
Bookmarks