[ic] Signio.pm,v 2.6, Unrecognized transaction for delayed capture

Farshad Farzan interchange-users@icdevgroup.org
Tue Feb 18 22:24:01 2003


I am using PayflowPro,Verisign , Signio.pm,v 2.6 with IC 4.9.6

I was not able to build the PFProAPI modules, so , using the binary
versions of the pfpro and pfpro-file.

When trying to do delayed capture sales,  the Authorize portion of the
checkout works fine with no errors. However, after going to Admin and
update the order after shipping all lines, comes back with error in red:

mv_credit_card_valid: Unrecognized transaction: 
settle_transaction: Order ID ##### settle operation failed. Reason:
Unrecognized transaction:

After checking into the Signio.pm and putting debugs , found out that
$transtype is returning settle_prior, and settle_prior is not the
type-map...
my %type_map = (
        qw/
                        sale          S
                        auth          A
                        authorize     A
                        void          V
				settle        D		*should be
settle_ prior*
                        credit        C
                        mauthcapture  S
                        mauthonly     A
                        mauthdelay    D
                        mauthreturn   C
                        S             S
                        C             C
                        D             D
                        V             V
                        A             A
        /
    );

Once, I changed the settle to settle_prior , it worked all fine..!!!!!!!