Interface XbpJob
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
confirmGenerally()
Confirm this job generallyvoid
confirmSpecifically()
Confirm this job specificallyIterator<XbpJob>
getChildJobs(XbpJobSelectionOption option)
Get the children of the job.String
getClient()
Get the client number of the jobDateTimeZone
getCreationTime()
Creation time and date of the job TBTCO fields: SDLDATE / SDLTIMEString
getCreatorUser()
Creation user of the job TBTCO field: SDLUNAMEDateTimeZone
getEndTime()
End time and date of the job TBTCO fields: ENDDATE / ENDTIMEString
getEventId()
Get the batch event idString
getEventParameter()
Get the batch event parameterString
getJobclass()
Get the class (A, B, C) of the jobString
getJobcount()
Get the id of the job aka jobcountString
getJobgroup()
Get the group of the jobIterator<TableRow>
getJoblog()
Get joblog of the jobString
getJobname()
Get the name of the jobDateTimeZone
getModificationTime()
Last modification time and date of the job TBTCO fields: LASTCHDATE / LASTCHTIMEString
getModifierUser()
User who has modified the job TBTCO field: LASTCHNAMEint
getNumberOfSteps()
Get the number of steps of this jobXbpJob
getParentJob()
Get the parent of the job.DateTimeZone
getReleaseTime()
Release time and date of the job TBTCO fields: RELDATE / RELTIMEString
getReleaseUser()
Release user of the job TBTCO field: RELUNAMEDateTimeZone
getScheduledStartTime()
Scheduled start time and date of the job TBTCO fields: SDLSTRTDT / SDLSTRTTMDateTimeZone
getStartTime()
Start time and date of the job TBTCO fields: STRTDATE / STRTTIMESapBatchJobStatus
getStatus()
Get the status of the jobXbpJobStep
getStep(int stepNumber)
Get the specified step of the job.Iterator<XbpJobStep>
getSteps()
Get the steps of the jobboolean
isPeriodic()
Check if this is a periodic jobvoid
kill()
Kill the SAP job
-
-
-
Method Detail
-
getJobname
String getJobname()
Get the name of the job- Returns:
- job name
-
getJobcount
String getJobcount()
Get the id of the job aka jobcount- Returns:
- job ID aka jobcount
-
getStatus
SapBatchJobStatus getStatus()
Get the status of the job- Returns:
- status of the job, or
null
if the status of the job is not known
-
getJobgroup
String getJobgroup()
Get the group of the job- Returns:
- job group
-
getJobclass
String getJobclass()
Get the class (A, B, C) of the job- Returns:
- job class
-
getClient
String getClient()
Get the client number of the job- Returns:
- job client
-
getEventId
String getEventId()
Get the batch event id- Returns:
- event id
-
getEventParameter
String getEventParameter()
Get the batch event parameter- Returns:
- event parameter
-
isPeriodic
boolean isPeriodic()
Check if this is a periodic job- Returns:
true
if the job is periodic,false
otherwise
-
getCreationTime
DateTimeZone getCreationTime()
Creation time and date of the job TBTCO fields: SDLDATE / SDLTIME- Returns:
- creation time
-
getCreatorUser
String getCreatorUser()
Creation user of the job TBTCO field: SDLUNAME- Returns:
- creation user
-
getScheduledStartTime
DateTimeZone getScheduledStartTime()
Scheduled start time and date of the job TBTCO fields: SDLSTRTDT / SDLSTRTTM- Returns:
- scheduled start time
-
getStartTime
DateTimeZone getStartTime()
Start time and date of the job TBTCO fields: STRTDATE / STRTTIME- Returns:
- start time
-
getEndTime
DateTimeZone getEndTime()
End time and date of the job TBTCO fields: ENDDATE / ENDTIME- Returns:
- end time
-
getReleaseTime
DateTimeZone getReleaseTime()
Release time and date of the job TBTCO fields: RELDATE / RELTIME- Returns:
- release time
-
getReleaseUser
String getReleaseUser()
Release user of the job TBTCO field: RELUNAME- Returns:
- release user
-
getModificationTime
DateTimeZone getModificationTime()
Last modification time and date of the job TBTCO fields: LASTCHDATE / LASTCHTIME- Returns:
- last modification time
-
getModifierUser
String getModifierUser()
User who has modified the job TBTCO field: LASTCHNAME- Returns:
- modifier user
-
kill
void kill()
Kill the SAP job
-
getStep
XbpJobStep getStep(int stepNumber)
Get the specified step of the job. Steps are counted from 1.- Parameters:
stepNumber
- number of the step- Returns:
XbpJobStep
of the job
-
getSteps
Iterator<XbpJobStep> getSteps()
Get the steps of the job- Returns:
Iterator
with theXbpJobStep
steps
-
getNumberOfSteps
int getNumberOfSteps()
Get the number of steps of this job- Returns:
- number of steps
-
getParentJob
XbpJob getParentJob()
Get the parent of the job. Returnsnull
if XBP 2.0 is not available, i.e. it is not required to explicitly check if XBP 2.0 is available before calling this method.- Returns:
XbpJob
reference to the parent job, ornull
if the job does not have a parent
-
getChildJobs
Iterator<XbpJob> getChildJobs(XbpJobSelectionOption option)
Get the children of the job. Returns an emptyIterator
if XBP 2.0 is not available, i.e. it is not required to explicitly check if XBP 2.0 is available before calling this method.
-
confirmGenerally
void confirmGenerally()
Confirm this job generally
-
confirmSpecifically
void confirmSpecifically()
Confirm this job specifically
-
-