/AWS1/CL_PIP=>DISABLESTAGETRANSITION()
¶
About DisableStageTransition¶
Prevents artifacts in a pipeline from transitioning to the next stage in the pipeline.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_pipelinename
TYPE /AWS1/PIPPIPELINENAME
/AWS1/PIPPIPELINENAME
¶
The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.
iv_stagename
TYPE /AWS1/PIPSTAGENAME
/AWS1/PIPSTAGENAME
¶
The name of the stage where you want to disable the inbound or outbound transition of artifacts.
iv_transitiontype
TYPE /AWS1/PIPSTAGETRANSITIONTYPE
/AWS1/PIPSTAGETRANSITIONTYPE
¶
Specifies whether artifacts are prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).
iv_reason
TYPE /AWS1/PIPDISABLEDREASON
/AWS1/PIPDISABLEDREASON
¶
The reason given to the user that a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
lo_client->/aws1/if_pip~disablestagetransition(
iv_pipelinename = |string|
iv_reason = |string|
iv_stagename = |string|
iv_transitiontype = |string|
).