Exit Code: 34 for windows7

-------------------------------------- Summary --------------------------------------
- 1 fatal error(s), 0 error(s), 0 warning(s)
FATAL: Payload '{3F023875-4A52-4605-9DB6-A88D4A813E8D} Camera Profiles Installer 6.0.70.0' information not found in Media_db.

Hi,
We are tracking this issue at :
http://forums.adobe.com/message/4285767
Resolution for the same is also provided on the thread.
Regards,
Ashutosh

Similar Messages

  • Find SAP Exit code for Variable '0CMONTH '

    I am trying to fnd the SAP exit code for variable 0CMONTH so I can create a customer copy and make the variable 'ready for input'. Any ideas where I can find the code or a simple way to effectviely copy the delivered variable.
    I have tried looking in SE37 and then RSVAREXIT* but cannot seem to find the specific code I need.
    Thanks
    Steve

    Hi,
    Search the technical name for the variable in metadata repository and try to find the program where it is declared.  Then i hope u can go the code where it is written.
    Cheers.
    Ranga.

  • Customer exit code for fiscalyear period based on system date

    Hi Experts,
    Please provide customer exit code for fiscalyear period derive based sy-datum. Fiscal year period derivie current to previous 12 periods and current to fast 12 periods.
    Thanks,
    Subbaraju

    Hi Subbaraju,
    Please use below customer exit code for your solution. Please define declarations as per requirement.
    When 'ZFPERIOD'.
    IF I_STEP = 2.
    ztoday = sy-datum.
    zfast = sy-datum + 365.
    CALL FUNCTION 'DATE_TO_PERIOD_CONVERT'
      EXPORTING
        i_date               =  ztoday
        i_periv              = 'K4'
    IMPORTING
       E_BUPER              = PERIOD2
       E_GJAHR              = YEAR2.
    CONCATENATE YEAR2 PERIOD2 INTO FISCPERLOW.
    CALL FUNCTION 'DATE_TO_PERIOD_CONVERT'
      EXPORTING
        i_date               =  zfast
        i_periv              = 'K4'
    IMPORTING
       E_BUPER              = PERIOD2
       E_GJAHR              = YEAR2.
    CONCATENATE YEAR2 PERIOD2 INTO FISCPERHI.
    L_S_RANGE-LOW = FISCPERLOW.
    L_S_RANGE-HIGH = FISCPERHI.
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'BT'.
    APPEND L_S_RANGE TO E_T_RANGE.
    ENDIF.
    Similar code user for your previous periods also.
    Thanks,
    Chandra

  • Exit codes for shp2sdo

    Hello,
    does anybody know where I could get a list of the possible error codes for shp2sdo ?
    I'm running shp2sdo from a Java application I've written.
    I was trying to use exit codes generated from the shp2sdo converter, to tell if the application had worked correctly.
    Sometimes shp2sdo generates an exit code of 31, or when using other shapefiles, an exit code of 28.
    Thanks in advance,
    Trish.

    Hello,
    thank you for replying. I am actually using the shp2sdo executable which is downloadable from the Oracle website.
    I am attempting to run the executable using the Java Runtime class. This works successfully for the most part.
    The Java Runtime class returns an exit code. This exit code can then be used to determine if the Runtime class successfully used the shp2sdo executable.
    Here is a sample of my code:
    public boolean runSHPConverter(String rootFilename) {
    /* the format of shp2sdo.exe is:
    C:\\shp2sdo.exe C:\\uploads\\root_filename C:\\root_filename
    boolean shp2doResult = false;
    int result = runSystemCommand("cmd /C C:\\shp2sdo.exe C:\\upload\\" + rootFilename + " C:\\" + rootFilename + " \n");
    if (result == 31) {
    shp2doResult = true;
    return shp2doResult;
    private int runSystemCommand(String command) {
    int returnValue = -1;
    System.out.println(command);
    try {
    FileOutputStream fos = new FileOutputStream("c:\\error_log.txt");
    Runtime rtLoad = Runtime.getRuntime();
    Process procInsert = rtLoad.exec(command, null, new File("c:\\"));
    StreamGobbler errorGobbler = new
    StreamGobbler(procInsert.getErrorStream(), "ERROR");
    // any output?
    StreamGobbler outputGobbler = new
    StreamGobbler(procInsert.getInputStream(), "OUTPUT", fos);
    // kick them off
    errorGobbler.start();
    outputGobbler.start();
    procInsert.waitFor();
    System.out.println("Process exit code is: " + procInsert.exitValue());
    fos.flush();
    fos.close();
    returnValue = procInsert.exitValue();
    } catch (IOException e) {
    e.printStackTrace(); //To change body of catch statement use Options | File Templates.
    } catch (InterruptedException e) {
    e.printStackTrace(); //To change body of catch statement use Options | File Templates.
    return returnValue;
    Returning a non zero exit value would usually indicate that an error had occurred. But I have noticed that with the majority of shapefiles I have tried so far, shp2sdo.exe returns an exit code of 31 even though it successfully produces the .sql, .ctl, and .dat files .
    Any advice on this matter would be greatly appreciated.
    Best Regards,
    Trish.

  • Customer exit - code for variable

    Hi Friends,
    I have created a variable "CUST_EXIT_YEST" and defined the processing type as customer exit. Now would like to add code in CMOD.
    Requirement: The variable should allow take yesterday's date. Please help me with the code.
    Already there are some codes defined for other customer exit variables in CMOD. Can I add my code below that. If so please explain.
    Regards,
    Surjit

    If i'm not wrong you want to show previous day in the variable.
    At the bottom of the existing code before EndCase, u can write the below code
    Data: loc_var_range      LIKE rrrangeexit, (must be there this kind of declaration in ur existing code)
    WHEN 'CUST_EXIT_YEST'.
        IF I_STEP = '1'.
          Read Table I_T_VAR_RANGE into LOC_VAR_RANGE WITH KEY VNAM = 'CUST_EXIT_YEST'.
          myrange-SIGN = 'I'.
          myrange-OPT = 'EQ'.
          myrange-LOW = sy-datum - 1.
          APPEND myrange TO e_t_range.
        ENDIF.

  • Var. Exit code for Fiscper of Current Fiscal Year

    Hi Guys,
    I need to create a variable exit to calculate the Current Fiscal Period of Current Fiscal Year. (STrange requirement)
    Can anyone please help me with the sample code?
    Regards

    You can use DATE_TO_PERIOD_CONVERT based on the current date (sy-datum).
    call function 'DATE_TO_PERIOD_CONVERT'
    exporting
    i_date = sy-datum
    i_periv = w_fiscal_year_var
    importing
    e_buper = w_period
    e_gjahr = w_year
    exceptions
    input_false = 1
    t009_notfound = 2
    t009b_notfound = 3
    others = 4.

  • Variable Exit Code for the below requirement, Pls Urgent

    I have a WorkDate and Finish Date coming in the cube. I have created 2 fields InfoObject High and InfoObject Low.
    1. The InfoObject High should output "Gigh" if the current date (or date entered into the selection criteria) is after the workdate and the finish date is blank. 
    2. The InfoObject Low should output "Low" if the Finish Date has a value and it's greater than the WorkDate.

    Hi Raj,
    In ver 3.5 this can be done using virtual logic in transaction CMOD.  Please note you will need to key your infoobject names below.
    You will need to implement the following code within ZXRSRZZZ.
    FORM USER_<i>cubetobesepecified</i>
    FORM USER_<i>cubetobespecified</i> USING I_S_RKB1D TYPE RSR_S_RKB1D
                        CHANGING C_S_DATA TYPE ANY.
      ASSIGN COMPONENT G_POS_<i>cube_dateobjectusedforuserinput</i>
        OF STRUCTURE C_S_DATA TO <l_datekeyed>.
      ASSIGN COMPONENT G_POS_<i>cube_intoobjecthigh</i>
        OF STRUCTURE C_S_DATA TO <l_highlow>.
      ASSIGN COMPONENT G_POS_<i>cube_workdateojbect</i>
      OF STRUCTURE C_S_DATA TO <l_workdat>.
      ASSIGN COMPONENT G_POS_<i>cube_finishdateobject</i>
      OF STRUCTURE C_S_DATA TO <l_finishdat>.
      IF <l_finishdate> IS INITIAL
        AND <l_datekeyed> > <l_workdat>.
        <l_highlow> = 'High'.
      ELSEIF NOT <l_finishdate> IS INITIAL
        AND <l_datekeyed> < <l_workdat>.
        <l_highlow> = 'Low'.
      ENDIF.
    ENDFORM.
    After this is complete you will need to implement the following code in ZXRSRU02.
        l_s_chanm-chanm = '<i>dateobjectusedforuserinput<i>'.
        l_s_chanm-mode = rrke_c_mode-read.
        append l_s_chanm to e_t_chanm.
      l_s_chanm-chanm = '<i> intoobjecthigh</i> '.
      l_s_chanm-mode = rrke_c_mode-no_selection.
      append l_s_chanm to e_t_chanm.
        l_s_chanm-chanm = '<i>workdateobject<i>'.
        l_s_chanm-mode = rrke_c_mode-read.
        append l_s_chanm to e_t_chanm.
        l_s_chanm-chanm = '<i>finishdateobject<i>'.
        l_s_chanm-mode = rrke_c_mode-read.
        append l_s_chanm to e_t_chanm.
    Lastly under your Global data declarations, you will need to implement this code.
    G_POS_<i>cube_dateobjectusedforuserinput</i>,
    G_POS_<i>cube_intoobjecthigh</i>,
    G_POS_<i>cube_workdateojbect</i>,
    G_POS_<i>cube_finishdateobject</i>.
    I hope this helps.
    Kind Regards,
    Larry

  • How to use inbound exit class for more than one workflow step

    Hi All,
    In Offline Workflow Approval Scenarios where the work items are sent to outlook of non sap users inbox through workitem exit of the respective workflow item. Based on the user reply from outlook email(either approve or reject) which sends an auto reply to Offline user . We configure an inbound exit class and assign the same in the SMICM transaction. Based on the code written using SAP_WAPI function modules in inbound class exit offline user gets the user approval result and performs the action in SAP.
    My question now Is how can we use this inbound exit class for all the steps of a workflow.
    For ex: In a workflow I have a decision step followed by an activity step. First I will write the work item exit for the user decision step and inbound exit code for the user decision step and offline user executed the user decision step with approve action.
    followed by that I have an activity step for that I will code a work item exit for that activity level but how can I user the same inbound exit class for the activity step as well .
    Quick reply  would be of great  help for me.
    With Best Regards,
    Veni

    For the outbound processing you have the option of replacing the workflow exit by chancing the bsp application of the extended notification (see note 1448241 solution as an example of how to do the change) and replacing the standard links with a "mailto:...".
    As far as the inbound processing, that depends on what should be done in the activity step, if for example you have a bapi which executes what the user does you can call it in the inbound class instead of the user and then the relevant wapi (complete the workitem/raise event etc.).

  • *** ERROR = The Java VM terminated with a non-zero exit code.

    DEAR MASTERS
              after configuring SLD on integerated ABAP+JAVA   server0 not starting   
    trc file: "D:\usr\sap\W55\DVEBMGS00\work\dev_server0", trc level: 1, release: "700"
    node name   : ID9278150
    pid         : 4140
    system name : W55
    system nr.  : 00
    started at  : Sat Mar 21 08:45:23 2009
    arguments       :
           arg[00] : D:\usr\sap\W55\DVEBMGS00\exe\jlaunch.exe
           arg[01] : pf=D:\usr\sap\W55\SYS\profile\W55_DVEBMGS00_wipro5
           arg[02] : -DSAPINFO=W55_00_server
           arg[03] : pf=D:\usr\sap\W55\SYS\profile\W55_DVEBMGS00_wipro5
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=1060
           arg[06] : -DSAPSYSTEM=00
           arg[07] : -DSAPSYSTEMNAME=W55
           arg[08] : -DSAPMYNAME=wipro5_W55_00
           arg[09] : -DSAPPROFILE=D:\usr\sap\W55\SYS\profile\W55_DVEBMGS00_wipro5
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 4668] Sat Mar 21 08:58:30 2009
    [Thr 4668] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 4668] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 4668] JLaunchISetClusterId: set cluster id 9278150
    [Thr 4668] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 4668] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 4428] Sat Mar 21 08:59:58 2009
    [Thr 4428] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 4428] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 4616] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 4616] **********************************************************************
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.

    Hi,
    Please find the link below for J2EE start up problem.
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/e09e4a5e-8280-2a10-ca98-a59dd47d396d]
    Please refer to following note for VM settings.
    [https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=723909]
    Please also check the license validity on this server.
    Hope this helps.
    Manoj Chintawar

  • Customer Exit Code Error

    Hi All,
    i have an issue while executing customer exit code for a query.
    Its giving the following error
    WValue "07.2010" is too long for variable Z_RAPMONTHS
    EValue "07.201" for user-exit variable Z_RAPMONTHS is invalid
    EVariables contain invalid values.
    I>> Row: 82 Inc: LRRMSU13 Prog: SAPLRRMS
    ASystem error in program CL_RSR_OLAP_VAR and form INIT-02- (see long text)
    Requiremnt is: variable value should corresponds to last six months including current month (six months in total), e.g.  if we execute the report today (December month) the desired value should be 07.2010 - 12.2010.
    code which i have written is:
    when 'abc'.
        DATA: curr_month(2) TYPE n,
              calc_month(2) TYPE n,
              curr_year(4) TYPE n,
              prev_year(4) TYPE n.
        CLEAR:curr_month,curr_year,prev_year.
        if i_step eq 1.
          curr_month = sy-datum+4(2).
          curr_year = sy-datum+0(4).
          if curr_month = '01'.
            calc_month = curr_month + 7.
            prev_year = curr_year - 1.
           CONCATENATE calc_month '.' prev_year INTO l_s_range-low.
          else.
            calc_month = curr_month - 5.
          CONCATENATE calc_month '.' curr_year INTO l_s_range-low.
         else.
         l_s_range-low = lv_zp0003_year.
            ENDIF.
      CONCATENATE curr_month '.' curr_year INTO l_s_range-high.
          IF l_s_range-low = l_s_range-high.
              l_s_range-opt = 'EQ'.
            ELSEIF l_s_range-high IS INITIAL.
              l_s_range-opt = 'EQ'.
            ELSEIF l_s_range-low LT l_s_range-high.
              l_s_range-opt = 'BT'.
            ENDIF.
            l_s_range-sign = 'I'.
            APPEND l_s_range TO e_t_range.
    Can any one please let me where i am doing the mistake.
    Thanks & Regards.
    AKG

    remove the '.' from the below concatenate statements.
    CONCATENATE calc_month '.' curr_year INTO l_s_range-low.
    CONCATENATE curr_month '.' curr_year INTO l_s_range-high.
    use the code as
    CONCATENATE calc_month curr_year INTO l_s_range-low.
    CONCATENATE curr_month curr_year INTO l_s_range-high.

  • The Java VM terminated with a non-zero exit code.

    Hi,expert,
    I have got this error when I am trying to restart the sap Instance use
    command STARTSAP,
    The error log as below:
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 940893 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    trc file: "/usr/sap/J2E/JC00/work/dev_jcontrol", trc level: 1,
    release: "640"
    ERROR => can't retrieve client list (rc=24) [jcntrms_mt.c960]
    May 21, 2010 12:53:14... com.sap.engine.core.Framework [SAP
    J2EE Engi
    ne|MS Socket Listener] Fatal: Critical shutdown was invoked. Reason is:
    Exiting
    Listener Loop. This requires a restart of the node. Possible reason is
    an interr
    upted reconnect session to the message server.
    Thanks and Best regards,
    Michael

    Hi Michael,
    I am also facing the same issue, can you please let me know where to find the ms.hostname and enqu.hostname...It's very urgent.
    Thanks in advance..
    Regards,
    Krishna.M

  • JAVA could not start with NON - zero exit code after Config UME

    Dear Expert,
    I found some problem with JAVA. We have been success to install for JAVA.
    We can logon to that. But since we configuration for UME. We found the problem
    with startup JAVA. We can not startup for JAVA. It show for error.
    ====================================
    Error==> The JAVA VM terminated with a non - zero exit code.
    Please see SAP note 943602, section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    ====================================
    Critical shutdown was invoked. Reason is Core service security failed.
    J2EE Engine can not be started.
    ====================================
    MAC ADDRESS can not be access
    ====================================
    Java framework can not be find .... D:\usr\sap\...\jvm.jsp    ==> can not remember
    Could you analyze for me ? How to solved for this problem ?
    Regards,
    Somkeit

    Somkeit,
    What did you change in UME Configuration? 
    Please look in defaulttrace_# log and paste error here.
    What is exit code ?
    Can you revert back your UME changes and see if system starts or no.
    Thanks,
    Digesh Joshi

  • Customer exit code to calculate  Average YTD.

    Hi Experts,
    I want to create new column ( AVGYTD TRGT) in Bex report for folling data .( Which is FF data).
    I have created one formula variable(zfmvavgytd) of type customer exit. and strucked at coding part.
    so that, anybody provide customer exit code for required column(avgytd trgt). and details are as follows.
    0CALMONTH  ENO  ENAME  PERDAY_ TRGT  
    04.2011             1     ABC             100                     
    04.2011             2     BCD             200
    05.2011             1     ABC             200 
    05.2011             2     BCD             200 
    06.2011             1     ABC             300 
    06.2011             2     BCD             200 
    07.2011             1     ABC             200
    07.2011             2     BCD             200 
    till  03.2012        
    Now I want to display the column for ( AVG YTD_TRGT)   based on "0calmonth " & " ENo  "   as below
    AVG YTD_TRGT
    100           
    200
    150
    200
    200
    200
    200
    200
    calculation behind this is...
    for 04 .2011   --empno(1)  ---100/1
    for 04 .2011   --empno(2)  ---200/1
    for 05 .2011   --empno(1)  ---200+100/2
    for 05 .2011   --empno(1)  ---200+200/2
    for 06 .2011   --empno(1)  ---300200100/3
    for 06 .2011   --empno(1)  ---200200200/3
    for 07 .2011   --empno(1)  ---200300200+100/4
    for 07 .2011   --empno(1)  ---200200200+200/4

    First you need to calcualte the YTD and then Average YTD.
    Year to Date (YTD) u2013 From the 1st to entered u201CKey Dateu201D for the current year.
    Average Year to Date - YTD divided by the u201CNo of Daysu201D in year till u201CKey Dateu201D for current year.
    Check the below code for getting Previous YTD....next create a Selection restrict the KF with YTD varaible
    Below is sample code for reference.
    to calculate "Previous year to date" (User input Calday u2013 key date)
    WHEN 'ZDAYPYR'.
    IF I_STEP = 2. "after the popup
    LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE
    WHERE VNAM = 'ZPDATE'.
    CLEAR L_S_RANGE.
    L_S_RANGE-LOW = LOC_VAR_RANGE-LOW.
    L_S_RANGE-LOW(4) = L_S_RANGE-LOW(4) - 1. "low value previos year
    v_loc_date = L_S_RANGE-LOW. "take input value in another variable
    L_S_RANGE-LOW+4(4) = '0101'.
    L_S_RANGE-HIGH = v_loc_date. "high value = input, taken into another variable
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'BT'.
    APPEND L_S_RANGE TO E_T_RANGE.
    EXIT.
    ENDLOOP.
    ENDIF.

  • Exit code -333

    hi
    Is anyone familiar with the following exit code -333 for java engine restart, i could not find any reasons as why the java engine restared
    [Thr 23] Tue Sep 29 16:36:18 2009
    [Thr 23] JLaunchIExitJava: exit hook is called (rc = -333)
    [Thr 23] **********************************************************************
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    [Thr 23] SigISetIgnoreAction : SIG_IGN for signal 18
    [Thr 23] JLaunchCloseProgram: good bye (exitcode = -333)
    Thank you
    Jonu Joy

    HI,
    We are having same issue, could you please confirm how did you solved this.
    ashish

  • Java VM terminated with a non-zero exit code (-337)

    We are running a J2EE application on NW7.0 and  IBM i5 V5R4.
    The application server restarts itself after the server0 proces terminates with the following messages in the dev_server0.log
    [Thr 2057] Sat Jun 20 09:34:12 2009
    [Thr 2057] JLaunchIExitJava: exit hook is called (rc = -337)
    [Thr 2057]
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    [Thr 2057] SigISetIgnoreAction : SIG_IGN for signal 20
    [Thr 2057] JLaunchCloseProgram: good bye (exitcode = -337)
    The mentioned Sapnote 943602 refers to Note 940893, which suggest to send the logfiles to Support (which we did).
    But can anyone shed a light on this? What can we learn from the mentioned exit codes?
    Thanks
    Anita

    Hi Sunny,
    Here's the last part of the dev_server0 log:
    Sat Jun 20 09:17:38 2009
    GC 12352: live objects 6177736; collected objects 7188118; collected(KB) 775717.
    GC 12352: queued for finalization 0; total soft references 8982; cleared soft references 0.
    GC 12352: current heap(KB) 2416964; current threshold(KB) 786432.
    GC 12352: collect (milliseconds) 3423.
    GC 12352: current cycle allocation(KB) 317872; previous cycle allocation(KB) 786457.
    GC 12352: total weak references 15151; cleared weak references 0.
    GC 12352: total final references 11901; cleared final references 7466.
    GC 12352: total phantom references 0; cleared phantom references 0.
    GC 12352: total JNI global weak references 0; cleared JNI global weak references 0.
    GC 12352: collection ending 20/06/09 09:17:38
    Sat Jun 20 09:17:41 2009
    GC 12353: starting collection, threshold allocation reached.
    GC 12353: collection starting 20/06/09 09:17:41
    Sat Jun 20 09:17:44 2009
    GC 12353: live objects 6220831; collected objects 7043383; collected(KB) 785764.
    GC 12353: queued for finalization 0; total soft references 8974; cleared soft references 0.
    GC 12353: current heap(KB) 2415944; current threshold(KB) 786432.
    GC 12353: collect (milliseconds) 3003.
    GC 12353: current cycle allocation(KB) 294375; previous cycle allocation(KB) 786464.
    GC 12353: total weak references 15151; cleared weak references 0.
    GC 12353: total final references 10853; cleared final references 6411.
    GC 12353: total phantom references 0; cleared phantom references 0.
    GC 12353: total JNI global weak references 0; cleared JNI global weak references 0.
    GC 12353: collection ending 20/06/09 09:17:44
    Sat Jun 20 09:17:47 2009
    GC 12354: starting collection, threshold allocation reached.
    GC 12354: collection starting 20/06/09 09:17:47
    Sat Jun 20 09:17:54 2009
    GC 12355: starting collection, threshold allocation reached.
    Sat Jun 20 09:18:23 2009
    GC 12355: starting collection, threshold allocation reached.
    Sat Jun 20 09:20:10 2009
    GC 12355: starting collection, threshold allocation reached.
    Sat Jun 20 09:20:23 2009
    GC 12355: starting collection, threshold allocation reached.
    Sat Jun 20 09:20:30 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:20:31 2009
    GC 12355: starting collection, maximum allocation reached.
    GC 12355: starting collection, maximum allocation reached.
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:20:32 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:20:34 2009
    GC 12355: starting collection, maximum allocation reached.
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:20:35 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:20:36 2009
    GC 12355: starting collection, maximum allocation reached.
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:20:38 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:20:39 2009
    GC 12355: starting collection, maximum allocation reached.
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:20:45 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:20:46 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:20:50 2009
    GC 12355: starting collection, maximum allocation reached.
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:20:58 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:21:00 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:21:21 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:21:50 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:22:40 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:22:42 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:22:50 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:24:46 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:24:47 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:24:50 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:25:06 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:25:51 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:27:04 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:28:28 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:28:42 2009
    GC 12355: starting collection, maximum allocation reached.
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:29:19 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:30:46 2009
    GC 12355: starting collection, maximum allocation reached.
    Sat Jun 20 09:31:08 2009
    GC 12354: live objects 6994240; collected objects 6961336; collected(KB) 789682.
    GC 12354: queued for finalization 0; total soft references 8976; cleared soft references 3.
    GC 12354: current heap(KB) 4194292; current threshold(KB) 786432.
    GC 12354: collect (milliseconds) 801210.
    GC 12354: current cycle allocation(KB) 0; previous cycle allocation(KB) 4242195.
    GC 12354: total weak references 15151; cleared weak references 0.
    GC 12354: total final references 10905; cleared final references 6451.
    GC 12354: total phantom references 0; cleared phantom references 0.
    GC 12354: total JNI global weak references 0; cleared JNI global weak references 0.
    GC 12354: collection ending 20/06/09 09:31:08
    GC 12355: collection starting 20/06/09 09:31:08
    Sat Jun 20 09:31:18 2009
    GC 12356: starting collection, maximum allocation reached.
    Sat Jun 20 09:32:38 2009
    GC 12356: starting collection, maximum allocation reached.
    Sat Jun 20 09:33:48 2009
    GC 12355: collected class sun/reflect/GeneratedMethodAccessor3620979168.
    Sat Jun 20 09:33:59 2009
    GC 12355: live objects 6717156; collected objects 29066552; collected(KB) 3256489.
    GC 12355: queued for finalization 0; total soft references 8973; cleared soft references 89.
    GC 12355: current heap(KB) 4193652; current threshold(KB) 786432.
    GC 12355: collect (milliseconds) 170434.
    GC 12355: current cycle allocation(KB) 75; previous cycle allocation(KB) 0.
    GC 12355: total weak references 15164; cleared weak references 0.
    GC 12355: total final references 32619; cleared final references 28210.
    GC 12355: total phantom references 0; cleared phantom references 0.
    GC 12355: total JNI global weak references 0; cleared JNI global weak references 0.
    GC 12355: collection ending 20/06/09 09:33:59
    GC 12356: collection starting 20/06/09 09:33:59
    Sat Jun 20 09:34:01 2009
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor746382538.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor3780712466.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor168496322.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor980237086.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor1886738503.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor1251676621.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor1433437257.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor1328663959.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor3914321935.
    GC 12356: collected class sun/reflect/GeneratedConstructorAccessor333360639.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor3292847473.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor752085389.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor416310187.
    GC 12356: collected class sun/reflect/GeneratedMethodAccessor3620979168.
    GC 12356: collected class sun/reflect/GeneratedMethodAccessor2138604126.
    GC 12356: collected class sun/reflect/GeneratedConstructorAccessor2058455930.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor599442064.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor853421746.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor1143931263.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor379179616.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor1925696964.
    GC 12356: collected class sun/reflect/GeneratedSerializationConstructorAccessor57815531.
    GC 12356: collected class sun/reflect/GeneratedMethodAccessor843740711.
    GC 12356: collected class sun/reflect/GeneratedMethodAccessor2093346596.
    GC 12356: collected class sun/reflect/GeneratedConstructorAccessor1446511408.
    GC 12356: collected class sun/reflect/GeneratedConstructorAccessor1446703216.
    GC 12356: collected class sun/reflect/GeneratedConstructorAccessor1522492322.
    Sat Jun 20 09:34:02 2009
    GC 12356: collected class sun/reflect/GeneratedMethodAccessor1786850049.
    GC 12356: collected class sun/reflect/GeneratedMethodAccessor515968301.
    GC 12356: collected class sun/reflect/GeneratedMethodAccessor1786794657.
    GC 12356: collected class sun/reflect/GeneratedMethodAccessor516161133.
    GC 12356: collected class sun/reflect/GeneratedConstructorAccessor2753180717.
    GC 12356: live objects 4366863; collected objects 2655706; collected(KB) 255573.
    GC 12356: queued for finalization 0; total soft references 8976; cleared soft references 0.
    GC 12356: current heap(KB) 3147644; current threshold(KB) 786432.
    GC 12356: collect (milliseconds) 3478.
    GC 12356: current cycle allocation(KB) 25809; previous cycle allocation(KB) 0.
    GC 12356: total weak references 15164; cleared weak references 0.
    GC 12356: total final references 4422; cleared final references 11.
    GC 12356: total phantom references 0; cleared phantom references 0.
    GC 12356: total JNI global weak references 0; cleared JNI global weak references 0.
    GC 12356: collection ending 20/06/09 09:34:02
    [Thr 2057] Sat Jun 20 09:34:12 2009
    [Thr 2057] JLaunchIExitJava: exit hook is called (rc = -337)
    [Thr 2057] **********************************************************************
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    [Thr 2057] SigISetIgnoreAction : SIG_IGN for signal 20
    [Thr 2057] JLaunchCloseProgram: good bye (exitcode = -337)
    trc file: "/usr/sap/P01/DVEBMGS01/work/dev_server0", trc level: 1, release: "700"

  • Xgrid job exit code

    This should be quite simple, yet the solution still eludes me.
    When I launch a job with xgrid, such as
    #xgrid -h med -p abc -job submit /usr/bin/cal -g
    the job is submitted to an agent for execution. Some milliseconds later, the job status is changed to Finished which I can see by calling xgrid with -job attributes.
    However, in my job submission, I'm calling /usr/bin/cal -g (an illegal switch), causing cal to fail, spurting out something like
    cal: illegal option -- g
    usage: cal [-jy] [[month] year]
    cal [-j] [-m month] [year]
    ncal [-Jjpwy] [-s country_code] [[month] year]
    ncal [-Jeo] [year]
    So there I have a job in the Finished status (not Failed) but yet it failed nonetheless. My question: how can I retrieve the exit code for /usr/bin/cal? I can't see it anywhere...

    Yes, Thanks X_console, that should work.
    In the meantime, I thought of this solution that also works for me.
    When calling for a job's results, I do it first like this:
    xgrid ... -job results -id <job id> -so /dev/null
    If anything comes up there, I know an error occurred and that the job terminated abnormally. While this doesn't give me an exact exit code, it's still useful.
    Thanks again! I'll keep your solution handy for when I'm in need of a precise exit code.

Maybe you are looking for

  • Issue with filename in gui_download fn module

    Hi, i have an issue with the filename of text file that was dowloaded using gui_download fn module. PARAMETERS : p_file TYPE rlgrap-filename. CONCATENATE s_laufd-low6(2) s_laufd-low4(2) INTO gv_dt. CONCATENATE 'HINL' gv_dt '.001' INTO p_file. START-O

  • How to submit a Feature Request

    Anyone know how ot submit a feature request to the Mail team?  I'm so tired of inline attachments.  I feel like I'm using a mail client from the mid 90's.

  • Database Buffering problem in Interactive Adobe Forms

    Hi All, In our project, there is one interactive adobe form developed to create/update lead data. The lead data from Adobe Form is read using custom class and method of the same class updates the lead. (BOL programming is used to update and create le

  • Adobe Flex with xml creates cache problems....Need help

    Hi, I have created a qoute calculator in flex and the data's are pulled from an xml file, but when I upload these to server and when new xml file with new data is uploaded the application is showing with same old data. Every time I have to change the

  • Thumbnail View of Photos

    I have added some photos into a file under my document library (I can switch them to a image folder if needed), and I want to be able to see a thumbnail preview of the image.  I am having issues finding how to make the thumbnail view an option.  I am