the question is how in generel the SELECT in SELECT SQL query can be interpreted in Navision (how do i do this kind of SELECT in Navision)
the example could be as follows:
I want to select those lines in 81 Gen. Journal Lines table where Posting Group is in the subset of "FA Posting Groups".Code values for which "FA Posting Groups"."Acquisition Cost Account" is some constant in question (let's say '01 016').
Namely:
SELECT *
FROM "81 Gen. Journal Lines" as GJL
WHERE GJL."Posting Group" IN
( SELECT "Code"
FROM "FA Posting Groups"
WHERE "Acquisition Cost Account" = '01 016'
);
how do i do it in navision ?
0
Comments
1) If you have few values in "FA Posting Groups" (they have to smaller then 1024 bytes), you can do this: 2) In case you have a lot of values, you need to use a temptable
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!