HI Expert,
I have created custom business object eg:
businessobject A {
[AlternativeKey] [Label("Order ID")] element OID:ID;
node Batch[0,n]{
[AlternativeKey] [Label("Item ID")] element IID :ProductInternalID;
[Label("Date")] element ExpDate :Date;
}
}
Now i am creating entry in BO.
First Entry:
Order ID | 1 |
Item ID | Date |
---|---|
1 | 25-04-2016 |
2 | 25-04-2016 |
When I am trying to enter second record. It throws error "instance already exits".
Second Entry:
Order ID | 2 |
Item ID | Date |
---|---|
1 | 26-04-2016 |
2 | 26-04-2016 |
Can any body help me. Why this error is coming and how can i solve this issue.
Thanks,
Nikhil.