2019 Dec 17 6:54 AM
Hi
Is it possible to get list of all marked list fields and selection in all queries (maybe some table) ??
Just all selected below

2019 Dec 17 7:09 AM
Hi Adrian,
Mention exact requirement in question for better understanding.
2019 Dec 17 7:34 AM
All the query tables start with AQL
the table your are looking for seams to be AQLDB and is a cluster, you need a code like the standard:
import headqu clogqu
dbop dbsn dbfr dblf dblc dbld dbse dbsq
dbgr dbli dbff dbfm
dbvh dbvs dbrh dbrl
dbpt dbct
maxqu_tindx qutext
from database aqldb(aq) id l_qukey
IGNORING CONVERSION ERRORS.
2019 Dec 17 8:52 AM
Or at a more abstract layer, use a function module like RSAQ_IMPORT_QUERY...(just one level above IMPORT)
2019 Dec 17 9:05 AM
Wasn't RSAQ_IMPORT_QUERY your very first idea? If so, just add it to your answer (NB: the first statement of RSAQ_IMPORT_QUERY is PERFORM import_query, and almost the first statement of import_query is the IMPORT you mention)
By the way, there's also RSAQ_IMPORT_QUERY_AND_INFOSET, and maybe other function modules...
2019 Dec 18 8:17 AM
Hi Frederic
Thanks for your answer
Unfortunetly i have blocked ABAP programming in a SAP, is it possible to get it in another way?
2019 Dec 18 9:12 AM
you will need to program something somewhere, it is not accessing directly by SELECT statement (query)
2019 Dec 17 9:27 AM
Use a function module like RSAQ_IMPORT_QUERY or RSAQ_IMPORT_QUERY_AND_INFOSET.
2019 Dec 18 8:16 AM
Hello, thanks for your response...
I have about 100 querries and need to extract list of "ticked" checkboxes in columns List Fields and Selection.
Regarding to attached picture:
List fields: Article number, Merchandise Category and Base Unit...
Selection: Article Number, Name of Person etc.
Is this information stored in some table?
2019 Dec 18 8:33 AM
It's stored in a table that you can only read with ABAP (ABAP storage).