You can view the namespace of a library in the Library Manager. Use a short acronym (PacDriveLib -> PDL) as namespace. Do not change the default namespace of a library.
To reserve an unambiguous namespace for your own, self-developed libraries, contact your Schneider Electric responsible.
A function FC_DoSomething() is located within the library TestlibraryA (namespace TLA) as well as in TestlibraryB (namespace TLB). The respective function is accessed by prefixing the namespace.
If both libraries are located within a project, the following call-up results in an error detected during compilation:
FC_DoSomething();
In this case, it is necessary to define clearly which POU is to be called up.
TLA.FC_DoSomething();
TLB.FC_DoSomething();