Attaching Back to Kinetic

I am using JSON Web Service Datalink to put an attachment that is coming into ECM on a different table in Kinetic. Think about receiving a part that has material certs and is lot tracked, I’m trying to attach the cert that was added on the receipt to the lot table. I have a question that I am hoping someone can answer.

Using the attachment BOs, can I use the same values for the attachment on the other table? Specifically, the DrawingSeq, XFileRefNum, DrawDesc, and FileName.

<PartLotAttch>
          <Company>GTR1</Company>
          <PartNum>AL04</PartNum>
          <LotNum>1132</LotNum>
          <DrawingSeq>112079</DrawingSeq>
          <XFileRefNum>82141</XFileRefNum>
          <SysRevID>322562480</SysRevID>
          <SysRowID>0dd4e495-9256-4a42-ba5f-24f728c45531</SysRowID>
          <ForeignSysRowID>dbf53d7a-0a0d-4868-a5fc-c3ba73292d24</ForeignSysRowID>
          <DrawDesc>TestAttach.txt</DrawDesc>
          <FileName>e06d025a-3fce-ed11-985c-001dd80171f9;\GTR1\Certs\PartLot\TestAttach.txt</FileName>
          <PDMDocID></PDMDocID>
          <DocTypeID>Certs</DocTypeID>
          <RowMod></RowMod>
        </PartLotAttch>
2 Likes

Oh, and to nip the questions in the bud.

No, we do not have the integration package.

No, management does not want to purchase it.

1 Like

Looking at the XFileRef table, and XFileAttach, I think you are ok, if they are referring to the same file
in XFileRef.

Is that what you are intending?

1 Like

@jkane I attach tariff invoices like this to PartLot. One upload and use the same XFileRefNum for every lot, PO and receipt.

2 Likes

Thanks! I’ll give it a go and see if I can get it working.