creating cross module joins
-
- Posts: 9
- Joined: Tue Jul 07, 2009 10:39 am
- Location: Pakistan
creating cross module joins
Hello friends
I just want to know that what is the link between AR and GL and AP and GL
to get the party wise entries for a particular period. i know how to join these modules to get GL code wise entries but i want to know how to join to get party wise entries.
I just want to know that what is the link between AR and GL and AP and GL
to get the party wise entries for a particular period. i know how to join these modules to get GL code wise entries but i want to know how to join to get party wise entries.
-
- Posts: 9
- Joined: Tue Jul 07, 2009 10:39 am
- Location: Pakistan
-
- Posts: 9
- Joined: Tue Jul 07, 2009 10:39 am
- Location: Pakistan
-
- Posts: 9
- Joined: Tue Jul 07, 2009 10:39 am
- Location: Pakistan
Hello.
Supplier balances are kept on AP. You you want to knoe the balance of a supplier in a certain date enter the following query:
Octavio
Supplier balances are kept on AP. You you want to knoe the balance of a supplier in a certain date enter the following query:
Code: Select all
SELECT
v.vendor_name "Vendor Name", cc.segment2 "Gl Account", v.segment1 "Vendor Num",
SUM (alb.accounted_cr) - SUM (alb.accounted_dr) remaining_amount
FROM ap_liability_balance alb, po_vendors v, gl_code_combinations cc
WHERE trunc(accounting_date) <= '31-DEC-08'
AND alb.ORG_ID = 152 and 1=1
and cc.code_combination_id = alb.code_combination_id
and v.vendor_id = alb.vendor_id
GROUP BY v.vendor_name, v.segment1, cc.segment2
HAVING SUM (accounted_cr) <> SUM (accounted_dr)
Octavio
-
- Posts: 9
- Joined: Tue Jul 07, 2009 10:39 am
- Location: Pakistan
-
- Posts: 9
- Joined: Tue Jul 07, 2009 10:39 am
- Location: Pakistan
-
- Posts: 9
- Joined: Tue Jul 07, 2009 10:39 am
- Location: Pakistan
Who is online
Users browsing this forum: Ahrefs [Bot] and 2 guests