Scope: a managed application, a mobile application, and an ordinary application.
Guideline
1. Avoid using the GoTo operator in 1C:Enterprise language code as its use can result in complicated and ill-structured modules. It is difficult to understand the execution sequence and interrelation of its snippets. Instead of the GoTo operator, use other statements of 1C:Enterprise language.
Incorrect example:
If ChartOfCalculationTypes = Object.ChartOfCalculationTypes Then
GoTo ChartOfCalculationTypes;
EndIf;
Correct example:
If ChartOfCalculationTypes = Object.ChartOfCalculationTypes Then
ProcessChartOfCalculationTypes();
EndIf;
|
Scope (details): a managed application and an ordinary application.
2. Avoid using the GoTo operator in common modules with "client (managed application)" property, command modules, and client code of managed form modules as this method is not supported by 1C:Enterprise platform in the web client mode.
|