<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: PO number is not being displayed in any of the transaction's detailed page. in Integration and Testing</title>
    <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33269#M17792</link>
    <description>&lt;P&gt;We got the problem, it was solved. Thanks for your support.&lt;/P&gt;</description>
    <pubDate>Thu, 28 Feb 2013 09:05:33 GMT</pubDate>
    <dc:creator>sriharshak12</dc:creator>
    <dc:date>2013-02-28T09:05:33Z</dc:date>
    <item>
      <title>PO number is not being displayed in any of the transaction's detailed page.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33197#M17724</link>
      <description>&lt;P&gt;We are using &lt;STRONG&gt;c# AIM method&lt;/STRONG&gt; for our website's payment integration to authorize.net. We have an issue with Purchase order number in authorize.net. PO number is not being displayed in any of the transaction's detailed page.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Following is the variable assignment , where both are strings&lt;BR /&gt;&lt;STRONG&gt;data.PoNum = SessionManager.CurrentOrder.PurchaseOrderNumber;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If we make an assignment like&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data.PoNum = "12345" ;&amp;nbsp; -- &amp;nbsp; This is being shown in transaction detail page but when we are sending dynamic varaibles , those are not being shown.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;We have checked by printing po number to a text file at our end and we can confirm that we are successfully sending PO number to authorize.net Server. Please suggest us a possible solution for this issue .&lt;/P&gt;</description>
      <pubDate>Mon, 25 Feb 2013 17:46:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33197#M17724</guid>
      <dc:creator>sriharshak12</dc:creator>
      <dc:date>2013-02-25T17:46:01Z</dc:date>
    </item>
    <item>
      <title>Re: PO number is not being displayed in any of the transaction's detailed page.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33201#M17727</link>
      <description>&lt;P&gt;So this works&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data.PoNum = "12345" ;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;but this didn't&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data.PoNum = SessionManager.CurrentOrder.PurchaseOrderNumber;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Since it is AIM, can you log the request to authorize.net just before it send?&lt;/P&gt;</description>
      <pubDate>Mon, 25 Feb 2013 18:56:35 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33201#M17727</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-02-25T18:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: PO number is not being displayed in any of the transaction's detailed page.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33224#M17750</link>
      <description>&lt;P&gt;Hi Ranor,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First of all , Thanks for responding to my issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Coming to your queustion, Yes , we are able to log the value of both &lt;STRONG&gt;data.PoNum&lt;/STRONG&gt; and&amp;nbsp;&lt;STRONG&gt;SessionManager.CurrentOrder.PurchaseOrderNumber &lt;/STRONG&gt;just before we send to the authorize.net.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the detailed code :&amp;nbsp;&lt;/P&gt;&lt;PRE&gt; private AuthorizeNet.GatewayRequest GetGateWayRequestData(PaymentCreditCard paymentCreditCard)
        {
            CreditCardInfo paymentInfo = paymentCreditCard.PaymentInfo as CreditCardInfo;
            if (paymentInfo == null)
            {
                throw new BusinessException("InvalidPaymentInfoTypeExpectedTypeIsCreditCardInfo");
            }
            AuthorizeNetRequest data = new AuthorizeNetRequest();
            string address = paymentCreditCard.BillingAddress.AddressLine1 + " " + paymentCreditCard.BillingAddress.AddressLine2;
            data.City = paymentCreditCard.BillingAddress.City;
            data.FirstName = this.NameOnCardToFirstName(paymentInfo.NameOnCard);
            data.LastName = this.NameOnCardToLastName(paymentInfo.NameOnCard);
            data.State = paymentCreditCard.BillingAddress.State.StateCode;
            data.Address = address;
            data.Zip = paymentCreditCard.BillingAddress.Zip;
            data.CardNum = CommerceUtility.Decrypt(paymentInfo.CardNumber);
            data.CardCode = paymentInfo.CVV.ToString();
            data.ExpDate = paymentInfo.ExpirationMonth.ToString() + paymentInfo.ExpirationYear.ToString();
           
            try
            {
                data.Tax = SessionManager.CurrentOrder.TotalTax.ToString("C");
                data.PoNum = SessionManager.CurrentOrder.PurchaseOrderNumber;                
                data.TaxExempt = "Y";

                string[] lines = { data.Tax, data.PoNum, data.TaxExempt, SessionManager.CurrentOrder.PurchaseOrderNumber };
                System.IO.File.WriteAllLines(@"D:\Development\CMSFrontEndSite\bin\WriteLines.txt", lines);
            }
            catch (Exception ex)
            {
                string[] lines = { "error","exception" };
                System.IO.File.WriteAllLines(@"D:\Development\CMSFrontEndSite\bin\WriteLines.txt", lines);
            }
            return data;
        }&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2013 04:32:17 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33224#M17750</guid>
      <dc:creator>sriharshak12</dc:creator>
      <dc:date>2013-02-26T04:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: PO number is not being displayed in any of the transaction's detailed page.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33229#M17755</link>
      <description>&lt;P&gt;that is to build the data, what about the request itself? Can you log just before it added the cardnum, cardcode, expdate on the request?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2013 12:24:11 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33229#M17755</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-02-26T12:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: PO number is not being displayed in any of the transaction's detailed page.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33237#M17763</link>
      <description>&lt;P&gt;Hello Raynor ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SessionManager.CurrentOrder.PurchaseOrderNumber object is live and is maintaining the value accross the full cycle . We confirm it by below example&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;E x: If we assign &lt;STRONG&gt;data.Tax = SessionManager.CurrentOrder.PurchaseOrderNumber; ,&lt;/STRONG&gt; PO number is being shown perfectly over there in tax field .&lt;BR /&gt;&amp;nbsp;but if i assign the same as &lt;STRONG&gt;data.PoNumber = SessionManager.CurrentOrder.PurchaseOrderNumber;&lt;/STRONG&gt; it is not showing&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So , PO number is being sent properly to authorize.net&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me make it clear on this issue.&lt;/P&gt;&lt;P&gt;We are using iapps E-Commerce management Tool for this site and here is the process&lt;/P&gt;&lt;P&gt;1. User Logs in site&lt;/P&gt;&lt;P&gt;2. Add items to cart&lt;/P&gt;&lt;P&gt;3. Proceed to checkout page --&amp;gt; Here shipping address will be provided&lt;/P&gt;&lt;P&gt;4. Payment page --&amp;gt; Here Credit card details and billing address will be provided . With those details , a credit card object will be created .&lt;/P&gt;&lt;P&gt;5. Shipping method will be selected and payment amount will be updated in the creditcard object created&amp;nbsp; in step :4&lt;/P&gt;&lt;P&gt;6. On click on "Place Order" button , this Credit card object is being sent to the previous code attached.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2013 15:24:52 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33237#M17763</guid>
      <dc:creator>sriharshak12</dc:creator>
      <dc:date>2013-02-26T15:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: PO number is not being displayed in any of the transaction's detailed page.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33238#M17764</link>
      <description>&lt;P&gt;but you said&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data.PoNum = "12345";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;works&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2013 16:05:47 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33238#M17764</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-02-26T16:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: PO number is not being displayed in any of the transaction's detailed page.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33239#M17765</link>
      <description>&lt;P&gt;Yes, even we made that trail as well&lt;/P&gt;&lt;P&gt;Both attempts are successful&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2013 16:17:28 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33239#M17765</guid>
      <dc:creator>sriharshak12</dc:creator>
      <dc:date>2013-02-26T16:17:28Z</dc:date>
    </item>
    <item>
      <title>Re: PO number is not being displayed in any of the transaction's detailed page.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33240#M17766</link>
      <description>&lt;P&gt;That why I didn't see the problem in your&lt;/P&gt;&lt;PRE&gt;private AuthorizeNet.GatewayRequest GetGateWayRequestData(PaymentCreditCard paymentCreditCard)&lt;/PRE&gt;&lt;P&gt;because if you IN that method just replace&lt;/P&gt;&lt;PRE&gt;data.PoNum = SessionManager.CurrentOrder.PurchaseOrderNumber;  &lt;/PRE&gt;&lt;P&gt;with&lt;/P&gt;&lt;PRE&gt;data.PoNum = "12345";  &lt;/PRE&gt;&lt;P&gt;and it would work, that is something else because it mean authorize.net could get the value, which mean somehow it didn't get pass correctly. And that why you need to log the request as it is calling authorize.net.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2013 16:41:09 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33240#M17766</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-02-26T16:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: PO number is not being displayed in any of the transaction's detailed page.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33242#M17768</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please clear about your point&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt; " you need to log the request as it is calling authorize.net. " .&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;do you mean to ask us to log each and every detail of &lt;STRONG&gt;data&lt;/STRONG&gt; object before sending it to authorize.net...&lt;EM&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Among all the points, if there is a possiblity , can we call you or can we go with a chat session with you.&lt;/P&gt;&lt;P&gt;i hope that will quickly solve the problem .&lt;/P&gt;&lt;P&gt;If it is ok with you, please provide us your phone number or chat Id (Skype , Gmail any one)&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2013 17:30:01 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33242#M17768</guid>
      <dc:creator>sriharshak12</dc:creator>
      <dc:date>2013-02-26T17:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: PO number is not being displayed in any of the transaction's detailed page.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33243#M17769</link>
      <description>&lt;P&gt;Please clear about your point&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt; " you need to log the request as it is calling authorize.net. " .&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;do you do something like&lt;/P&gt;&lt;PRE&gt;HttpWebRequest objRequest = (HttpWebRequest)WebRequest.Create(post_url);
objRequest.Method = "POST";
objRequest.ContentLength = post_string.Length;
objRequest.ContentType = "application/x-www-form-urlencoded";

// post data is sent as a stream
StreamWriter myWriter  = null;
myWriter = new StreamWriter(objRequest.GetRequestStream());
myWriter.Write(post_string);
myWriter.Close();&lt;/PRE&gt;&lt;P&gt;Where the post string is all the fields. Either the log the whole post_string or just get the ponumber from that string.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2013 17:46:04 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33243#M17769</guid>
      <dc:creator>RaynorC1emen7</dc:creator>
      <dc:date>2013-02-26T17:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: PO number is not being displayed in any of the transaction's detailed page.</title>
      <link>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33269#M17792</link>
      <description>&lt;P&gt;We got the problem, it was solved. Thanks for your support.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Feb 2013 09:05:33 GMT</pubDate>
      <guid>https://community.developer.cybersource.com/t5/Integration-and-Testing/PO-number-is-not-being-displayed-in-any-of-the-transaction-s/m-p/33269#M17792</guid>
      <dc:creator>sriharshak12</dc:creator>
      <dc:date>2013-02-28T09:05:33Z</dc:date>
    </item>
  </channel>
</rss>

