With Export-Import, you can use this XSL to disable all schedules after export and before import:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:sfg="http://www.stercomm.com/SI/SI_IE_Resources">
<xsl:output method="xml" indent="yes" encoding="UTF-8"
cdata-section-elements="sfg:SCHEDULE_TIMINGXML" />
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*" />
</xsl:copy>
</xsl:template>
<xsl:template match="sfg:SCHEDULE_STATUS">
<xsl:copy>
<xsl:text>INACTIVE</xsl:text>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
------------------------------
Daniel Hammling
------------------------------
Original Message:
Sent: Wed September 23, 2020 11:22 PM
From: Sabarish Kavala
Subject: Enabling and Disabling schedules using opscmd.sh
Hi Forum,
How can we stop multiple schedules using opsscmd.sh in sterling integrator?
------------------------------
Sabarish Kavala
------------------------------
#DataExchange
#IBMSterlingB2BIntegratorandIBMSterlingFileGatewayDevelopers