cancel
Showing results for 
Search instead for 
Did you mean: 

one job to another job call data services

srini_cnu
Participant
0 Kudos

Hi friends,

How to call one job to another job in SAP BODS.

Regards

Srini

View Entire Topic
severin_thelen
Contributor
0 Kudos

Hello Srini,

that is the reason, why I create a single WF in every job.

Like this:

  • Job
    • WF (no logic)
      • WF_1
      • ...
      • WF_N

So I have the possibility to use the WF (which includes the total job logic) in another JOB.Therefore I have no restrictions to combine Job logics later.

Regards

Severin

srini_cnu
Participant
0 Kudos

Hi Severin,

I can understand WF jobs. but am asking i have DF in one job. this same job i call another job with in another DF. it will same time both are worked. how

@ i create in different two projects. but job was one project to another project jobs called different

Regards

Srini

former_member213365
Active Participant
0 Kudos

I would be VERY reluctant to call a job from within a Dataflow.  Be very careful in how you do this.  If the Dataflow is processing multiple rows you won't run the child job one at a time.  Instead it will try to run one job for every row IN PARALLEL, not in series.

severin_thelen
Contributor
0 Kudos

Additional to my previous post, I would never use DFs directly in a job, too.

Job

  • DF1
  • ...
  • DFn

I would use a WF every time.

Job

  • WF
    • DF1
    • ...
    • DFn

Furthermore you can build a new job or modify a existing job, which includes all WF or DFs you need, so there is no need to call a job from a job.

If I would call a job from another job, I would worry about the serviceability of my job.