Interface XbpJobStep
-
- All Superinterfaces:
SapObject
- All Known Subinterfaces:
XbpJobAbapStep
,XbpJobExternalCommandStep
,XbpJobExternalProgramStep
,XbpJobExternalStep
public interface XbpJobStep extends SapObject
Step of a batch job
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Iterator<SpoolList>
getSpoolLists()
Get the spool lists of the stepint
getStepNumber()
Get the number of the stepString
getStepUser()
Get the SAP user name of the stepboolean
hasSpoolLists()
Check if this step has spool listsboolean
isAbapStep()
Check whether this is an ABAP stepboolean
isExternalCommandStep()
Check whether this is an external command stepboolean
isExternalProgramStep()
Check whether this is an external program step
-
-
-
Method Detail
-
getStepNumber
int getStepNumber()
Get the number of the step- Returns:
- step number, starting at 1 for the first step of the job
-
getStepUser
String getStepUser()
Get the SAP user name of the step- Returns:
- step user
-
isAbapStep
boolean isAbapStep()
Check whether this is an ABAP step- Returns:
true
if this is an ABAP step,false
otherwise
-
isExternalProgramStep
boolean isExternalProgramStep()
Check whether this is an external program step- Returns:
true
if this is an external program step,false
otherwise
-
isExternalCommandStep
boolean isExternalCommandStep()
Check whether this is an external command step- Returns:
true
if this is an external command step,false
otherwise
-
hasSpoolLists
boolean hasSpoolLists()
Check if this step has spool lists- Returns:
true
if this step has spool lists,false
otherwise
-
-