2

Within the Movilizer Product context.

We have a big masterdata customer pool divided in groups G1, G2, G3...

The keys are referenced between the groups key1 is in G2 and G3 for example.

If I delete "key1" (masterdatadelete). Will it be deleted from the pool and all its references? (disapearing completelly from any movelet referencing G2 or G3).

Bohemian
  • 412,405
  • 93
  • 575
  • 722
Lucke
  • 221
  • 1
  • 4
  • What exactly is your masterdatadelete? Could you upload an example with your request (.mxml file?). You can have some examples here: https://devtools.movilizer.com/confluence/display/DOC21/Masterdata+Create+and+Upload – demula Feb 24 '15 at 12:05
  • Yes, an example would be like this: ` key1Desc ` "key1" is on G2 and G3. A delete on "key1" removes all references? – Lucke Feb 24 '15 at 14:45

1 Answers1

1

this depends on your specific delete command.

    <delete key="key1" group="G2" /> <!-- deletes from G2 only --> 
    <delete key="key1" /> <!-- deletes from all groups --> 
André Schäfer
  • 608
  • 5
  • 15
  • Hmmm I just figured .... you can not delete key1 from group G2 if that is the original Masterdata entry. It might help if you can post your original code here @Lucke – André Schäfer Feb 24 '15 at 14:30
  • Yes, as stated above if I have: ` key1Desc ` And I send a delete like this: `` does it remove all references or do I have to send a delete for each reference and then the "master entry"? – Lucke Feb 24 '15 at 14:47
  • 1
    The delete without a group deletes the original one and all its references – André Schäfer Feb 24 '15 at 14:58