cancel
Showing results for 
Search instead for 
Did you mean: 

Which Object used to get OutgoingPayments of A/P Invoices?

Former Member
0 Kudos

Hi friends,

I can get the Incoming Payments using Payments Business Objcet with object of type oIncomingPayments.

Payments IncomingPayment = (Payments)comp.GetBusinessObject(BoObjectTypes.oIncomingPayments);

But i can't get the OutgoingPayments for A/P Invoices.

<b>which object can i used to get Outgoing Payments Details</b>.

Thanks in Advance

regards

Sooriyakala.P

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Sooriya,

The same object is used, but you should specify the DocType property value. Have a look at the BoRcptTypes enumeration.

Regards,

Ibai Peñ

Former Member
0 Kudos

Hi Sooriya,

We use the following object to generate outgoing payments:

Payments OutgoingPayment = (Payments)comp.GetBusinessObject(BoObjectTypes.<b>oVendorPayments</b>);

Hope it helps,

Adele

Answers (0)