I have two string variables:
lv_table_name
contains a table namelv_column_name
contains a column name
Is there a way to check if there is a table (or view) which has the given column?
I have two string variables:
lv_table_name
contains a table namelv_column_name
contains a column nameIs there a way to check if there is a table (or view) which has the given column?
For Netweaver 7.5, you can use a simple OPEN SQL select on DD03L
https://help.sap.com/doc/abapdocu_750_index_htm/7.50/en-US/abensql_expr_literal_abexa.htm
SELECT SINGLE @abap_true
FROM DD03L
WHERE tabname EQ @lv_table_name AND fieldname EQ @lv_column_name
INTO @DATA(lv_exists).
You can find table and view definitions in table DD03L. If you can access the table with your mentioned combination table/column it will be noticably faster.