on 2023 Jan 11 8:11 AM
Hi,
Check below for start:
Select T2.DocNum as 'AR Invoice Number', T0.DocNum as 'Incoming Payment Number'
from ORCT T0 INNER JOIN RCT2 T1 on T1.DocNum = T0.DocNum
INNER JOIN OINV T2 on T2.Transid = T1.Doctransid and T2.DocEntry = T1.BaseAbs
ORDER BY T0.DocNum
Kr,
Jitin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you should join the table and can find.
select * from ORCT
inner join RCT2 on ORCT.DocEntry=RCT2.DocNum
where ORCT.DocEntry=4762
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Han,
try the RTC2, here you find the DocEntry and the InvType
regards Lothar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
103 | |
9 | |
8 | |
6 | |
5 | |
5 | |
4 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.