I don’t think there is such a property. But if you are worry about the workload to change all 30 packages, you can use the java service below to automatically disable all the services you don’t want to execute in a flow service.
Two intpus:
String - serviceName - the NSName string of a flow service you want to disable something
String List - blacklist - the NSName string list of services you want to disabled
No outpus:
In code tab:
IDataCursor pipelineCursor = pipeline.getCursor();
String serviceName = IDataUtil.getString( pipelineCursor, “serviceName” );
String blacklist = IDataUtil.getStringArray( pipelineCursor, “blacklist” );
pipelineCursor.destroy();
NSNode nsNode = Namespace.current().getNode(serviceName);
if (nsNode instanceof FlowSvcImpl){
FlowSvcImpl flowService = (FlowSvcImpl)nsNode;
FlowRoot flowRoot = flowService.getFlowRoot();
disable(flowRoot, Arrays.asList(blacklist));
}
In shared tab:
Imports:
com.wm.app.b2b.server.ns.Namespace
com.wm.lang.ns.NSNode
com.wm.lang.flow.FlowRoot
com.wm.lang.flow.FlowElement
com.wm.lang.flow.FlowInvoke
com.wm.app.b2b.server.FlowSvcImpl
java.util.List
java.util.Arrays
public static void disable(FlowElement element, final List blacklist){
int nodeCount = element.getNodeCount();
for (int i = 0; i < nodeCount; i++){
FlowElement childElement = element.getNodeAt(i);
String childElementType = childElement.getFlowType();
if (childElementType.equals(FlowElement.TYPE_INVOKE)){
FlowInvoke invokeElement = (FlowInvoke)childElement;
String service = invokeElement.getService().toString();
if (blacklist.contains(service)){
childElement.setEnabled(false);
}
}else{
disable(childElement, blacklist);
}
}
}
This service can’t disable a transformer service invoked in a map step, if you also want to disable them, you need to add additional code for FlowElement.TYPE_MAPINVOKE, I am lazy 
#webMethods#Integration-Server-and-ESB