Error when defining a program executable

Could anybody explain the following error, which appears when I attempt to define an executable, GLCRVL against a program (GLCRVL2). Appears when closing the "Concurrent Program Executable" form:
*"APP-FND-00508: Please enter a unique execution file name that is not already in use for your application"*
The executable in question is
/opt/oracle/DOLNSGC3/apps_11i/appl/gl/11.5.0/bin/GLCRVL
I made a copy of the GLCRVL spawned program, which now exists in FND_CONCURRENT_PROGRAMS AS
SQL> select application_id AS APP_ID
2 ,concurrent_program_id AS CP_ID
3 ,concurrent_program_name AS CP_NAME
4 ,executable_application_id AS EXA_ID
5 ,executable_id AS EX_ID
6 ,execution_method_code AS EXM_CODE
7 ,argument_method_code AS AM_CODE
8 ,enabled_flag
9 from FND_CONCURRENT_PROGRAMS
10 where CONCURRENT_PROGRAM_NAME in ('GLCRVL', 'GLCRVL2')
11 /
APP_ID CP_ID CP_NAME XA_ID EX_ID E A E
101 20397 GLCRVL 101 149 A D Y
101 45769 GLCRVL2 101 149 A D Y
Running 11.5.0 on Sun Solaris with 64-bit 10.2.0.4.0 Oracle DB Server

Hi all,
not sure if any of you are still watching this one, but I thought I'd update you on some good progress! I managed to get a spawned process working by registering it using the PL/SQL API, as follows:
set serveroutput on
declare
  b_Continue boolean := true;
  v_Prg_Name        varchar2(20) := 'GL_REVAL';
  v_Exec_Name       varchar2(20) := 'GL_REVAL';
