‎2009 Oct 14 8:50 AM
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
‎2009 Oct 14 12:10 PM
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