cancel
Showing results for 
Search instead for 
Did you mean: 

Extract SAP jobname and redwood jobname

Gabie
Explorer
0 Kudos

Hello Experts,

We have a requirement to extract the list of jobs with definition and it's sap Jobname.

Can somebody help me extract these details with the help of query report or redwood script?

Any help will be greatly appreciated.

Thanks

Gabie

Accepted Solutions (1)

Accepted Solutions (1)

gmblom
Active Contributor
0 Kudos

Hello

You can use the following query to get this:

select jd.Name, jdp.DefaultExpression
from JobDefinition jd, JobDefinitionParameter jdp
where jd.BranchedLLPVersion = -1
and jd.UniqueId = jdp.JobDefinition
and jdp.Name = 'JOBNAME'

Regards Gerben

Gabie
Explorer
0 Kudos

Thanks Gerben

Answers (0)