cancel
Showing results for 
Search instead for 
Did you mean: 

Getting object tables in a universe through JAVA SL SDK

Former Member
0 Kudos

Hi,

We are able to pull all the objects in a universe by using JAVA SL SDK. But we are unable to use getimplicittables() method to get the tables which are used in object. Could you please give any code to get the tables or suggest me how to use the getimplicittables() method.

Regards,
Madhu.

denis_konovalov
Active Contributor
0 Kudos

I have fixed your tags, please select more careful next time.

Accepted Solutions (0)

Answers (2)

Answers (2)

daniel_paulsen
Active Contributor
0 Kudos

Hi

Try something like the following:

Folder cityFolder = (Folder) getChild(businessLayer.getRootFolder(), 0, "City");

Dimension cityDimension = (Dimension) getChild(cityFolder, 0, "City");

List<String> implicitTables = businessLayerService.getImplicitTables(cityDimension);

Dan

amitrathi239
Active Contributor
0 Kudos
Former Member
0 Kudos

In that link they mentioned getimplicitTable() method, but when I am using it is giving null values. If possible provide the code how use that method.