to get from config you just need to add the asset to assets page in config..that gets it automatically..but be sure if you are changing value using set asset then config variable value would not change as the assets are retrieved only at the start of the process..so if you want updated values explicitly you need to set the value in config variable or use a separate variable and use get asset when needed
@Latif you can read the asset using in_Config(“Settings”), and update it during the run like this: in_Config(“Settings”) = True But this only changes it in memory it won’t update the actual Orchestrator asset. To change the real value you will need the Orchestrator API. For simple cases, writing to a local file like Excel or JSON is a good workaround.
Hey @Latif absolutely yes you can do that. Just use Get Asset once at the start to read the boolean then use an If to branch your logic. You don’t need to change it mid‑process thats clean, simple and fully valid