How do you manage to keep your SDF projects contai...
# sdf
m
How do you manage to keep your SDF projects containing all the fields being created? I imagine you have to do this: • Any functional consultant who creates a new object, they have to notify the programmer • Any programmer is about to deploy, should update the project first These two rules are enough to get it right, correct? And usually, do tech teams put their own work, the fields they dealt with only, in the SDF project, or they add every single custom object?
e
I don't have an automated answer for the former, though it's probably possible to build something that dynamically generates the custom IDs in your account. Seems simpler to just have solid communication lanes between the dev team and the folks creating/updating Objects, but that definitely breaks down at scale. For the latter, I checkout a new branch and run
suitecloud object:update
over all the Objects in the SDF project, then open a pull request for the branch in order to review the updates.
m
Is it possible to listen to object creation from code? I mean like a UserEvent script, that push the xml to the repo directly.