Hi I am looking for a select statement that gives me back ALL items (inventTable) existing in Company A but not in B
Hi I am looking for a select statement that gives me back ALL items (inventTable) existing in Company A but not in B
Nope removed the job already because tried it in different ways
Can you share the code you have tried?
Thanks,
Girish S.
Thx, I tried it but no clue how to make it. It always shows me ALL items not the not existing ones
Hi,
You can use container to save the list of company you want to data from and then pass that container to select statement.
CustTable custTable; container conCompanies = ['CompanyA','CompanyB']; ; select crossCompany :conCompanies * from custTable;
Thanks,
Girish S.
Hi, In addition to Martin's suggestion, you can check this article on how to implement it
Use a cross-company with two InventTable buffers joined with not-exists join.
André Arnaud de Cal...
292,516
Super User 2025 Season 1
Martin Dráb
231,409
Most Valuable Professional
nmaenpaa
101,156