Skip to main content
Question

Upload Assortment Functionality in IFS Cloud

  • November 6, 2025
  • 1 reply
  • 85 views

Forum|alt.badge.img+3

Hi,

Using the Upload Assortment functionality in IFS Cloud, I am currently able to create Assortment Nodes only. However, I would like to know if there is a tool or functionality available within IFS Cloud that allows us to link or connect parts to these Assortment Nodes. I want to connect around 30,000 parts to different nodes in this assortment and in each node can have around 10 to 50 parts.

Could someone please advise if such a feature exists or suggest an alternative approach?

 

1 reply

Forum|alt.badge.img+7
  • Sidekick (Customer)
  • November 6, 2025

Hello

we have to do that to attach part from an assortment to another we created, we use our ETL (in our case Armony from ootary, but i guest talend will do a same), and call the here under API

            <IFSCloudFunction
                Body = "{
                {fx:Quotes}AssortmentId{fx:Quotes}:{fx:Quotes}Assortment_Name{fx:Quotes},
                {fx:Quotes}PartNo{fx:Quotes}:{fx:Quotes}Part_No{fx:Quotes},
                {fx:Quotes}ParentNode{fx:Quotes}:{fx:Quotes}Node_name_where to_attach_Part{fx:Quotes}
                }"
                ApiPath = "/main/ifsapplications/projection/v1/PartHandling.svc/PartCatalogSet(PartNo='Part_No')/AssortmentConnectionsArray" 
                DataBaseName = "DB_IFS_CLOUD" 
                Method = "POST"  
                NameTo = "TABLE_POST"  />

the syntaxe to call the API is the armony syntax but if you check in API explorer the PartHandling projection you will have the full description

best regards

Vito