I’ve problem abt import new routing into production. In my exiting there are Main strategies and sub routine. for example A is main strategy. B and C are sub routine.
So, I created a new strategy is D, E is new sub routine and used same sub routine B as in exiting system. When I imported strategy D into production, IRD will ask to rewritten sub routine and then click “ok”. So the status of sub routine B will be not ready and i have to recompile again. How can i setting some parameter If i don’t want to recompile sub routine B again. I’ve tested bytecode option but still it’s not working.
Two ways I think you can approach it:
1 - as catanirex describes above
2 - Export each individual strategy then reimport. The second method will also import any dependent non-strategy objects (macros, list objects, etc).
Regarding recompiling, there is an IRD option [called “bytecode”] in 7.5 or later that allows you to export and import the compiled code as part of the process, so you don’t need to recompile on import. Refer to the URS documentation for valid values and configuration.