Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Regarding table pool/cluster

Former Member
0 Likes
489

Hi,

can you please discribe me the the process by which we can find

how many pool/cluster table is attached to perticuler table pool/cluster.

thanks.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
465

hi jony ,

try this

DATA : BEGIN OF IT_TABLES OCCURS 0,

TABNAME LIKE DD02L-TABNAME,

END OF IT_TABLES.

SELECT TABNAME

FROM DD02L

INTO IT_TABLEs

WHERE SQLTAB EQ <CLUSTER/POOL NAME>.

Eg :

SELECT TABNAME

FROM DD02L

INTO IT_TABLEs

WHERE SQLTAB EQ 'AABLG'.

2 REPLIES 2
Read only

Former Member
0 Likes
466

hi jony ,

try this

DATA : BEGIN OF IT_TABLES OCCURS 0,

TABNAME LIKE DD02L-TABNAME,

END OF IT_TABLES.

SELECT TABNAME

FROM DD02L

INTO IT_TABLEs

WHERE SQLTAB EQ <CLUSTER/POOL NAME>.

Eg :

SELECT TABNAME

FROM DD02L

INTO IT_TABLEs

WHERE SQLTAB EQ 'AABLG'.

Read only

Former Member
0 Likes
465

Hi,

When you findout a table pool/cluster then click on its name and from the menu bar select where-used list .

A window will appear there select Tables and press Enter

you will find out all pool/cluster tables

your problem is resolved

So do reward points