This is the blog dedicated to Oracle Applications. Here I will be posting information on Oracle Application SCM related topics. Please remember to visit site regularly as it will be updated quite often and do remember to encourage me by posting your valuable comments.
Training
For Online SCM Functional Training Please Contact - Gmail # rishitechnologies9@gmail.com Cell # 9071883639
Friday, August 26, 2011
R12 - AP Auto Invoice Creation
Hi friends,
Today we will see how to allow system to create invoice automatically upon reciept.
1. By Using Self Billing :
By Using selg Billing tab in supplier form, we can create standard invoice upon receipt.
Query with supplier name . Ex : Supplier Name : Consolidated Supplies
After query with supplier, clisk on purchasing --> Self Billing Tab
Select Pay On = Reciept -- This means upon completion of reciepts , system automatically create the STANDARD Invoice.
System will create standard invoice automaticaly and invoice number generation is depends on the value entered in Profile : PO: ERS Invoice Number Prefix
thx to share :)
ReplyDeleteSELECT ph.segment1 PO_NUMBER,ai.invoice_num,ai.source, ai.invoice_type_lookup_code,ai.description,ai.invoice_amount,rh.receipt_num
ReplyDeleteFROM
po_headers_all ph ,
po_lines_all pl,
po_distributions_all pd,
rcv_shipment_headers rh,
rcv_shipment_lines rl,
ap_invoices_all ai,
ap_invoice_distributions_all aid
WHERE ai.invoice_id = aid.invoice_id
AND aid.po_distribution_id = pd.po_distribution_id
AND pd.po_line_id = pl.po_line_id
AND pl.po_header_id = ph.po_header_id
AND rl.po_header_id = ph.po_header_id
AND rh.shipment_header_id = rl.shipment_header_id
AND rl.po_distribution_id = pd.po_distribution_id
--AND ph.segment1 = '2656';