Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Invalid_JOBData = 3 in JOB_SUBMIT

Former Member
0 Kudos

Hi Folks,

I'm scheduling the job but while JOB_SUBMIT i'm getting Invalid_jobdata. I have searched in SDN for help but i could find any relevant answer to my issue.

PARAMETERS: p_varian LIKE v_bicu-variant NO-DISPLAY

DEFAULT 'JE_UPLOAD_A'.

CALL FUNCTION 'JOB_SUBMIT'

EXPORTING

authcknam = syst-uname

jobcount = job_count

jobname = p_jobnam

report = 'RFBIBL00'

variant = p_varian

EXCEPTIONS

bad_priparams = 1

bad_xpgflags = 2

invalid_jobdata = 3

jobname_missing = 4

job_notex = 5

job_submit_failed = 6

lock_failed = 7

program_missing = 8

prog_abap_and_extpg_set = 9

OTHERS = 10.

Any help on this.

Regards

VEnk@

4 REPLIES 4

SuhaSaha
Advisor
Advisor
0 Kudos

Did your debugging sessions provide any insight?

Former Member
0 Kudos

Hi suhas,

Yes through debugging itself i got know tht Invalid Jobdata was coming, wondering in many sites they gave analysis as VARIANT problem could it be tht.??

Regards

VEnk@

0 Kudos

> Yes through debugging itself i got know tht Invalid Jobdata was coming, wondering in many sites they gave analysis as VARIANT problem could it be tht.??

By debugging i mean debugging the 'JOB_SUBMIT' function. Did you try it before posting the qn?

Former Member
0 Kudos

Solved my myself..While debugging got know that variant name was miss matched by a character..:) :). I conclude in program "RFBIBL00" variant which was created have wrong spelling because of which Invalid_JOBDATA.

Regards

VEnk@