If you have a snapshot view, you need to add the relevant load rule to see VOBA elements.
If you have a dynamic view, you need to make sure VOBA is mounted.
In both case, you need to make sure your stream contains a baseline for a VOBA component, otherwise your link will point to an unknown version of DirectoryA.
Remember:
Use relative VOB symbolic links instead of absolute VOB symbolic links.
Absolute VOB symbolic links require you to use absolute pathnames from the VOB tag level; if the VOB mount point should change, the link becomes invalid
Personally, I would never use symbolic link to link directories, only files.
And I would not use it between different UCM VOB (meaning between two different UCM component). I would rather use relative path to refer to or include files from another component from one of my files. But I would not make those files appears magically within my component. That way, the dependency between the two components is less "obfuscated";)
Note: I am not sure how linking a a directory work in term of content it displays.
Linking a file works just fine, provided:
- you have the other VOB load/mounted if your symbolic link is just a name '
../myOtherVob/myFile.txt'
- you have provided the symbolic link with a full complexte extended pathname: :
../myOtherVob/myFile.txt@@/main/myBranch/3. That means this symbolic link will always display the same version of the file. In that case, you do not need to mount/load the other vob.
I use dynamic views. I couldn't add the baseline of VOB B to VOB A since it says VOB B dynamic view has check outs. But I couldn't see any such check outs.
1/ You do not add a baseline of VobB to VobA: that does not make sense.
What you do is adding a baseline of a component defined in VobB (its root directoryory refers to VobB) to the stream which, up until now, only contained a baseline of a component defined in VobA.
You expend your "recipe list": before, you needed only a component from VobA. Now, you need also one from VobB.
2/ If the rebase operation fails because of checkout files, simply:
- create another dyanmic view referring to same stream
- add your baseline (rebase)
- go to your first view
- type "
cleartool setcs -stream"
And you will see the files from VobB in your first view, even though it contains checkouts.
Again, I believe you only need to do that is your symbolic link was not referring to an extended pathname. If it did, you should not need to add explicitly a baseline from component on VobB to your stream.
Note: Symbolic link with CCRC is a tricky matter.
- First, you need to have the full client to create symbolic link (see this feature matrix, and search for "symbolic links" within that page)
- Then you need at least a CCRC 7.0.1 to see them (see this thread)
- If you need to delete a symbolic link, you would better do it from a full client, not a CCRC one (see technote 1396589)
- Directory element symlinks that are using absolute path or previous directory (..) are not loaded (PK74531):
Maybe relative paths to different directories will work (....\otherDir\otherPath), but just '..' will definitively fail.
- CCRC does not load symlinks to files outside of the VOB and returns Copy area isn't parent of pname (PK74841)
If you refer not just to files outside your own vob, but to files inside another vob, make sure it is loaded ion your CCRC view. But even with that, that may still not work and be a severe limitation.
Again, symlink are not always a good solution. Rather to import directories within your own space, you would be better off referencing those other components (with other paths to other vobs) in your view, adjusting your scripts or classpath to reference those paths, instead of wanting to see them directly within your directories.