Saturday 27 July 2019

Vertex XML Request and Response Query for AP, AR, PO and OM

Vertex Query for Request and Response XML file extract for Payables Invoice (AP).

SELECT *
FROM apps.VERTEX_OIC_DEBUG_XML
where request_id in (
select distinct vt.request_id
from   apps.ap_invoices_all ap
       ,apps.vertex_txn_tax_resp vt
where  1=1
and    ap.invoice_id= vt.transaction_id
and    ap.invoice_num =:P_Invoice_Num);


Vertex Query for Request and Response XML file extract for Receivables Invoice (AR).

SELECT *
FROM apps.VERTEX_OIC_DEBUG_XML
where request_id in (
select distinct vt.request_id
from   apps.ra_customer_trx_all ar
       ,apps.vertex_txn_tax_resp vt
where  1=1
and    ar.customer_trx_id= vt.transaction_id
and    ar.trx_number = :P_Trx_Number);

Vertex Query for Request and Response XML file extract for Purchase Order (PO).

SELECT *
FROM apps.VERTEX_OIC_DEBUG_XML
where request_id in (
select distinct vt.request_id
from   apps.po_headers_all po
       ,apps.vertex_txn_tax_resp vt
where  1=1
and    po.po_header_id= vt.transaction_id
and    Po.Segment1= :P_Po_Number);

Vertex Query for Request and Response XML file extract for Sales Order (OM).

SELECT *
FROM apps.VERTEX_OIC_DEBUG_XML
where request_id in (
select distinct vt.request_id
from   apps.oe_order_headers_all ooh
       ,apps.vertex_txn_tax_resp vt
where  1=1
and    ooh.header_id = vt.transaction_id
and    ooh.order_number= :P_Order_Number;

2 comments:

  1. “Benjamin Briel Lee was very professional at all times, keeping me aware of everything that was happening, If I had any questions he was always available to answer. This was my first home purchase, I didn’t know much about the loan process, he made it very easy to understand the things I had questions about. I really enjoyed working with him.”  
    He's a loan officer working with a group of investor's who are willing to fund any project or loan you any amount with a very low interest.Contact Benjamin Briel Lee E-Mail: 247officedept@gmail.com  Whats-App Number: +1-989-394-3740.

    ReplyDelete
  2. Hi, we recently migrated from vertex 8 to 9, it seems one of the tags in the xml is causing the issue and we need to remove it, would you know where can we do this?

    ReplyDelete

How to resolve issue for BIP RTF template XML tags showing value as <?ref: 0000xx?>

 How to resolve issue for BIP RTF template XML tags showing value as <?ref: 0000xx?>  Sometime these xml data tags automatically chang...