Hello everybody,
I'd like to get a doc combining 2 fields from LN:
"id2": 20002823,
"id1": "A01",
into one single value used to store the document:
"MDS_id1": "A0120002823"
I've set up a context with trying the following XQuery, but it doesn't work
/MDS_FP[@MDS_id1= Concat("{id1}","{id2}")]
UNION
/MDS_FP[@MDS_BodRefNoun = "{bodReference.noun}" AND
@MDS_BodRefDocId = "{bodReference.documentId}" AND
@MDS_BodRefAccEntity = "{bodReference.accountingEntity}" AND
@MDS_BodRefLocation = "{bodReference.location}" AND
@MDS_BodRefRevisionId = "{bodReference.revisionId}"]
Any hint or idea on this?
G