begin
  begin
    begin
      fnd_program.delete_executable(v_Exec_name, 'SQLGL');
      commit;
      dbms_output.put_line('executable ' || v_Exec_Name || ' removed from SQLGL');
      exception -- catch
        when others then
          null;
    end;
    fnd_program.executable(v_Exec_Name -- executable
                          , 'SQLGL' -- application
                          , v_Exec_Name -- short_name
                          , 'Backend program - Reval Balances' -- description
                          , 'Spawned' -- execution_method
                          , 'GLCRVL' -- execution_file_name
                          , null -- subroutine_name
                          , null -- Execution File Path
                          , 'US' -- language_code
                          , null);
    commit;
    b_Continue := true;
    dbms_output.put_line('Registration of executable ' || v_Exec_Name || ' sucessful');
    exception
      when others then
        rollback;
        dbms_output.put_line('Registration error for executable ' || v_Exec_Name || ', ' || sqlerrm);
  end;
  if (b_Continue) then
    begin
      begin
        fnd_program.delete_program(v_Prg_Name, 'SQLGL');
        commit;
        dbms_output.put_line('program ' || v_Prg_Name || ' in SQLGL removed');
        exception -- catch
          when others then
            null;
      end;
      fnd_program.register ( program                        => 'Program - Revalue Balances (Backend)'
                            ,application                    => 'SQLGL'
                            ,enabled                        => 'Y'
                            ,short_name                     => v_Prg_Name
                            ,description                    => 'Revalue Balances'
                            ,executable_short_name          => v_Exec_Name
                            ,executable_application         => 'SQLGL'
                            ,execution_options              => null
                            ,priority                       => null
                            ,save_output                    => 'Y'
                            ,print                          => 'Y'
                            ,cols                           => null
                            ,rows                           => null
                            ,style                          => null
                            ,style_required                 => 'N'
                            ,printer                        => null
                            ,request_type                   => null
                            ,request_type_application       => null
                            ,use_in_srs                     => 'Y'
                            ,allow_disabled_values          => 'N'
                            ,run_alone                      => 'N'
                            ,output_type                    => 'TEXT'
                            ,enable_trace                   => 'N'
                            ,restart                        => 'N'
                            ,nls_compliant                  => 'Y'
                            ,icon_name                      => null
                            ,language_code                  => 'US'
                            ,mls_function_short_name        => null
                            ,mls_function_application       => null
                            ,incrementor                    => null);
      commit;
      dbms_output.put_line('Registration of program ' || v_Prg_Name || ' sucessful');
      exception
        when others then
          b_Continue := false;
          rollback;
          dbms_output.put_line('Registration error for program GL_REVAL ' || sqlerrm);
    end;
  end if;
  if (b_Continue) then
    begin
      fnd_program.remove_from_group(v_Prg_Name, 'SQLGL', 'GL Concurrent Program Group', 'SQLGL');
      dbms_output.put_line('program ' || v_Prg_Name || ' removed from group "GL Concurrent_Group" in SQLGL');
      commit;
      exception
        when others then
          rollback;
          null;
    end;
    begin
      fnd_program.add_to_group(v_Prg_Name -- program_short_name
                             , 'SQLGL' -- application
                             , 'GL Concurrent Program Group' -- Request Group Name
                             , 'SQLGL'); -- Report Group Application
      commit;
      b_Continue := true;
      dbms_output.put_line('program, ' || v_Prg_Name || ', sucessfully added to group "GL Concurrent Program Group"');
      exception
        when others then
          b_Continue := false;
          rollback;
          dbms_output.put_line('Registration error for program ' || v_Prg_Name || ' in group' || sqlerrm);
    end;
  end if;
  begin
    if (b_Continue) then
      if (fnd_program.parameter_exists (v_Prg_Name, 'SQLGL', 'Set of Books ID') ) then
        fnd_program.delete_parameter(v_Prg_Name, 'SQLGL', 'Set of Books ID');
        commit;
        dbms_output.put_line('Parameter "Set of Books ID" removed');
      end if;
      if (fnd_program.parameter_exists (v_Prg_Name, 'SQLGL', 'Revaluation ID') ) then
        fnd_program.delete_parameter(v_Prg_Name, 'SQLGL', 'Revaluation ID');
        commit;
        dbms_output.put_line('Parameter "Revaluation ID" removed');
      end if;
      if (fnd_program.parameter_exists (v_Prg_Name, 'SQLGL', 'PERIOD') ) then
        fnd_program.delete_parameter(v_Prg_Name, 'SQLGL', 'PERIOD');
        commit;
        dbms_output.put_line('Parameter "PERIOD" removed');
      end if;
      if (fnd_program.parameter_exists (v_Prg_Name, 'SQLGL', 'EFFECTIVE_DATE') ) then
        fnd_program.delete_parameter(v_Prg_Name, 'SQLGL', 'EFFECTIVE_DATE');
        commit;
        dbms_output.put_line('Parameter "EFFECTIVE_DATE" removed');
      end if;
      if (fnd_program.parameter_exists (v_Prg_Name, 'SQLGL', 'RATE_DATE') ) then
        fnd_program.delete_parameter(v_Prg_Name, 'SQLGL', 'RATE_DATE');
        commit;
        dbms_output.put_line('Parameter "RATE_DATE" removed');
      end if;
      fnd_program.parameter (program_short_name            => v_Prg_Name
                            ,application                   =>  'SQLGL'
                            ,sequence                      => 10
                            ,parameter                     => 'Set Of Books ID'
                            ,description                   => null
                            ,enabled                       => 'Y'
                            ,value_set                     => 'GL_SRS_SET_OF_BOOKS'
                            ,default_type                  => 'S'
                            ,default_value                 => null
                            ,required                      => 'Y'
                            ,enable_security               => 'N'
                            ,range                         => null
                            ,display                       => 'N'
                            ,display_size                  => 30
                            ,description_size              => 50
                            ,concatenated_description_size => 25
                            ,prompt                        => 'Set Of Books'
                            ,token                         => '');
      dbms_output.put_line('Parameter "Set of Books ID" added');
      fnd_program.parameter (program_short_name            => v_Prg_Name
                            ,application                   =>  'SQLGL'
                            ,sequence                      => 20
                            ,parameter                     => 'Revaluation ID'
                            ,description                   => null
                            ,enabled                       => 'Y'
                            ,value_set                     => 'GL_SRS_REVAL_NAME'
                            ,default_type                  => 'S'
                            ,default_value                 => null
                            ,required                      => 'Y'
                            ,enable_security               => 'N'
                            ,range                         => null
                            ,display                       => 'Y'
                            ,display_size                  => 35
                            ,description_size              => 50
                            ,concatenated_description_size => 25
                            ,prompt                        => 'Revaluation'
                            ,token                         => '');
      dbms_output.put_line('Parameter "Revaluation ID" added');
      fnd_program.parameter (program_short_name            => v_Prg_Name
                            ,application                   =>  'SQLGL'
                            ,sequence                      => 30
                            ,parameter                     => 'PERIOD'
                            ,description                   => null
                            ,enabled                       => 'Y'
                            ,value_set                     => 'GL_SRS_REVAL_PERIOD'
                            ,default_type                  => null
                            ,default_value                 => null
                            ,required                      => 'Y'
                            ,enable_security               => 'N'
                            ,range                         => null
                            ,display                       => 'Y'
                            ,display_size                  => 15
                            ,description_size              => 50
                            ,concatenated_description_size => 25
                            ,prompt                        => 'Period'
                            ,token                         => '');
      dbms_output.put_line('Parameter "PERIOD" added');
      fnd_program.parameter (program_short_name            => v_Prg_Name
                            ,application                   =>  'SQLGL'
                            ,sequence                      => 40
                            ,parameter                     => 'EFFECTIVE_DATE'
                            ,description                   => null
                            ,enabled                       => 'Y'
                            ,value_set                     => 'GL_SRS_STANDARD_DATE'
                            ,default_type                  => 'S'
                            ,default_value                 => null
                            ,required                      => 'Y'
                            ,enable_security               => 'N'
                            ,range                         => null
                            ,display                       => 'Y'
                            ,display_size                  => 11
                            ,description_size              => 50
                            ,concatenated_description_size => 25
                            ,prompt                        => 'Effective Date'
                            ,token                         => '');
      dbms_output.put_line('Parameter "EFFECTIVE_DATE" added');
      fnd_program.parameter (program_short_name            => v_Prg_Name
                            ,application                   =>  'SQLGL'
                            ,sequence                      => 50
                            ,parameter                     => 'RATE_DATE'
                            ,description                   => null
                            ,enabled                       => 'Y'
                            ,value_set                     => 'GL_SRS_STANDARD_DATE'
                            ,default_type                  => 'A'
                            ,default_value                 => 'EFFECTIVE_DATE.VALUE'
                            ,required                      => 'N'
                            ,enable_security               => 'N'
                            ,range                         => null
                            ,display                       => 'Y'
                            ,display_size                  => 11
                            ,description_size              => 50
                            ,concatenated_description_size => 25
                            ,prompt                        => 'Rate Date'
                            ,token                         => '');
      dbms_output.put_line('Parameter "RATE_DATE" added');
      commit;
      dbms_output.put_line(' ');
      dbms_output.put_line('All parameters added sucessfully ');
      b_Continue := true;
    end if; -- if (b_Continue) then
    exception
      when others then
        rollback;
        b_Continue := false;
        dbms_output.put_line('Error adding parameters ');
  end;
  if (b_Continue) then
    dbms_output.put_line('All registration was sucessful');
  else
    dbms_output.put_line('Registration unsucessful');
  end if;
  exception
    when others then
      rollback;
      dbms_output.put_line('Registration Error ' || sqlerrm);
