Hi All,
I have multiple screens on the portal and I am using multiple JSON scripts for that. My scenario is-
I have one screen suppose A. I want to check that whether that A screen's data is present/used in other screen or not. How can I do that it will consume less time?
Suppose I have data table A like below which I am using in Screen 1-
Name Country GUID Date
Ram India 1 1/1/2021
Sham India 2 2/1/2021
Hetal India 3 3/1/2021
Now, I have different screens where I am using different JSON scripts/ tables/web pages. Suppose I have screen 2. In that I am inserting some data and have Name from table A as dropdown. These data I am dumping in table B.
Consider table B has below data-
ID Value Table A Lookup
0011 1098 1
0022 2045 2
I want to filter the from Table A which is not used in table B. In above case record with GUID 3 is not used, so it should return record with GUID 3.
Also, please note that there multiple tables from I need to check above condition.