Application Development 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: 

Join cluster table is allowed in one system but not in others

oliver_am
Participant
0 Kudos

Hi, all.

I have a program where I have a join beetween cluster tables (BKPF, BSET). The program it's ok, no syntax error.

I've exported the program to a system with a lower abap version (740 -> 731) and now I have a syntax error.

I'm wondering if depends only on the abap version. Or if depends also on whether the system has hana or not.

Thanks in advance.

1 ACCEPTED SOLUTION

horst_keller
Product and Topic Expert
Product and Topic Expert

Cluster tables tend to be declustered in higher Releases and on Hana. Check in SE11 that it is not a cluster table there. In lower Release they are still cluster tables.

2 REPLIES 2

horst_keller
Product and Topic Expert
Product and Topic Expert

Cluster tables tend to be declustered in higher Releases and on Hana. Check in SE11 that it is not a cluster table there. In lower Release they are still cluster tables.

0 Kudos

mmm, ok

Is there a way to know by code if a table is a cluster table?

EDIT: ok, I can know it with FM

DDIF_FIELDINFO_GET

Thanks