0% found this document useful (0 votes)
2K views

Oracle Applications - Query To Get The Customer Name, Account Number, Transaction Number, Receipt and Amount Details

This document provides an Oracle SQL query to retrieve a customer's name, account number, transaction number, receipt number, transaction date, receipt date, and amount from various Oracle Applications tables. The query joins tables such as HZ_PARTIES, HZ_CUST_ACCOUNTS, RA_CUSTOMER_TRX_ALL, AR_CASH_RECEIPTS_ALL, and AR_RECEIVABLE_APPLICATIONS_ALL to retrieve the specified fields where the application type is 'CASH'.

Uploaded by

William Velasco
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views

Oracle Applications - Query To Get The Customer Name, Account Number, Transaction Number, Receipt and Amount Details

This document provides an Oracle SQL query to retrieve a customer's name, account number, transaction number, receipt number, transaction date, receipt date, and amount from various Oracle Applications tables. The query joins tables such as HZ_PARTIES, HZ_CUST_ACCOUNTS, RA_CUSTOMER_TRX_ALL, AR_CASH_RECEIPTS_ALL, and AR_RECEIVABLE_APPLICATIONS_ALL to retrieve the specified fields where the application type is 'CASH'.

Uploaded by

William Velasco
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

22/06/2021 Oracle Applications: Query to get the Customer Name, Account number, Transaction number , Receipt and Amount

Receipt and Amount details

mais

Home AP AR GL INV PO OM HR PA FAQS SCRIPTS PL-SQL TECH OAF DOW

If you are facing any issues while copying the Code/Script or any issues with Posts, Please send a mail to [email protected] or message me at @apps88 in telegram.

SUNDAY, MARCH 20, 2016

Query to get the Customer Name, Account number, Transaction number , Receipt and Amount details

SELECT
  hca.account_number
,
  hp.party_name
,
  rcta.trx_number
,
  acra.receipt_number
,
  RCTA.TRX_DATE
,
  ACRA.CREATION_DATE
,
  acra.amount
FROM
HZ_PARTIES HP ,
HZ_CUST_ACCOUNTS HCA ,
RA_CUSTOMER_TRX_ALL RCTA ,
ar_cash_receipts_all acra ,
ar_receivable_applications_all
aaa
WHERE
AAA.APPLICATION_TYPE =
'CASH'
AND
HP.PARTY_ID             
= HCA.PARTY_ID
and
RCTA.SOLD_TO_CUSTOMER_ID =
HCA.CUST_ACCOUNT_ID
AND
AAA.CASH_RECEIPT_ID =
ACRA.CASH_RECEIPT_ID
AND
AAA.APPLIED_CUSTOMER_TRX_ID =
RCTA.CUSTOMER_TRX_ID

and acra.receipt_number      ='453753';

Best Blogger Gadgets

Posted by
Raju Chinthapatla
at
6:36:00 PM

Labels:
AR,
SCRIPTS

No comments:

Post a Comment

Enter your comment...

Comment as:
wvelascorj@gm Sign out

Publish Preview
Notify m

Newer Post Home Older P

Subscribe to:
Post Comments (Atom)

oracleapps88.blogspot.com/2016/03/query-to-get-customer-name-account.html 1/3
22/06/2021 Oracle Applications: Query to get the Customer Name, Account number, Transaction number , Receipt and Amount details

oracleapps88.blogspot.com/2016/03/query-to-get-customer-name-account.html 2/3
22/06/2021 Oracle Applications: Query to get the Customer Name, Account number, Transaction number , Receipt and Amount details

Email : [email protected]. Picture Window theme. Theme images by konradlew. Powered by Blogger.

Get Flower Effect

oracleapps88.blogspot.com/2016/03/query-to-get-customer-name-account.html 3/3

You might also like