Application Development and Automation 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: 
Read only

Batch input session for execute program

Former Member
0 Likes
964

I have a executable program, which will update pricing record. The program will called by another batch input session program. If i execute the update pricing record, it is work, but if I call the batch input session program to update the pricing record, it dosn't work. User said that it is work before, after the server upgarde, it dosen't work. I think the program is OK, the program is the batch input session cannot call the pricing program. Thanks!

7 REPLIES 7
Read only

Former Member
0 Likes
934

u mentiond that upgrade was happened to ur server. Check for compatability of ur batch input session program in the new version. else do the unicode chages and check for syntax errors.

Read only

0 Likes
934

May I know how to do unicode check? Thanks!

Read only

0 Likes
934

My code as following, anythings wrong? Thanks!

perform open_group.

clear bdcdata.

bdcdata-program = 'ZPRICING'.

bdcdata-dynpro = '1000'.

bdcdata-dynbegin = 'X'.

append bdcdata.

clear bdcdata.

bdcdata-fnam = 'BDC_OKCODE'.

bdcdata-fval = '/EE'.

append bdcdata.

call function 'BDC_INSERT'

exporting

tcode = 'ZPRICING'

tables

dynprotab = bdcdata.

call function 'BDC_CLOSE_GROUP'

form open_group.

call function 'BDC_OPEN_GROUP'

exporting

client = sy-mandt

group = 'ZBPRICE'

user = sy-uname.

endform.

Read only

0 Likes
934

Unicode check : Go to Tcode UCCHECK and give your report name and execute the program if every things comes in green that is correct or else it will display in red color

Regards

Sas

Read only

0 Likes
934

HI ,

unicode is "16-bit character encoding scheme" that allows language conversion ...

this is not supported in R/3 620 release ... ECC 5.0 and above are supported ..

when u create a object .. .there is a check box for unicode check enabled.. (usually default checked )

UCCHECK is transaction where u can check for unicode compatbility ...

Regards

Renu ...

Read only

0 Likes
934

I may know what's the problem, becuase the data sync problem, the zprice program is check any different between the new price and old price, when i submit the batch job program, the price may not be update immediately, So, can i delay the batch job program after sumbit. Thanks!

Read only

0 Likes
934

let me explain clear, after the job submit, it just queue up in sm35, i would like to know how to execute the schedule job? Thanks!