I have the following SQL query in VB6
SELECT A.GLREF, A.GLDESC, A.AMTEXTNDHC,
B.GLBATCH, B.GLENTRY
FROM APPJD AS A INNER JOIN APPJH AS B ON
A.POSTSEQNCE = B.POSTSEQNCE
AND A.TYPEBTCH = B.TYPEBTCH
AND A.CNTBTCH = B.CNTBTCH
AND A.CNTITEM = B.CNTITEM
AND A.IDACCT = '401099999'
1. I am converting this application so that is uses ACCPAC XAPI.
2. How do I create a "Joint view" that combines the results of AP0510 view and AP0511 in the same manner the above SQL query is generating a recordset? (AP0510 and AP0511 are the views for APPJD and
APPJH tables respectively)
SELECT A.GLREF, A.GLDESC, A.AMTEXTNDHC,
B.GLBATCH, B.GLENTRY
FROM APPJD AS A INNER JOIN APPJH AS B ON
A.POSTSEQNCE = B.POSTSEQNCE
AND A.TYPEBTCH = B.TYPEBTCH
AND A.CNTBTCH = B.CNTBTCH
AND A.CNTITEM = B.CNTITEM
AND A.IDACCT = '401099999'
1. I am converting this application so that is uses ACCPAC XAPI.
2. How do I create a "Joint view" that combines the results of AP0510 view and AP0511 in the same manner the above SQL query is generating a recordset? (AP0510 and AP0511 are the views for APPJD and
APPJH tables respectively)