When using ERP integration only directories or projects containing an ERP_PDM_NUMBER are displayed in green. (A standard entry under PARTadmin -> Role category -> General tabbed page -> Export condition is "ERP_PDM_NUMBER.NE.'' for example). This is the standard case.
Using Export tables you can set on "green" any further directories or projects, meaning they are exportable independently from any other restrictions. For example, this could be directories, which only contain PDFs and for reasons of information shall be marked or directories, which indeed do not contain parts with ERP_PDM_NUMBER, but anyhow shall be exportable.
In order to use Export tables do the following:
Precondition: Check, if the table "EXPORTTABLE" exists; if not, create it via SQL scripting.
/* EXPORTTABLE */ IF NOT EXISTS(SELECT name FROM sysobjects WHERE name = 'EXPORTTABLE') BEGIN create table dbo.EXPORTTABLE( EXPPRJTAB varchar(40) not null, PATH varchar(500) not null, primary key(EXPPRJTAB, PATH) ); grant all on dbo.EXPORTTABLE to PUBLIC; ENDIn PARTlinkManager under Extras menu -> Configure ERP environment, select the Export tables tabbed page.
In the Export tables area, click on the Add entry button and enter any desired table name (here EXPTAB for example.)
In the Table entries area, click on the respective button and add projects or directories via Windows Explorer.
These are displayed under Project path. Here exemplified "training".
Now switch to PARTadmin and insert the before applied table name in the Use export table field using the respective role in the category tree.
Now in PARTdataManager in the Part selection the "Training" catalog with all sub-directories will display in green color, though it possibly doesn't contain any parts, which have an ERP_PDM_NUMBER.

![[Note]](https://webapi.partcommunity.com/service/help/latest/pages/fr/partsolutions_admin/doc/images/note.png)