end;
show errI then ran a test using the following script, and it seems to work!!!
set serveroutput on
declare
  b_Set_NLS         boolean;
  b_Wait            boolean;
  n_Request_ID      number;
  p_Language        varchar2(20) := 'AMERICAN';
  v_Phase           varchar2(100);
  v_Status          varchar2(100);
  v_Dev_Phase       varchar2(100);
  v_Dev_Status      varchar2(100);
  v_Message         varchar2(100);
  FND_EXCEPTION     exception;
  v_FND_EXC         varchar2(50);
  v_Prg_Name        varchar2(20) := 'GL_REVAL';
begin
  fnd_global.apps_initialize(1208, 50211, 101);
  fnd_program.enable_program(v_Prg_Name, 'SQLGL', 'Y');
  if not (fnd_program.executable_exists(v_Prg_Name, 'SQLGL') ) then
    v_FND_EXC := 'App ' || v_Prg_Name || ' does not exist';
    raise FND_EXCEPTION;
  end if;
  dbms_session.set_nls(param => 'nls_language'
                      ,value => p_Language);
  b_Set_NLS := fnd_submit.set_nls_options(p_Language);
  -- Test parameters
  n_Request_ID := fnd_request.submit_request( application => 'SQLGL'
                                             ,program     => v_Prg_Name
                                             ,description => 'Program - Revalue Balances (Backend)'
                                             ,start_time  => ''
                                             ,sub_request => false
                                             ,argument1   => '2'
                                             ,argument2   => '10060' --p_Revaluation_ID
                                             ,argument3   => 'Oct-09' --p_Period
                                             ,argument4   => '2009/10/31 00:00:00'
                                             --,argument5   => p_Rate_Date
  if (n_Request_ID > 0) then
    commit;
    b_Wait := fnd_concurrent.wait_for_request(request_id => n_Request_ID
                                             ,interval   => 60
                                             ,max_wait   => 0
                                             ,phase      => v_Phase
                                             ,status     => v_Status
                                             ,dev_phase  => v_Dev_Phase
                                             ,dev_status => v_Dev_Status
                                             ,message    => v_Message);
    v_FND_EXC := v_Dev_Status;
    if (v_Dev_Phase = 'COMPLETE') then
      case v_Dev_Status
        when 'WARNING' then
          raise FND_EXCEPTION;
        when 'ERROR' then
          raise FND_EXCEPTION;
        when 'NORMAL' then
          null;
        else
          v_FND_EXC := 'UNKNOWN';
          raise FND_EXCEPTION;
      end case;
    else
      v_FND_EXC := 'INCOMPLETE,' || v_Dev_Phase;
      raise FND_EXCEPTION;
    end if;
  end if;
  -- No Request ID has been returned by FND_REQUEST.SUBMIT_REQUEST or FND_SUBMIT.SUBMIT_SET
  if (n_Request_ID = 0) then
    v_FND_EXC := 'SUBMISSION FAILURE';
    raise FND_EXCEPTION;
  end if;
  dbms_output.put_line(v_Prg_Name || ' ran fine ');
exception
  when FND_EXCEPTION then
    dbms_output.put_line('Request Exception, ' || v_FND_EXC);
  when others then
    v_FND_EXC := 'UNKNOWN';
    dbms_output.put_line(v_FND_EXC || ' ' || sqlerrm);
end;
/Cheers!
P;

Similar Messages

  • Error when Generating the Program

    Recently there was an SP upgrade and my Planning Book started giving me this error message (SCM version =5.0 and SP = 7)
    "Error when generating the program" Message no. /SAPAPO/TSM141
    Diagnosis: Generated programs are programs that are generated based on individual data objects, such as planning object structure, planning areas and Infocubes. These programs are then executed in the transaction. An error occured during the generation of such a program
    Possible causes:
    1. The template has been corrupted
    2. The object that the template uses to generate the program contains inconsistencies; for instance an Infocube has not been activated
    This error occurs when I try to open the my planning book/creating the selection profile. I've re-activated the Infocube and later deactivate and active my POS and tried to do the same for the Planning Area....but the error still persists. I tried to create a new planning area and tried it again but the error still persists. I've tried to fix any inconsistencies in the planning area time series objects by running the consistency check....however the same error pops up during the consistency check....
    Anyone encountered this error message and any possible solutions to this issue.
    Thanks
    Surender

    I did find an ABAP Dump when looking at ST22.  The short message is as follows:
    Runtime Errors         GEN_BRANCHOFFSET_LIMIT_REACHED
    Date and Time          05/14/2007 19:33:54
    Short text
         Jump distance is too large and cannot be generated.
    What happened?
         A jump distance is too large and cannot be generated.
         A control structure or a routine with "CHECK" or "EXIT" contains
         too many ABAP statements.
         Error in the ABAP Application Program
         The current ABAP program "GP_MET_PSTRU_BASIC_FORMS" had to be terminate
          because it has
         come across a statement that unfortunately cannot be executed.
    What can you do?
         Note down which actions and inputs caused the error.
         To process the problem further, contact you SAP system
         administrator.
         Using Transaction ST22 for ABAP Dump Analysis, you can look
         at and manage termination messages, and you can also
         keep them for a long time.
    Error analysis
         During the generation of program "GP_MET_PSTRU_BASIC_FORMS", the system
          determined that
         within an ABAP event a control structure (for example, IF..ENDIF
         or LOOP..ENDLOOP) or a routine (for example, FORM routine) has
         become too large. The resulting jump distance is too large so that
        it could no longer be generated.
        With the internal load format, the jump distance must not be
        greater than 32768 (this is the size of approximately 10.000
        ABAP statements).
        The jump distance that is to be generated, however, is 50885.
    How to correct the error
       The ABAP application program must be changed.

  • Error when defining successor of node in workflows

    Hi Experts,
    I am receiving an error which says "error when defining successor of node XYZ". However in my workflow template, this particular XYZ node does not exists.
    Also I found one entry in SWP_SUSPEN table for the main workflow. I tried to execute the report manually RSWWERRE. Still it did not work out.
    I also tried to use transaction SWF_ADM_SUSPEND. However my workitem is not showing in the list.
    Kindly help me in this issue.
    Thanks
    Gopal

    Hi,
    This problem occurs because the nodes system table with respect to workflow is not updated properly. I hope you might have deleted or changed the workflow design after this you need to update the index of the workflow template too.
    Follow the below steps
    1. Execute PFTC choose task type as Workflow template and open in change mode.
    2. On menu goto Addtional Data ---> Agent Assignment ---> Maintain
    3. Choose the workflow template ID and click on the icon on the application tool bar with Red and white colur (Football ) i am not sure I think you can try with CTRL + F11 but you hvae to update the index.
    After doing this Execute SWUD txn Check for the consistencies of the workflow template. if you do not find any error refresh the buffer and org environment.
    Even after doing all this stuff you still face the issue then generate a version  just simply insert a dummy step in the workflow activate and then delete the dummy step activate and refresh the buffer and org environment and try to execute.
    This error ususally occurs (upto my knowledge) if the nodes table of the workflow is not updated properly, So the above mentioned  ways are to deal with it.
    Regards
    Pavan

  • Error when generating update program

    Hi,
    I was loading transactional data in to Cube. The load had failed and in RSMO status tab is showing that Error when generating update program. could you please suggest me some one how to resolve it.
    regards,
    Neeraja
    null

    Hi,
    Actually when you are loading data, the update program is executed. It is generated while you create the update rules for your data target. Please check whether the update rules are active or just go to the update rules and activate it again. Try loading data after activation and let us know the results.
    With Regards

  • Error when defining successor for node

    Experts,
    We are having a problem with one of our workflows that keeps erroring whenever we try to complete it.  The error message states "Error when defining successor for node 0000000159".  This error does not occur in 4.6c environment and the workflow is working fine.  However, our team is in the process of upgrading to ECC 6.0 and the workflow is not working properly in that environment.  The workflow is designed for BO BUS2038 and the error occurs when we try to close all tasks and complete the workflow.  Can someone direct us to something that we can check, we've pretty much exhausted all our options?  Thanks.

    Hi Teferi,
    This problem occurs in ECC 6 when a step with Synchronous Task/Method does not have the Step executed outcome activated (this is allowed in 4.6C for synch task with terminating events). Check if your Task/method is synchronous.
    Cheers,
    Ramki Maley.

  • Java error when I try to execute runInstaller

    Hi all,
    Someone can tell me why I get this error when I try to execute the runInstaller script ?
    echoes:/temp/Disk1$ ./runInstaller
    Starting Oracle Universal Installer...
    No pre-requisite checks found in oraparam.ini, no system pre-requisite checks will be executed.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2007-05-13_09-29-09PM. Please wait ...echoes:/temp/Disk1$ Oracle Universal Installer, Version 10.1.0.3.0 Production
    Copyright (C) 1999, 2004, Oracle. All rights reserved.
    Exception java.lang.UnsatisfiedLinkError: /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libawt.jnilib: occurred..
    java.lang.UnsatisfiedLinkError: /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libawt.jnilib:
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1668)
    at java.lang.Runtime.loadLibrary0(Runtime.java:822)
    at java.lang.System.loadLibrary(System.java:992)
    at sun.security.action.LoadLibraryAction.run(LoadLibraryAction.java:50)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(NativeLibLoader.java:38)
    at sun.awt.DebugHelper.<clinit>(DebugHelper.java:29)
    at java.awt.Component.<clinit>(Component.java:545)
    at oracle.sysman.oii.oiif.oiifm.OiifmGraphicInterfaceManager.<init>(OiifmGraphicInterfaceManager.java:189)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.createInterfaceManager(OiicSessionInterfaceManager.java:173)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.getInterfaceManager(OiicSessionInterfaceManager.java:182)
    at oracle.sysman.oii.oiic.OiicInstaller.<init>(OiicInstaller.java:278)
    at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:714)
    at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:628)
    Exception in thread "main" java.lang.NoClassDefFoundError
    at oracle.sysman.oii.oiif.oiifm.OiifmGraphicInterfaceManager.<init>(OiifmGraphicInterfaceManager.java:189)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.createInterfaceManager(OiicSessionInterfaceManager.java:173)
    at oracle.sysman.oii.oiic.OiicSessionInterfaceManager.getInterfaceManager(OiicSessionInterfaceManager.java:182)
    at oracle.sysman.oii.oiif.oiifm.OiifmAlert.<clinit>(OiifmAlert.java:112)
    at oracle.sysman.oii.oiic.OiicInstaller.runInstaller(OiicInstaller.java:772)
    at oracle.sysman.oii.oiic.OiicInstaller.main(OiicInstaller.java:628)
    I'm trying to install the 10g db on a PowerMac G5 with 4 gig ram, OSX 10.4.9 with all the latest patches.
    The oracle user shell config is the following :
    =====================================
    ORACLE_BASE=/opt/oracle
    ORACLE_HOME=$ORACLE_BASE/product/10.1.0/db_1
    ORACLE_SID=mydb
    export ORACLE_BASE ORACLE_SID ORACLE_HOME
    if [ $DYLD_LIBRARY_PATH ]
    then
    DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH:$ORACLE_HOME/lib
    else
    DYLD_LIBRARY_PATH=$ORACLE_HOME/lib
    fi
    HTDOCS=/usr/local/htdocs
    export DYLD_LIBRARY_PATH HTDOCS
    PATH=/usr/local/bin:/usr/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin:$ORACLE_HOME/bin
    export PATH
    PS1='\h:\w\$ '
    export PS1
    alias l='ls -la'
    alias svrmgrl='sqlplus /nolog'
    ================================
    Thanks in advance,
    Max

    Is the Oracle runInstaller message telling me that it wants IBMJava2 -1.3.1, even though is says to install 1.3.1 or higher?Yeah, it has been known to act a bit funny on newer releases of JRE.
    ~Jer

  • Mass processing - Error when processing Java programs / VMC out of memory

    When running a mass update background process that updates the status of a service order in CRM the job fails due to error 'Error when processing Java programs'. I checked the VMC (SM52) and noticed that there is an error about the VMC running out of memory.
    The background program can either be a PPF Action or a Z-ABAP program that performs the update. Both programs are performing a CRM_ORDER_INITIALIZE but it seems that the VMC is not releasing the memory fast enough.
    Is there anyway we can force the VMC to release the memory after processing of each individual order?
    Thanks!

    I got  similar issue and it got resolved by useing CRM_ORDER_INITILAIZE. Initalization should happen after every Order processing and see that only one header guid is passed to the the FM. May not be good option ,but just try by putting wait for 5secs after CRM_ORDER_INITILAIZE.

  • Error when exporting ABAP Programs and the Project

    Hi All,
    I keep on getting the following errors when I'm exporting the entire Project or only ABAP Programs (see attached screenshots).
    - Screenshot 1 shows an error when exporting a Project.
    - Screenshot 2 shows an error when exporting ABAP Program(s).
    These errors occur in the DEV environment.
    Please help.
    Thank you all.
    Kind regards,
    Roli

    Hi Ramakrishna,
    I will send the log file for when exporting a project. However, the issue of exporting ABAP Programs is nor resolved.
    In CMC we had to configure the system to Generate ABAP = True.
    Thank you.
    Kind regards,
    Roli

  • Error when defining successor for node 0000000198

    Hello ,
    We are using leave request service on ESS portal.
    From last few days we are getting error like " Error when defining successor for node 0000000198   "
    All agents are assigned properly and also v have checked PFTC setting for Workflow.
    the method which are using is Synchrounous.
    this error is nt coming perticulary for one employee but it is coming for sick leave workflow.
    Please help
    thanks

    Hi,
    This is a binding issue between the workflow container and the task 
    container because we can see the text in the workflow container but 
    it is empty in the task container.
    Our proposed solution is to go into the Dev or QAS environment and 
    regenerate the binding between the workflow and this particular task. 
    We will test and if this works, this will resolve issue.

  • Error when i try to execute a program on my Mac

    Hi,my program work very well on my Pc with xp,but when i try to execute it on my mac(with macosx tiger)the compiler gives me this error:
    java.net.BindException: Permission denied
    maybe it is a permisson error,root/user or buh?
    this program runs on port 440....can u help me?

    You can choose a higher port, above 1024. Or run the program as root like this:
    sudo java your.classname.here ...

  • Runtime error when i try to execute this program

    I get a runtime error when i run this file using appletviewer. Please help me in getting out of this problem.
    The runtime errror is:
    C:\prashanth>appletviewer HelloMedia.java
    java.lang.NoClassDefFoundError: javax/media/ControllerListener
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:486)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:11
    1)
    at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:142)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:297)
    at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:108)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:253)
    at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:373)
    at sun.applet.AppletPanel.createApplet(AppletPanel.java:579)
    at sun.applet.AppletPanel.runLoader(AppletPanel.java:515)
    at sun.applet.AppletPanel.run(AppletPanel.java:293)
    at java.lang.Thread.run(Thread.java:484)
    The code is :
    <applet code=HelloMedia.class width=500 height=400>
    <param name=FILE value="globe.avi">
    </applet>
    import java.applet.*;
    import java.awt.*;
    import java.net.*;
    import javax.media.*;
    public class HelloMedia extends Applet implements ControllerListener
    Player player;
    public void init()
    setLayout(new BorderLayout());
    String mediaFile = getParameter("FILE");
    try
    URL mediaURL = new URL(getDocumentBase(), mediaFile);
    player = Manager.createPlayer(mediaURL);
    catch(Exception e)
    System.err.println("Exception : " + e);
    player.addControllerListener(this);
    public synchronized void controllerUpdate(ControllerEvent event)
    if(event instanceof RealizeCompleteEvent)
    Component compVisual = player.getVisualComponent();
    Component compControl = player.getControlPanelComponent();
    if(compVisual != null)
    add("Center", compVisual);
    if(compControl != null)
    add("South", compControl);
    validate();
    public void start()
    player.start();
    public void stop()
    player.stop();
    player.deallocate();
    public void destroy()
    player.close();

    My classpath has the following value
    .;.;.;C:\PROGRA~1\JMF21~1.1\lib\sound.jar;C:\PROGRA~1\JMF21~1.1\lib\jmf.jar;C:\Program Files\CosmoSoftware\CosmoPlayer\npcosmop211.zip;%systemroot%\java\classes;.;
    Please help me out.
    Prashanth

  • Error when defining Solman connection

    Dear Gurus.
    When defining connection to Solman, the following error message appears:
    The full log attached.
    Please advice!
    Regards
    Vladimir

    Hi Vladimir,
    Yes, I failed to get that to work as well (I contacted Support, it is a known issue). Please see this document for setting up the Solution Manager connection: http://support.sap.com/content/dam/library/support/support-programs-services/Solution%20Manager/Business%20Process%20Ope…
    You can also read SAP note 1265635, I like the previously mentioned PDF because it has screen captures.
    As a further read, once all is set up, I recommend what Martin Lauer wrote up in a nice blog entry on the subject Solution Manager: Monitoring SAP CPS by Redwood jobs with SAP Solution Manager.
    Regards,
    HP

  • Error when duble click on executable jar file

    when duble click on jar file I get error message " Could not find main class . program will exit" , I am using jre 1.5_04,
    when I runnig from command - java -jar ./myJar.jar --> works fine.
    when I runnig from command - java -cp ./classes myUi --> works fine.
    I get the error just when I try to execute the jar by duble click.
    it some one knows what can be the problem??
    Thanks
    Nir

    The message bar says " The following disk image couldn't be opened"... As for reason... "Not recognized"

  • Assigned MP errors when I deploy program

    <select class="ratingSelect" disabled="disabled" id="starRating243703" style="display:none;"><option value="-2"></option><option value="-1"></option><option value="0"></option><option
    value="1"></option><option value="2"></option></select>
    0
    i have 1 primary site and 4(site system server) and our company have more than 15000 users and more than 1000 branch 
     Boundaries are set to IP Address  range for all branch 
    - Discovery is performed and successful  
    - Sites are assigned  
    when i deploy program it's get error in locationservices.log  
    ([style="color: #993300;"] 2 assigned MP errors in the last 10 minutes[/style], threshold is 5. LocationServices 12/9/2014 11:13:00 AM 8836 (0x2284)Attempting to retrieve local MPs from the assigned MP LocationServices 12/9/2014
    11:13:00 AM 8776 (0x2248)Unable to retrieve AD site membership LocationServices 12/9/2014 11:13:00 AM 8776 (0x2248)Refreshing the Management Point List for site PRI LocationServices 12/9/2014 11:13:00 AM 8776 (0x2248)Retrieved management point encryption info
    from AD. LocationServices 12/9/2014 11:13:01 AM 8776 (0x2248)Raising event:instance of CCM_CcmHttp_Status{ ClientID = "GUID:56FBA3BF-91CF-4195-9914-4C1ED87608BE"; DateTime = "20141209081301.044000+000"; HostName = "SCCM.moj.gov.local";
    HRESULT = "0x00000000"; ProcessID = 2780; StatusCode = 0; ThreadID = 8776;}; LocationServices 12/9/2014 11:13:01 AM 8776 (0x2248)Refreshing trusted key information LocationServices 12/9/2014 11:13:01 AM 8776 (0x2248)Raising event:instance of CCM_CcmHttp_Status{
    ClientID = "GUID:56FBA3BF-91CF-4195-9914-4C1ED87608BE"; DateTime = "20141209081301.067000+000"; HostName = "SCCM.moj.gov.local"; HRESULT = "0x00000000"; ProcessID = 2780; StatusCode = 0; ThreadID = 8776;}; LocationServices
    12/9/2014 11:13:01 AM 8776 (0x2248)Persisting the management point authentication information in WMI LocationServices 12/9/2014 11:13:01 AM 8776 (0x2248)Persisted Management Point Authentication Information locally LocationServices 12/9/2014 11:13:01 AM 8776
    (0x2248)Unable to retrieve AD site membership LocationServices 12/9/2014 11:13:01 AM 8776 (0x2248)MPLIST requests are throttled for 00:04:38 LocationServices 12/9/2014 11:13:01 AM 8836 (0x2284)Unable to retrieve AD site membership LocationServices 12/9/2014
    11:13:01 AM 8776 (0x2248)Updated FSP 'SCCM.moj.gov.local' from AD to local. LocationServices 12/9/2014 11:13:01 AM 8776 (0x2248)Updating portal information. LocationServices 12/9/2014 11:13:01 AM 8588 (0x218C)[style="color: #993300;"]3 assigned
    MP errors in the last 10 minutes, threshold is 5[/style]. LocationServices 12/9/2014 11:13:15 AM 8836 (0x2284)4 assigned MP errors in the last 10 minutes, threshold is 5. LocationServices 12/9/2014 11:13:35 AM 8836 (0x2284) 

    program 
    execmgr.log 
    <![LOG[A user has logged on.]LOG]!><time="10:53:31.978-180" date="12-09-2014" component="execmgr" context="" type="1" thread="828" file="execreqmgr.cpp:4912">
    <![LOG[The logged on user is MOJ\aalhasan]LOG]!><time="10:53:31.979-180" date="12-09-2014" component="execmgr" context="" type="1" thread="828" file="execreqmgr.cpp:4931">
    <![LOG[A user has logged on.]LOG]!><time="11:13:00.366-180" date="12-09-2014" component="execmgr" context="" type="1" thread="8380" file="execreqmgr.cpp:4912">
    <![LOG[The logged on user is MOJ\aalhasan]LOG]!><time="11:13:00.518-180" date="12-09-2014" component="execmgr" context="" type="1" thread="8380" file="execreqmgr.cpp:4931">
    <![LOG[CServiceWindowEventHandler::Execute - Received SERVICEWINDOWEVENT : START Event]LOG]!><time="22:00:00.171-180" date="12-09-2014" component="execmgr" context="" type="1" thread="9792"
    file="cservicewindowhandler.cpp:37">
    <![LOG[CExecutionRequestManager::OnServiceWindowEvent for START]LOG]!><time="22:00:00.203-180" date="12-09-2014" component="execmgr" context="" type="1" thread="9792" file="execreqmgr.cpp:8748">
    <![LOG[Auto Install is set to false. Do Nothing.]LOG]!><time="22:00:00.297-180" date="12-09-2014" component="execmgr" context="" type="1" thread="9792" file="execreqmgr.cpp:8760">
    <![LOG[CServiceWindowEventHandler::Execute - Received SERVICEWINDOWEVENT : END Event]LOG]!><time="05:00:00.104-180" date="12-10-2014" component="execmgr" context="" type="1" thread="10496"
    file="cservicewindowhandler.cpp:37">

  • Error when defining a variable  other than CHAR

    I am getting a syntax error when I define variables :
    data: l_arbei  type p.
    constants:  l_delim  type x  value '09'.
    Message L_ARBEI must be a character-type field (data type C, N, D or T). an open control structure introduced by "INTERFACE"
    Has anyone else experienced this problem.  Why can I not define these variables.

    data: l_arbei  type p decimals 1,
          l_ismnw  type p decimals 1.
      write w_ops-work_activity to l_arbei. 
      l_arbei = l_arbei - l_ismnw.          
      if l_arbei gt 0.                      
        write l_arbei to w_ops-work_activity.
      endif.
    As mentioned same error message when defining the following:
    constants:  c_delim  type x value '09'.
         split i_input1-line at c_delim into 
               w_hdr-orderid                 
               w_hdr-order_type.              
    I agree that there should be no problem with the definitions. However cannot understand why it does not like it.  Thought there might be an additional requirement for Unicode systems.

Maybe you are looking for

  • Droid2 data usage jumps from zip to 100's of MB a week

    After seeing similar threads with sudden and unexplained data usage, I want to share my problem with one possible SOLUTION! I was alerted that my account was going over the 150mb limit. I checked online my usage and saw nothing, the usual flat line a

  • Trouble with Fantom drive / Disk Utility won't erase it

    Until a few days ago, i had no problems with my Fantom 160 GB titanium drive. Then when i connected it to a freind's Mac, it started out OK fora few minutes, when my brother was playing around with creating an air network between the friend's compute

  • What is up with the Quicktime 7.2 upgrade, it DOES NOT WORK!

    Quicktime 7.2 Internet Plug-In does not work with Safari? I am very up to date with all the upgrades to maintain security, and this most recent "upgrade" while may be plugging a security hole for the iPhone does not maintain past functionality. I hav

  • Web Proxy Server Load Balancing

    I deployed Sun Jave Web Proxy Server 4.0 as a Reverse Proxy. I would also like to use it as a load balancer. As per the instructions, I configured the obj.conf file as shown below Route fn="set-origin-server" server="https://xx.xx.xx.xx" server="http

  • Pre-order contents may differ again at the last minute

    It has happened again! It happened with the new Portishead album Third. At the last minute they put a note on the page saying that the contents are subject to change without notice and the final product may differ. Then one of the bonus live tracks g