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

Package Interface Problem

arpitgoyal
Product and Topic Expert
Product and Topic Expert
0 Likes
333

I have the following stucture of package hierarchy:

- Package A is the top most which contains two packages B and C.

- Package C has package D

- Package D has package D1

Now D1 has some objects which I want B to access but with ACL restriction.

I tried the following steps:

- Defined package interface in D1 adding all exposed objects (say PIF1)

- Defined package interface say PIF2 in C adding package interface PIF1

- Add B in the ACL of C.

But still I got error: the PIF1 is invisible in package interface PIF2

Am I doing something wrong? Can any one help in this (kind of complex).

Regards,

Arpit

1 REPLY 1
Read only

Former Member
0 Likes
295

Hello Arpit,

You should move the object visibility one by one in the hierarchy. i.e. D1->D->C

As you have already created a pkg interface in D1.

Again create a new Pkg interface at D and add this package interface in the use access. repeat the same for pkg c.

Hope this will help.

Regards,

Prashant