JAVA side down

Our whole Java side of XI is down.  What transactions can I check to see what the problem is?
Thanks,
Matt

This problem has been "mostly" solved.  Here is the response from SAP:
During the startup of the J2EE Engine, the server starts the applicationin a certain order, according to the references between the applications.  Each of the J2EE Containers has its own mark of the state for each of the applications. If this state gets confused for some reason, the restart of the server would not help. We had to explitly stop all the applications and start the again.
Here is the workaround:
Start a new telnet session(in a cmd type telnet localhost 50008).
execute the following commands:
>> jump 0
>> add deploy
>> stop_app -all
>> start_app -all
We did this and everything came back up.  I guess this is a known issue for XI 3.0.
Thanks for all the help on this.
Matt

Similar Messages

  • Debit side Down Payment Chain Link to Sales Order

    Hi,
    I have activated EA-FIN for capturing customer retention amount. Durin creation of debit side down payment chain system asks for a sales contract number. Once the document is saved system generates the invoice with retention amount on spl GL.
    This invoice is not reflected in the document flow of sales order. Let me know if this can be possible link Debit side Down Payment Chain to sales order?
    Regards,
    Ajay Gupte

    Dear ,
    about my Q2: I want to change Line item number of sales order after posting customer down payment.
    Have you looked Q1 : that sytem did not asked to enter line item number of sales order at the time of posting down payment

  • The progress bar (in green)which was visisble at the right hand side down in Firefox 3.6.8,is not visible here which seems little unfriendly.

    The progress bar (in green)which was visisble at the right hand side down in Firefox 3.6.8,is not visible here which seems little unfriendly.Or is it available(may be there is some settings i have to apply)?Please tell me if it is available in this version or not,and if yes then how to bring it.Thanks!

    You can add the progress indicator in the Firefox 4 add-ons bar with the [https://addons.mozilla.org/firefox/addon/status-4-evar/ Status-4-Evar] add-on

  • Converting string(which is an xml from the java side) to xml in flex

    Hi,
       I have an xml from the java side which i send as string over amf. I need to convert this to xmllist or xml and bind it to a tree. Could some one help me in doing this. My label field needs to be displayName
    this is my xml that comes as string to the flex side
    <Menu>
      <MenuItem>
        <id>1</id>
        <displayName>Add</displayName>
        <menuList>
          <MenuItem>
            <id>3</id>
            <displayName>Form1</displayName>
            <menuList/>
          </MenuItem>
          <MenuItem>
            <id>4</id>
            <displayName>Form2</displayName>
            <menuList/>
          </MenuItem>
        </menuList>
      </MenuItem>
      <MenuItem>
        <id>2</id>
        <displayName>Delete</displayName>
        <menuList>
          <MenuItem>
            <id>5</id>
            <displayName>Form1</displayName>
            <menuList/>
          </MenuItem>
          <MenuItem>
            <id>6</id>
            <displayName>Form2</displayName>
            <menuList/>
          </MenuItem>
        </menuList>
      </MenuItem>
    </Menu>

    Well, for Binding you will probably need to further convert to XMLListCollection or ArrayCollection.
    Not sure.
    However, that is the way to convert String to XML.

  • J2EE_ADMIN not working in Java Side

    Hi All,
    The J2ee_admin Id is not working on the Java side, but is working on the ABAP Side. I changed the password of SAPJSF, is it bcoz of that? If yes, pls suggest what can be done.
    Regards,
    Divya

    Hi Divya,
    You can Activate the Emergency User (find the directions at http://help.sap.com/saphelp_nw04/helpdata/en/3a/4a0640d7b28f5ce10000000a155106/content.htm ).
    The you can login using the SAP* account. After which you can go in to the User Administrator and update the j2ee_admin account password. Then logout, disable the Emerengy User (SAP*), and login using the j2ee_admin account.
    hope this would resolve your issue. If still it persists, do revert.
    Regards,
    P. Kumaravel.
    Ps: Award points for heelpful answers.

  • HT1338 Help I can't get Java to down load to my Mac version 3.06 I have did the soft ware up date ?

    Help I can't get Java to down load !

    Hello BROitsJAMIE,
    Thanks for using Apple Support Communities.
    I'd like you to please follow the troubleshooting in the article linked to below in order to resolve this issue with your Mail.
    OS X Mail: Troubleshooting sending and receiving email messages
    Take care,
    Alex H.

  • How to View Tables from java side from NWDS/NWDI?

    HI All,
    I want to view the following tables from java side
    CRM_ISA_ADDRESS
    CRM_ISA_BASKETS
    CRM_ISA_BUSPARTNER
    CRM_ISA_EXTCONFIG
    CRM_ISA_EXTDATHEAD
    CRM_ISA_EXTDATITEM
    CRM_ISA_ITEMS
    CRM_ISA_OBJECTID
    CRM_ISA_SHIPTOS
    CRM_ISA_TEXTS
    How can I view them using NWDS/NWDI?
    Which DC has this tables?
    Could you please help me with the procedure to view them?
    Thanks and Regards,
    Gauri

    Hi All,
    crm/isa/isacoreddic and crm/isa/shopddic in SAP-CRMDIC are having these tables.
    Thanks and Regards,
    Gauri

  • Settlements from revenues/debit-side down payments to receiver fixed asset

    Hi
    while settling the WBS to AUC i am getting the below error
    settlements from revenues/debit-side down payments to receiver fixed asset  is not allowed
    please advise how to resolve the issue
    Thanks
    Rao...

    Hi Rao,
    As a matter of system design revenues must not be settled to assets  under construction and/or regular assets.                              
    Please see the note #741828 which explains the problem more detailed.
    In some cases it is sufficient to maintain a "dummy" settlement rule (e.g. internal order as a receiver for the revenues) if the BALANCE of the revenue cost element in the settlement period is "0". The note #741828 advises in detail on how to proceed.                                                                               
    As a last resort the note also offers a coding change in case you do not want to follow the workaround (so that message KD561 is suppressed  during settlement). You may thus remove the coding change again after  you have successfully settled.                                         
    Regards Bernhard

  • How do I get (in c) a method return value from the java side?

    I have a class in the Java side, that I pass as object to the c side.
    in the Java class I have the following method:
    public String getPgmId()
    return pgmId;
    where pgmId is a private string.
    I nees to get the value of pgmId, hopefully by using the getPgmId method.
    what I have until now is:
    JNIEXPORT jint JNICALL Java_JavaAPI_StartProgram (JNIEnv *env, jobject obj, jobject obj2)
    jmethodID methID;
    jstring jstr;
    const char *str;
    /* Get a reference to obj2 class */
    jclass cls = (*env)->GetObjectClass (env, obj2);
    if (cls == NULL){
    return;
    methID = (*env)->GetMethodID (env, cls, "getPgmId", "()Ljava/lang/String;");
    }//StartProgram
    my question is how from this point, can I get the return value of the method getPgmId().
    tnx

    jString CallStringMethod(env, obj2, methID);

  • Dual Stack system but JAva side doesn't startup

    The java side is not starting up and the only relevant message that we found is:
    LaunchRequestFunc: receive command:17, argument:0 from pid:684182
    [Thr 258] JLaunchIShutdownInvoke: set shutdown interval (stop:1317833403/end:1317833523/TO:120)
    [Thr 258] JLaunchProcessCommand: Invoke VM Shutdown
    [Thr 258] JHVM_FrameworkShutdownDirect: invoke direct shutdown
    [Thr 56096] JLaunchISetState: change state from [Running (3)] to [Waiting for stop (4)]
    [Thr 56096] JLaunchISetState: change state from [Waiting for stop (4)] to [Stopping (5)]
    Has anyone faced that kind of issue?
    tks a lot,
    Re

    Here are they:
    dev_server0
    JLaunchRequestFunc: receive command:17, argument:0 from pid:684182
    [Thr 258] JLaunchIShutdownInvoke: set shutdown interval (stop:1317833403/end:1317833523/TO:120)
    [Thr 258] JLaunchProcessCommand: Invoke VM Shutdown
    [Thr 258] JHVM_FrameworkShutdownDirect: invoke direct shutdown
    [Thr 56096] JLaunchISetState: change state from [Running (3)] to [Waiting for stop (4)]
    [Thr 56096] JLaunchISetState: change state from [Waiting for stop (4)] to [Stopping (5)]
    std_server0.out
    Stopping services.
      Service com.adobe~TrustManagerService stopped. (896 ms)
      Service com.adobe~DocumentServicesConfiguration stopped. (152 ms)
      Service tcdisdic~srv stopped. (146 ms)
      Service tceCATTPingservice stopped. (0 ms)
      Service com.adobe~PDFManipulation stopped. (809 ms)
      Service com.adobe~DocumentServicesBinaries2 stopped. (361 ms)
      Service com.adobe~DocumentServicesLicenseSupportService stopped. (317 ms)
      Service com.adobe~FontManagerService stopped. (332 ms)
      Service jms_provide
    jvm_bootstrap.out
    Missing RunningMode property - runningin NORMAL mode.
    Instance [ID12587] will run in [NORMAL] mode, performing action [NONE]
    Discovered property [instance.en.port] with value [3201] !
    Discovered property [instance.en.host] with value [hostname)!
    Synchronizing file [./.hotspot_compiler].
    ...Synched ok!
    Synchronizing file [../../SDM/program/.hotspot_compiler].
    ...Synched ok!
    Synch time: 8351 ms

  • Data Roll back When Java Server Down.

    hi
    When sending the data to DB using JDBC,the data is not effecting in Data base because of Java Server Down.
    Is there any Procedure for Rollback the data.
    Thanks in Adavnce

    There isn't any rollback functionality in XI.
    U can try resending the data from XI.
    Regards,
    Prateek

  • Iphoto 11 is letting the side down

    I eagerly upgraded to iLife 11 recently but have been very disappointed with the iPhoto format now. No longer can I name the event when the format is in photos. When I go to events the downloaded photos end up at the start of my photos events and have to be dragged down, which is very tedious. Please, please please do something about this as it is letting the side down on what was in iPhoto 9, an excellent product to use and work with. Are the problems I have found easy to solve, have I missed something??? Any constructive answers would be good.
    Cheers

    When I go to events the downloaded photos end up at the start of my photos events and have to be dragged down, which is very tedious.
    Have you explored the options in the View Menu -> Sort Events? Ascending? Descending?
    No longer can I name the event when the format is in photos.
    A workaround: Select any pic and right click on it. From the resulting menu choose 'Show Event'. Now you can rename the Event in the Info Window.
    Please, please please do something about this as it is letting the side down on what was in iPhoto 9, an excellent product to use and work with.
    iPhoto menu -> Provide iPhoto Feedback to contact the developers and let them know what you think.
    Regards
    TD

  • Date Format Question - calling a store procedure from java side

    What is the best approach to handle a DATE as an IN parameter to a procedure?
    1) emp table has a column called hire_date and its data type is DATE;
    2) the procedure tried to retrieve all employees hired on a specific date, so there will be an IN parameter called p_hire_date, what data type should it use? Something like p_hire_date          IN     emp.HIRE_Date%TYPE? <== is this correct?
    3) so inside the procedure body, when retrieving the record,
    SELECT first_name, last_name
    FROM EMP
    Where hire_date = p_hire_date <==is this correct? or when do I use to_date()?
    4) On the Java side, when calling this procedure, what data type should the hire_date use?
    Thanks,
    new2Oracle

    new2Oracle wrote:
    it seems our java team passed the hire_date as a string, so in this case, i should make the following change
    1) p_hire_date IN varchar2
    2) in the SELECT statement, it will be like
    select fname, lname
    from emp
    where hire_date = to_date(p_hire_date, 'MM/DD/YYYY') <== the hire date is stored in the table as 1/1/2005
    Would the change above work?
    Thanks,Yes it would , but:
    if it was 01/03 is this jan 3rd, or mar 1st
    Bets way is to pass in to parameters
    p_hire_date=>1/1/2005
    p_date_format=>'mm/dd/yyyy';
    then your code can say in initialisation section
    v_hire_date varchar2(30)  := to_date(p_hire-date,p_date_format);and no more conversions in your code.
    select fname, lname
    from emp
    where hire_date = v_hire_date;Much clearer this way, I think.

  • I've filmed The Mill in flood from my iPhone 4s, but when I got it on my laptop it's up-side-down, how do I turn a film the right way up so I can up-load to FB?

    I've filmed The Mill in flood from my iPhone 4s, but when I got it on my laptop it's up-side-down, how do I turn a film the right way up so I can up-load to FB?

    You can load it from your iphone directly to facebook?

  • Char1 in ABAP Side & Boolean in Java Side

    Hello,
    When importing a BAPI at Java side, I have a problem to deal with a field of type char1 (referenced to a domain with two fixed values : 'X' et ' ') which is becoming a boolean at Java Side.
    I found posts talking about the same problems but I didn't find answers.
    Have anyone encountred this problem before?
    Thanks in advance for your help,
    ImaneA

    Thank you John & Srikanth for your replies.
    My issue is that the Java side doesn't recognize the 'X' or ' '. It means that for Java side, the field is always empty.
    We tried a domain with no values instead of 'X' and ' ' but it still doesn't recognize the content of field even if it is a String now and no longer a boolean in java side.
    Do you have any idea how to solve this problem?
    Thanks in advance for your help.
    Regards,
    Imane

Maybe you are looking for