Hi,
I need modifiy my export script.
This part of script export all object type Document in EPC but I need export only objects Document with connection type "CT_CRT_OUT_TO"
//dokument
var oDoc = new Array();
oDoc= oObj.value.getConnectedObjOccs(Constants.ST_DOC);
strTmp= oDoc[0].ObjDef().Name(gnLang);
for (var i = 1; i = (oDoc.length - 1); i++ ) {
strTmp += " ■ " + oDoc[i].ObjDef().Name(gnLang);
}
gFile.TableCellF( strTmp, 25, "Normal");
} else {
gFile.TableCellF( "", 25, "Normal");
thank you for your help =)