RE: How to override carry down data

2021-03-22 Thread julien.massiera
method the following code is triggered on the >>> parentIdendifier: >>> >>> activities.addDocumentReference(childIdentifier, parentIdentifier, >>> null, new String[] { "content" }, new String[][] { { "newContent" } >>> }); >>> >>> Th

Re: How to override carry down data

2021-03-21 Thread Karl Wright
>> activities.addDocumentReference(childIdentifier, parentIdentifier, null, >>> new String[] { "content" }, new String[][] { { "newContent" } }); >>> >>> Then the childIdentifier is processed and the following code is >>> trig

Re: How to override carry down data

2021-03-21 Thread Karl Wright
Array = >> activities.retrieveParentData(childIdentifier, "content"); >> >> At this point, the childIdentifier retrieves a contentArray containing 2 >> values, the old one "someContent", and the new one "newContent" >> >> I can gua

Re: How to override carry down data

2021-03-21 Thread Karl Wright
retrieves a contentArray containing 2 > values, the old one "someContent", and the new one "newContent" > > I can guarantee that the parentIdentifier between the two crawls is the > same and that on the second crawl, only the "newContent" is added, I > debugged

RE: How to override carry down data

2021-03-21 Thread julien.massiera
ntent" is added, I debugged the code to confirm everything. Julien -Message d'origine- De : Karl Wright Envoyé : dimanche 21 mars 2021 16:05 À : dev Objet : Re: How to override carry down data Can you give me a code example? The carry-down information is set by the parent, a

Re: How to override carry down data

2021-03-21 Thread Karl Wright
Can you give me a code example? The carry-down information is set by the parent, as you say. The specific information is keyed to the parent so when the child is added to the queue, all old carrydown information from the same parent is deleted at that time, and until that happens the carrydown

How to override carry down data

2021-03-21 Thread julien.massiera
Hi Karl, I am using carry-down data in a repository connector but I have figured out that I am unable to update/override a value that already have been set. Indeed, despite I am using the same key and the same parent identifier, the values are stacked. So, when I retrieve carry-down data