Error scheduling a Program in CMC

I am trying to schedule a program in the CMC. We are on BOXI 31. SP6.
Our SIA runs under a local service account. If I change the SIA to run as Local System and then schedule the program in the CMC and provide the local service account details in the Program Logon section it runs successfully.
If I change the SIA to run under the service account and then reschedule the same job, including the Program Logon details. it fails with the following message 'The Program Objects reported an error while running, but no error code was provided'. Very useful error message!
Has anyone else hit this issue?
Regards
Paul

Hello Paul,
In addition to above, kindly try below:
For the Domain User account that used to run the SIA,
In the windows Control Panel, go to
     - user account
     - then Change user account control settings
     - and reduce the security level to Low - Never Notify
Please let us know the outcome.
- Mahesh

Similar Messages

  • Item does not match schedule line (program error)

    Dear Experts,
    I Transaction VA02/VA03 when i put Sales order number  and try to get in to the system system through error and terminate the transaction
    ERROR is  "Item does not match schedule line (program error)" with Message no. V1427
    when i check Table level and analyse thr Debuging i found that
    Table VBAP line item 10 is missing and table VBEP line item 10 is there due to this miss match its shows above error
    Question
    Why and How it happen and how to fix this issue???
    Best Regards
    hanumant

    Check Note 442831 - V1427: Item does not match schedule line (program error)
    thanks
    G. Lakshmipathi

  • Item does not match schedule line (program error) in sap

    Dear Expert.
    Greetings!
    We are currently facing with this error (V1 427 item does not match schedule line (program error) in sap), when we open the sales order(VA02/03).
    The error  is occurring due  inconsistency on the database tables, some Item is in  table VBEP, but it is missing from table VBAP.  This is what is causing the error message.
    I checked various related notes - 442831 , 401463 , 389687  etc .  These are quite old notes and I am in release ECC 6.0 .
    Report SD_CONSISTENT_CHECK_EXT and SD_CONSISTENT_CHECK are already available.
    Bapi BAPI_SD_SALES is also active.
    Please let me know if anybody has any idea on the same.
    regards
    Praveen

    Hi,
       Refer the KBA:  1464620 - Error V1427: Item does not match schedule line   which explains the reason and the solution for the issue.
    Regards,
    AKPT

  • Schedule line (program error)

    hi,
    Item does not match schedule line (program error) - message V1427 getting while accessing the Sales Order via VA02/VA03.
    please help me out.

    HI
    Implement note 442831
    Ramesh

  • Publication Error - Scheduling failed

    hi All
    i'm trying to create a new simple publication on BO XI 3.0 system with a crystal report
    i create the CR and export it to the enterprise platform
    i run and refresh the CR from the Infoview, its working fine.
    i create a publication for this CR
    with those details
    Source Document : mycrystalreport
    Enterprise Recipents : Administrator
    Formats: Microsoft Excel 97-2003
    Destinations: Default Enterprise location
    when i run this publication in test mode it gives me this error
    Scheduling failed: Security privileges are not sufficient for this operation.
    any idea?

    Hi There,
    Have you tried to schedule the report (just a 'run once'). How does that go?
    Your error may be because when a report get's scheduled (as opposed to a human clicking refresh), it's technically unattended so reverts to the db config settings.
    In the CMC, right click on the report, go to properties. Expand the Default Settings node, then select Database Configuration.
    You might want to use the setting 'Use custom database logon information specified here.'
    Hope that helps.

  • Can I schedule COBOL program directly through oracle scheduler

    Hi,
         I am scheduling a SHELL SCRIPT through scheduler, the shell script executes COBOL program internally.
    Can I schedule COBOL program directly through oracle scheduler
    Thanks,
    Nagaraju A.

    Hi,
    if your Shell script-cobol is runing without error, you can call from Oracle scheduler.
    Regards

  • RUNTIME ERROR IN GENERATED PROGRAM. Overflow converting ''

    Hi,
    While executing the below code i am getting the error
    " RUNTIME ERROR IN GENERATED PROGRAM. Overflow converting ' ' am new to ABAP , can anyone kindly help me where i have went wrong ? .
    IF ( V_DO_CDS_NAME_MAIN <> '' ).
        ABAP.
            DATA: ref_it_tab TYPE REF TO data,
                  ref_wa TYPE REF TO data.
            FIELD-SYMBOLS: <fs_itab> TYPE ANY TABLE.
            FIELD-SYMBOLS: <fs_wa> TYPE ANY.
            FIELD-SYMBOLS: <fs_field> TYPE ANY.
            CREATE DATA ref_it_tab TYPE STANDARD TABLE OF (V_DO_CDS_NAME_MAIN) WITH NON-UNIQUE DEFAULT KEY.
            ASSIGN ref_it_tab->* TO <fs_itab>.
            SELECT * FROM (V_DO_CDS_NAME_MAIN) INTO TABLE <fs_itab> where C1 = V_WORK_ITEM_ID_MAIN.
            CREATE DATA ref_wa LIKE LINE OF <fs_itab>.
            ASSIGN ref_wa->* TO <fs_wa>.
            loop at <fs_itab> assigning <fs_wa>.
                assign component 'CLIENT' of structure <fs_wa> to <fs_field>.
                V_CLIENT = <fs_field>.
                assign component 'C0' of structure <fs_wa> to <fs_field>.
                V_C0 = <fs_field>.
                assign component 'C1' of structure <fs_wa> to <fs_field>.
                V_C1 = <fs_field>.
                assign component 'C2' of structure <fs_wa> to <fs_field>.
                V_C2 = <fs_field>.
                assign component 'C3' of structure <fs_wa> to <fs_field>.
                V_C3 = <fs_field>.
                assign component 'C4' of structure <fs_wa> to <fs_field>.
                V_C4 = <fs_field>.
                assign component 'C5' of structure <fs_wa> to <fs_field>.
                V_C5 = <fs_field>.
                assign component 'C6' of structure <fs_wa> to <fs_field>.
                V_C6 = <fs_field>.
                assign component 'C7' of structure <fs_wa> to <fs_field>.
                V_C7 = <fs_field>.
                assign component 'C8' of structure <fs_wa> to <fs_field>.
                V_C8 = <fs_field>.
                assign component 'MESSAGE_ID' of structure <fs_wa> to <fs_field>.
                V_MESSAGE_ID = <fs_field>.
                assign component 'TIMESTAMP' of structure <fs_wa> to <fs_field>.
                V_TIMESTAMP = <fs_field>.
                assign component 'EXTRACTKEY' of structure <fs_wa> to <fs_field>.
                V_EXTRACTKEY = <fs_field>.
                assign component 'STATEID' of structure <fs_wa> to <fs_field>.
                V_STATEID = <fs_field>.
                assign component 'DEVICE_ID' of structure <fs_wa> to <fs_field>.
                V_DEVICE_ID = <fs_field>.
            ENDLOOP.
        ENDABAP.
    ENDIF.

    Hi Mubeen,
    While Copying the cotes have come closer otherwise its working fine , i was able to find the error .
    There are ten predefined ABAP data types. There are 100 possible type combinations between these elementary data types. ABAP supports automatic type conversion and length adjustment for all of them except type D (date) and type T (time) fields which cannot be converted into each other.
    I commented the TimeStamp part where i had given the ABAP Type as D and it started working .
    But now i want to display the content of  "TimeStamp"  field but i am not able to do so .
    This is the format in which it has to be displayed 2009.011.915.3353.
    Which ABAPTYPE i need to use ?.
    i am able to display in this format 20090119153353
    regards
    Harsha

  • Runtime Error in MMBE- s yntax error occurred in program "SAPLMBBS " in inc

    Hi Gurus,
    Runtime Error in "MMBE" Transaction -
    The following syntax error occurred in program "SAPLMBBS " in include "LMBBSU07
    " in
    line 76:
    "The column name "MATNR" has two meanings . ."
    Any Input is Highly appreciated.
    Thanks and Regards,
    Selva

    Hi,
    This looks like an ABAP runtime error and the program concerned is a standard program. Please check the include and try debugging, suggest a breakpoint in line 76.
    Thanks

  • Error Your browser/program is not supported by Web Dynpro

    Hi,
    1. I am getting error "Your browser/program is not supported by Web Dynpro" while executing Web dynpro java application
    2. Portal is EP 7.0 with SP15
    3. Browser is IE 8.0
    4. Which browser(s) (& sp level)  are supported by web dynpro?
    5. Is it possible to customize this error message?
    6. If so, from where (Web dynpro java application or Visual Admin) 
    7. My web dynpro application supports multiple languages.
    8. Is it possible to maintain this message in messagecomponent.xlf file
    Thanks & regards,
    Nilesh

    Hi Nilesh
    IE8 and IE7 is not supported.
    For browser/program is not supported by Web Dynpro----
    check this forums link
    /message/6416540#6416540 [original link is broken]
    /message/2842083#2842083 [original link is broken]
    Re: browser/program is not supported by Web Dynpro!
    Hope this link information will help you
    Regards
    Ruturaj

  • How to schedule a program in background after 5 or 10 sec

    Hi All,
           Can anyone tell me how to schedule a program after 5 or 10 sec in background after the transaction is completed.
    It is not a custom transaction. I want to execute a Z program in background  in a BADI
    Regards
    Yathish
    Message was edited by:
            Yathish Gundlupet

    Programattically?   You can add this code to the end of your transaction(if it is custom, of course).
    report zrich_0004 .
    data:   sdate type sy-datum,
            stime type sy-uzeit,
            l_valid,
            ls_params like pri_params,
            l_jobcount like tbtcjob-jobcount,
            l_jobname  like tbtcjob-jobname.
    start-of-selection.
    * Get Print Parameters
      call function 'GET_PRINT_PARAMETERS'
           exporting
                no_dialog      = 'X'
           importing
                valid          = l_valid
                out_parameters = ls_params.
    * Open Job
      l_jobname = 'THIS_JOB'.
      call function 'JOB_OPEN'
           exporting
                jobname  = l_jobname
           importing
                jobcount = l_jobcount.
    * Submit report to job
      submit <your_program_name
           via job     l_jobname
               number  l_jobcount
           to sap-spool without spool dynpro
               spool parameters ls_params
                  and return.
    * Kick job off 10 seconds from now.
      sdate = sy-datum.
      stime = sy-uzeit + 10.
    * Schedule and close job.
      call function 'JOB_CLOSE'
           exporting
                jobcount  = l_jobcount
                jobname   = l_jobname
                sdlstrtdt = sdate
                sdlstrttm = stime
    Regards,
    RIch Heilman

  • Error while running Program YL_ADJUST_COMMITMENT

    Error while running Program YL_ADJUST_COMMITMENT, i think it actually comes from FN8C business operation for single posting w
    "Message" - No account refernce could be found - Error in update to Accounting - Distribution error -CoCd 601.
    Please help

    Resolved my self

  • Error while executing program

    Hi ,In sap bods,  im using abap dataflow as my source and target is flat files ,while im executing its showing error
    "Execute ABAP program <C:/Program Files/Business Objects/BusinessObjects Data Services/zcustdim.aba> error <    Open File Error"
    how can i solve this problem,
    Moderator message: please have a look in the forums for Business Objects.
    Edited by: Thomas Zloch on Mar 8, 2012

    Prem,
    Looking at the error that you have shown, looks like its a different error. Is there a control/GRID that is being used in the program.
    If you are using a CUSTOM CONTAINER and a GRID to display the data, whenever you executing the program, you should not create the container. Something like this ..
        if cl_gui_alv_grid=>offline( ) is initial.
          create object CUSTOM_CONTAINER
                 exporting container_name = CUSTOM_CONTROL
        endif.
    Regards,
    Ravi
    note : Please reward the helpful posts.

  • Error message c:\program files (x86)\itunes\ituneshelper.exe   r6034

    can not log into itunes, get the following error message:  c:\program files (x86)\itunes\itunes help.exe
    R6034
    I have uninstalled and reinstalled and still unable to login

    Apple's advice on this issue can now be found here: TS5376: iTunes 11.1.4 for Windows: Unable to install or open.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See the user tip Backup your iTunes for Windows library with SyncToy for a suggested strategy.
    If you have difficulty downloading the iTunes setup file try clearing your browser's cache or using an alternate browser.
    If content is missing from the library following the repair see Empty/corrupt iTunes library after upgrade/crash.
    For device connectivity issues following the repair see TS1538: iOS: Device not recognized in iTunes for Windows, in particular section 5.
    MobileMe is a discontinued service and should be removed if present. See HT2992: MobileMe: Uninstalling the MobileMe Control Panel for Windows for details.
    tt2

  • How can i schedule concurrent program for every one hour from back end

    Hi ,
    I want to schedule concurrent program for every one hour from back end .
    Example
    1) xyz is the concurrent program that should run for every one hour with a parameter 111 and the SAME concurrent program that
    should run every 2 hours with a different parameter like 222.
    I mean Conc prog should run for different parametrs with a different scheduling..
    Please guide me to solve the issue.
    Thanks in advance...
    Regards
    Narender B

    Hi ,
    I have used following code for scheduling the concurrent program from backend.
    declare
    l_request_id NUMBER;
    l_return_code boolean := FALSE;
    BEGIN
    fnd_global.apps_initialize(62991,54477,20003);
    l_return_code := FND_REQUEST.SET_OPTIONS ('YES');
    l_return_code :=fnd_request.set_repeat_options('16:36:00','','DAYS','START','','Y');
    l_request_id:=fnd_request.submit_request(application => 'xbol',
    program => 'NAPP_START_GENERATE_CHART_DATA',
    description => 'Processing chart ',
    start_time => SYSDATE,
    sub_request => FALSE,
    argument1 =>4000130957231588,
    argument2 => null
    COMMIT;
    dbms_output.put_line('Program has been submited and request id is '||l_request_id);
    END;
    Here the issue was concurrent program is completing with a warning like
    Resubmission of request 75588551 has been cancelled.
    FND_RESUB_PRIVATE.PROCESS_INCREMENT EXCEPTION: ORA-01403: no data found
    Resubmission of request 75588551 has been cancelled.
    FND_RESUB_PRIVATE.PROCESS_INCREMENT EXCEPTION: ORA-01403: no data found
    so i could not find the solution for this issue,please anybody guide me to solve this issue.
    Regards
    Narender B

  • On Mac OS 10.9.5 : impossible to initialize Photoshop because of an error of the program

    I downloaded Adobe PhotoShop CC and Lightroom 5 (paid version). Lightroom 5 seams to work but Adobe PhotoShop gives an error message "impossible d'initialiser Photoshop en raison d'une erreur du programme" (sorry it's in French, in English this could be "impossible to initialize Photoshop because of an error of the program". Not any additionnal error code or comment.
    I tried to uninstall, dowload and install again, but I still get the same message after the new install.
    Has anybody experimented this problem ? Thanks for your kind help.

    Thanks for tour suggestion, but unfortunately  it does not work. I get a dialog box about virtual memory and the disks I want to choose for, but I cannot trash the prefs. I changed the disks to see and I still get the same message.

Maybe you are looking for

  • Lumia 800 microphone problem

    Hello, I have a problem with my Lumia 800 microphone.. when someone calls me, or I try to record a video it doesn't work, I can't hear what I sad in the video, neither people can hear me over their phone, but for example when I try to use voice comma

  • IPad locked.

    I BOUGHT IPAD 3 ON EBAY SAID ITEM WAS FACTORY RESET UPON DELIVERY I SET IT UP AND TESTED IT WORKED AS EXPECTED,BUT THE DAMAGE TO CORNER WAS WORSE THAN PHOTO I ERASED ALL DATA,AND RETURNED FOR A REFUND WHICH WAS ISSUED TO ME SELLER EMAILED ME NEXT DAY

  • Cisco Finesse 9.0 desktop log file collection !

    Hi All,   I am having a issue in collection of Cisco Finesse Desktop logs.   I am refereing this guide Cisco Finesse Installation and Getting Started Guide Release 9.0(1) Page No 24.   when i am using the command --file get activelog desktop recurs c

  • Multiple field terminators in BULK INSERT or BCP

    Can i have multiple field terminators  in BULK INSERT or BCP commands i,e, define more than 1 for a file? Pls provide example.

  • Why are images desaturated?

    I've struggled with this problem off an on for years, never truly understanding what fixed or caused the problem. I work on a MAC OSX and use Lightroom 4 and Photoshop CS4 exclusively.  In the past, I was told the issue was my color profile, and I've