‎2008 Nov 13 3:07 AM
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!
‎2008 Nov 13 3:48 AM
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.
‎2008 Nov 13 4:24 AM
‎2008 Nov 13 4:38 AM
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.
‎2008 Nov 13 4:40 AM
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
‎2008 Nov 13 4:47 AM
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 ...
‎2008 Nov 13 5:04 AM
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!
‎2008 Nov 13 5:59 AM
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!