Reltio Connect

 View Only
  • 1.  Sort and Order in Reltio RecipeRIH

    Reltio Partner
    Posted 21 days ago

    I have a question for sorting in Recipe i am working on - can i add 2 different sorting logics as i need to fetch the latest row of the two different nested attributes and then need to copy the subattribute to a variable - Can i use sorting like this , tested but not able to understand if this is working or not. 

    Attribute 1- Event (nested)

    subattribute - eventType

    Attribute 2 - Order (nested)

    subattribute - orderType




    ------------------------------
    Sparsh Bhatia
    Accenture
    ------------------------------


  • 2.  RE: Sort and Order in Reltio RecipeRIH

    Reltio Partner
    Posted 16 days ago

    Can anyone help in the property provided for the sorting for these 2 attributes?



    ------------------------------
    Sparsh Bhatia
    Accenture
    ------------------------------



  • 3.  RE: Sort and Order in Reltio RecipeRIH

    Posted 8 days ago

    You might be able to do something with Attribute Ordering at the L3 level. You can set the ordering of the Event attribute based on the EventType and then the Order attribute on the OrderType. e.g.

    [
        {
            "uri": "configuration/entityTypes/Entity/attributes/Event",
            "name": "Event",
            "label": "Event",
            "type": "Nested",
            "attributeOrdering":
            {
                "orderingStrategy": "FieldBased",
                "fieldURI": "configuration/entityTypes/Entity/attributes/Event/attributes/EventType"
            }
        },
        {
            "uri": "configuration/entityTypes/Entity/attributes/Order",
            "name": "Order",
            "label": "Order",
            "type": "Nested",
            "attributeOrdering":
            {
                "orderingStrategy": "FieldBased",
                "fieldURI": "configuration/entityTypes/Entity/attributes/Order/attributes/OrderType"
            }
        }
    ]


    ------------------------------
    Trevor Burn
    Assent
    ------------------------------