Pages

OracleEBSpro is purely for knowledge sharing and learning purpose, with the main focus on Oracle E-Business Suite Product and other related Oracle Technologies.

I'm NOT responsible for any damages in whatever form caused by the usage of the content of this blog.

I share my Oracle knowledge through this blog. All my posts in this blog are based on my experience, reading oracle websites, books, forums and other blogs. I invite people to read and suggest ways to improve this blog.


Saturday, April 27, 2013

R12 AR Tables


------------------------------------Vision Instance---------------------------------------------------------
-------------CUSTOMER--------------------------------------
select *
from ra_customers_interface_all;

select *
from ra_customer_profiles_interface;

select *
from hz_cust_accounts
where account_name='Business World';

select *
from hz_cust_acct_sites_all
where cust_account_id=3347
and org_id=204;

select *
from hz_cust_site_uses_all hcsua
where hcsua.site_use_id=1000;
where hcsua.cust_acct_site_id=3634;

select *
from ar_customers
where customer_name='World of Business';
-----------------TRANSACTION----------------------------------
select *
from RA_INTERFACE_LINES_ALL;
RA_INTERFACE_SALESCREDITS
RA_INTERFACE_DISTRIBUTIONS
RA_INTERFACE_ERRORS (details about the failed records)
/

select *
from RA_CUSTOMER_TRX_ALL
where printing_original_date is not null
and sold_to_customer_id=1000
and trx_number=10000069 ;

select *
from RA_CUSTOMER_TRX_LINES_ALL
where customer_trx_id=1600;

select *
from Ra_Cust_Trx_Line_Gl_Dist_All
where customer_trx_line_id in (1802);

select *
from RA_CUST_TRX_TYPES_ALL;

select *
from XLA_DISTRIBUTION_LINKS xdl
where xdl.source_distribution_type = 'RA_CUST_TRX_LINE_GL_DIST_ALL'
and xdl.source_distribution_id_num_1=1314;


------------------RECEIPT---------------------------------

select *
from ar_payment_schedules_all
where customer_trx_id=1600;

select *
from ar_cash_receipts_all;

select *
from AR_RECEIVABLE_APPLICATIONS_ALL
where applied_customer_trx_id=1600;
and payment_schedule_id-1061;

select *
from ar_adjustments_all;

No comments:

Post a Comment