Is there a way to import my logic from Pipeline Builder into the Object Set?
Example,
I have two columns/properties “First Name” and “Last Name” from a tabular dataset and in Pipeline Builder I concatenated those to have a “Full Name” column.
I converted this dataset into an Object Set and with the Workshop users can enter their data to create objects.
How do I incorporate the logic from pipeline builder to create and/or populate the ‘full name’ property?
Hey @econaaj , since you now have users writing to the object type, there are quite a few avenues you could take. Here are a few and not necessarily exausitive options:
Using OntologyEditFunction to recreate your logic and save the result via the same action type of the users (or using another action type that transform the data after submission using automation)
Using AIP Logic to compose a function that also has the same logic
Using the same workshop module and variable transformation to pass the full name to the action type
What you should use depends on the level of complexity, robustness, security, etc you would like to provide. The first option will be the most versatile in the long run.