UDF PO ROI to AP_HistoryHeader & AP_TransactionPaymentHistory

SOLVED

I created a Date UDF in PO Receipt of Invoice. it populates correctly. I'm trying to get this data into the AP_InvoiceHistoryHeader & AP_TransactionPaymentHistory.

I've tried several links and can't seem to get the correct combination.

Can someone tell me from PO_ReceiptHeader how I walk it through to these other 2 tables?

Parents
  • +1
    verified answer

    First create a UDF in this intermediary table:

    AP_InvoiceHeaderPosting
    Source = Business Object
    Business Object = PO_ReceiptRegister_upd
    Data Source = PO_ReceiptHeader
    Column = your UDF

    Then the UDF can go from the intermediary table to the destination tables:

    AP_TransactionPaymentHistory
    Source= Business Object
    Business Object = PO_ReceiptRegister_upd
    Data Source = AP_InvoiceHeaderPosting
    Column = your UDF

    AP_InvoiceHistoryHeader
    Source= Business Object
    Business Object = PO_ReceiptRegister_upd
    Data Source = AP_InvoiceHeaderPosting
    Column = your UDF

  • 0 in reply to Natasha Chang

    That did it. Thanks!

Reply Children