Links

MSCEWI2038

The repeated label was renamed.

Severity

Low

Description

A label that was repeated inside your input code was renamed in order to ensure the correct functionality of the transformations.

Example Code

Input Code:

.LABEL label_2038
.REMARK 'in_label_1'
.LABEL label_2038
.REMARK 'in_label_2'
.LABEL label_2038
.REMARK 'in_label_3'

Output Code:

def LABEL_2038():
snowconvert_helpers.remark(r"""in_label_1""")
MSC_LABEL_2038_1()
#** MSC-WARNING - MSCEWI2038 - REPEATED LABEL LABEL_2038 WAS RENAMED MSC_LABEL_2038_1 **
def MSC_LABEL_2038_1():
snowconvert_helpers.remark(r"""in_label_2""")
MSC_LABEL_2038_2()
#** MSC-WARNING - MSCEWI2038 - REPEATED LABEL LABEL_2038 WAS RENAMED MSC_LABEL_2038_2 **
def MSC_LABEL_2038_2():
snowconvert_helpers.remark(r"""in_label_3""")

Recommendations

  • No additional user actions are required.
  • For more support, you can email us at [email protected] or post a message to our forums. If you have a contract for support with Mobilize.Net, reach out to your sales engineer and they can direct your support needs.