Help! IM Starnge Behavior

Hello all. I am new to IM and Sun Comm suite. I have recently installed Message Server and IM. Message Server is working but I am having issues with IM. IM is leveraging Access Manager and DS 6.3 which are installed on the same server.
Problem:
When I bring up my IM client on my local machine, which is Pidgin, I can successfully log in to the server but it seems to hang afterward. I can not see any buddy list nor can I add any buddies. Is it because I am using a third party client? How can I bring up the client on the server that was installed with the IM server.

Pidgin Debug Part 1:
(09:09:55) account: Connecting to account [email protected]/Home
(09:09:55) connection: Connecting. gc = 0x7f3304850060
(09:09:55) dns: DNS query for 'tadcom1.domain.com' queued
(09:09:55) dns: Created new DNS child 7804, there are now 1 children.
(09:09:55) dns: Successfully sent DNS request to child 7804
(09:09:55) dns: Got response for 'tadcom1.domain.com'
(09:09:55) dnsquery: IP resolved for tadcom1.domain.com
(09:09:55) proxy: Attempting connection to 192.45.194.122
(09:09:55) proxy: Connecting to tadcom1.domain.com:5222 with no proxy
(09:09:55) proxy: Connection in progress
(09:09:55) proxy: Connected to tadcom1.domain.com:5222.
(09:09:55) jabber: Sending: <?xml version='1.0' ?>
(09:09:55) jabber: Sending: <stream:stream to='domain.com' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>
(09:09:55) jabber: Recv (381): <stream:stream xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' from='domain.com' id='ad59edc.11e2774bac0._7ffd_1070742918' version='1.0'><stream:features><mechanisms xmlns='urn:ietf:params:xml:ns:xmpp-sasl'><mechanism>PLAIN</mechanism><mechanism>SUN-IDENTITY-SSO-TOKEN</mechanism></mechanisms><auth xmlns='http://jabber.org/features/iq-auth'/></stream:features>
(09:09:55) sasl: Mechs found: PLAIN SUN-IDENTITY-SSO-TOKEN
(09:09:55) sasl: No worthy mechs found
(09:09:59) sasl: Mechs found: PLAIN SUN-IDENTITY-SSO-TOKEN
(09:09:59) jabber: Sending: <auth xmlns='urn:ietf:params:xml:ns:xmpp-sasl' mechanism='PLAIN'>AEpvcmRhbl9HdWZmYWluAFBhc3N3MHJk</auth>
(09:09:59) jabber: Recv (51): <success xmlns='urn:ietf:params:xml:ns:xmpp-sasl'/>
(09:09:59) jabber: Sending: <stream:stream to='domain.com' xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' version='1.0'>
(09:09:59) jabber: Recv (294): <stream:stream xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' from='domain.com' id='ad59edc.11e2774bac0._7ffd_1070742918' version='1.0'><stream:features><bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'/><session xmlns='urn:ietf:params:xml:ns:xmpp-session'/></stream:features>
(09:09:59) jabber: Sending: <iq type='set' id='purple2b6aa688'><bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'><resource>Home</resource></bind></iq>
(09:09:59) jabber: Recv (136): <iq id='purple2b6aa688' type='result'><bind xmlns='urn:ietf:params:xml:ns:xmpp-bind'><jid>[email protected]/Home</jid></bind></iq>
(09:09:59) jabber: Sending: <iq type='set' id='purple2b6aa689'><session xmlns='urn:ietf:params:xml:ns:xmpp-session'/></iq>
(09:09:59) jabber: Recv (97): <iq id='purple2b6aa689' type='result'><session xmlns='urn:ietf:params:xml:ns:xmpp-session'/></iq>
(09:09:59) jabber: jabber_actions: have pep: NO
(09:09:59) connection: Activating keepalive.
(09:09:59) jabber: Sending: <iq type='get' id='purple2b6aa68a' to='domain.com'><query xmlns='http://jabber.org/protocol/disco#items'/></iq>
(09:09:59) jabber: Sending: <iq type='get' id='purple2b6aa68b' to='domain.com'><query xmlns='http://jabber.org/protocol/disco#info'/></iq>
(09:09:59) jabber: Recv (336): <iq from='domain.com' id='purple2b6aa68a' to='[email protected]/Home' type='result'><query xmlns='http://jabber.org/protocol/disco#items'><item jid='jud.domain.com' name='User Directory Service'/><item jid='pubsub.domain.com' name='Publish/Subscribe Service'/><item jid='muc.domain.com' name='Multi User Conference Service'/></query></iq>
(09:09:59) jabber: Sending: <iq type='get' id='purple2b6aa68c' to='jud.domain.com'><query xmlns='http://jabber.org/protocol/disco#info'/></iq>

Similar Messages

  • PLEASE HELP - Inconsistent AQ Behavior!

    HELP!!!! HELP!!!! HELP!!!!
    We are using Java 1.3 and Oracle 8.1.7's aqapi.jar. A frontend application enqueues messages OK. The other "side" of the queue dequeues these messages MOST of the time, but not all the time. If we change it from blocking forever to polling (timing out every 10 seconds and reconnecting), this still happens.
    We are seeing this with RAW payloads (as well as Object payloads).
    Storage space should not be an issue nor should network traffic with regards to the staging environment box we are dealing with.
    Here are the enqueue and dequeue options we are using:
    // Use most default Enqueue options
    AQEnqueueOption enqueueOption = new AQEnqueueOption();
    enqueueOption.setVisibility(AQEnqueueOption.VISIBILITY_IMMEDIATE)
    AQDequeueOption dequeueOption = new AQDequeueOption();
    dequeueOption.setDequeueMode(AQDequeueOption.DEQUEUE_LOCKED);
    dequeueOption.setNavigationMode(AQDequeueOption.NAVIGATION_FIRST_MESSAGE);
    dequeueOption.setWaitTime(AQDequeueOption.WAIT.FOREVER); //(or set with a time)
    dequeueOption.setVisibility(AQDequeueOption.VISIBILITY_ONCOMMIT);
    We are using CorrelationIDs to make sure we are getting the proper response to our request.
    I know JDBC drivers are not certified for JDK 1.3, but...why would it work most of the time? An example would be enqueuing 71 similar messages using the same calls and only 65 being dequeued on the other side. This example happened all within the span of 5 minutes. None of the Java calls we are using are synchronized and the enqueuing message expirations are set high enough(60+ seconds).
    We ARE NOT using JMS. We are NOT using OCI. It queue is setup as a single consumer queue. Pure Java to AQ over JDBC. There is a separate in and out queue table each with one queue (so we have separated the connections when one is committed, the other queue is not affected).
    If you need more information to help with this, please let me know. We've been trying at this for MONTHS!! HELLLPP!!!!
    null

    We are seeing similar behavior and would greatly appreciate any help.
    Our application enqueues messages without any problems, and the registered message listener receives the sent messages just fine, at first... After a while (can be minutes, hours, days), the listener just stops receiving messages. We can still enqueue messages, but the are not dequeued.
    If we stop our application and start it again, we DO receive all of the messages that were previously stuck in the queue. However, unfortunately we are not able to receive any new messages.
    If we shutdown Oracle and restart it, everything works fine again... at least until AQ wedges again.
    Oddly enough, the messages are in the 'READY' state, so you would think that the listener would receive them, but it does not.
    All indicators are that this is an Oracle AQ problem, as the only way to make things work correctly again is to stop and restart Oracle.
    We checked for trace (.trc) files when this problem occurred, but no new ones where generated.
    Any thoughts, suggestions, workarounds, tracing options that we can set, queries we can run to get more debug info, etc would be greatly appreciated.
    Please feel free to email me directly: [email protected] We would prefer to use Oracle AQ, but are on the verge of trying our luck with WebLogic JMS...
    Thank you in advance!

  • HELP! Odd behavior in Photoshop CS6. Anyone have a solution?

    Hi I am having really odd behavior in CS6. I have reset and cleared preferences. As you can see from the screenshot I have a rectangle shape layer but I have not assigned any shape layer effects to it.  PS is adding a black border on its own and I have no idea how to get rid of it. I have been using photoshop for 20 years and this is driving me nuts. I've never seen this behavior before. If I add a color overlay the line is still there. If I rasterize the shape layer then add a color overly  the outline disappears. But I don't want to raterize my shape layers. Anyone know how to get rid of it? Thank you in advance to anyone who might have a solution.

    You appear to be on Windows, so I couldn't help you anyway.
    But for the benefit of Photoshop Windows users, please consider the following:
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    A screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Help with multiple behaviors applied to a form

    I built a simple form for two purposes: to collect name and email, and allow the user to download a pdf document (free report). The user MUST successfully submit their name and email BEFORE they are allowed to download the pdf.
    To do this, I assigned the "validate form" and "open browser window" behaviors to the submit/download button, so when the form is submitted, the user is automatically taken to the pdf.
    THE PROBLEM is when the user leaves a required field blank, the validation error pops up to say "___ is required", but the pdf still opens in another tab even though the form hasn't been successfully completed.
    How can I make the pdf download conditional upon successful submission of the form? I know there has to be a way, but since I'm only familiar with HTML & CSS and have limited knowledge of javascript, PHP, etc, I cannot even begin to figure it out... I've tried searching the forums and Google for answers, but no luck.
    PLEASE HELP!
    Thank you!

    Never mind, I fixed it.
    I assigned the "open browser window" behavior to the form tag for the "onSubmit" event. That did the trick.
    So now the code looks like this:
    <form action="" method="get" name="downloadreport" onsubmit="MM_openBrWindow('assets/Capturing_Interest.pdf','','')">
    <p align="left">Name: <input name="first" type="text" class="textfield" id="first" size="29" maxlength="50" />*<br/>
         Company: <input name="company" type="text" class="textfield" id="company" size="26" maxlength="50" />*<br/>
         Your Title: <input name="position" type="text" size="25" maxlength="50" class="textfield" /><br/>
         E-mail address: <input name="email" type="text" class="textfield" id="email" size="21" maxlength="50" />*
    </p>
    <p align="left"><input name="download" type="submit" onclick="MM_validateForm('first','','R','company','','R','email','','RisEmail');return document.MM_returnValue" value="Download the free report"  /></p>
    </form>

  • Help setting the behavior of a button, possible using a variable

    Hi,
    This is my first time posting here and I'm sure I will be coming back, because I'm about to start a big project.
    The Problem:
    What I'm trying to do is get the user's input (text field = new_title), then having a button that will take that input and use it as part of a URL.
    The following will be the destination URL:
    http://www.mysite.com/wiki/index.php?title=new_title_from_text_field&action=edit&redlink=1
    The Background:
    I have installed Media Wiki in my website, but I want to have a more straight forward approach to creating new pages. So I'm creating an introductory page where the user can enter the title of the page he/she wants to create, click a button and go to the editing page from the Wiki, with their new title in place.
    Thanks, I appreciate any advice you can give me.
    Daniel

    Bregent and Michael,
    Thanks for your help, I used both of your answers and came up with the following.  I'm not sure if it's done in the "propper" way, but it accomplished what I needed.
    Please let me know what you think.
      <form action="http://www.mysite.com/wiki/index.php?title=" method="get" name="form1" target="_parent">
        <input type="text" name="title" id="title">
        <input name="action" type="hidden" id="action" value="edit">
        <input name="redlink" type="hidden" id="redlink" value="1">
        <input type="submit" name="new_page" id="new_page" value="Create">
      </form>
    Thanks,
    Daniel

  • URGENT Please help with weird behavior of test suite

    Hi All,
    I have a composite involving three operations of two different services. The weird behavior comes by the time on which I run the test suite on the EM, if I try to emulate two different operation response from one service, by the time that the flow, tries to emulate the second one, I always receive this error:
    part name="summary">
    <summary>oracle.fabric.common.FabricException: javax.wsdl.WSDLException: WSDLException: faultCode=OTHER_ERROR: Error writing stream: java.io.IOException: Can only write attribute within a tag.: WSDLException: faultCode=OTHER_ERROR: Error writing stream: java.io.IOException: Can only write attribute within a tag.</summary>
    </part>
    On the other hand if I emulate two responses of the same operation it works.
    Does any one have any idea of how to deal with this kind of test? Which seems a very simple test.
    Best regards,

    Hi thanks for your response, in detail my problem is as follows:
    1- I have a simple composite with two services and three invokes, all of the operations are two ways operations. Here´s the BPEL (Service1 Demandas, operation Actualizar; Service 2 Aviso, operations buscar, actualizar):
    <scope name="SINAUT_Aviso_SRV_Demandas_Actualizar">
    <bpelx:annotation xmlns:bpelx="http://schemas.oracle.com/bpel/extension">
    <bpelx:pattern patternName="bpelx:automated"/>
    <bpelx:analysis>
    <bpelx:property name="LastUpdateDate">9/10/10 9:35:50 AM</bpelx:property>
    <bpelx:property name="BusinessId">Scope_151babe7-bc1e-11df-3ca0-0015c5fce8ce</bpelx:property>
    </bpelx:analysis>
    </bpelx:annotation>
    <sequence>
    <bpelx:annotation xmlns:bpelx="http://schemas.oracle.com/bpel/extension">
    <bpelx:analysis>
    <bpelx:property name="BusinessId">Sequence_151babe7-bc1e-11df-3ca0-0015c5fce8ce</bpelx:property>
    <bpelx:property name="LastUpdateDate">9/10/10 9:35:50 AM</bpelx:property>
    </bpelx:analysis>
    </bpelx:annotation>
    <assign name="Assign_1">
    <copy>
    <from variable="inputVariable"
    query="/client:process/client:input/idDemada"
    part="payload"/>
    <to variable="Invoke_2_actualizar_InputVariable"
    part="payload" query="/payload/demanda/idDemanda"/>
    </copy>
    <copy>
    <from variable="inputVariable"
    query="/client:process/client:input/estadoDemanda/codigo"
    part="payload"/>
    <to variable="Invoke_2_actualizar_InputVariable"
    part="payload"
    query="/payload/demanda/estadoDemanda/codigo"/>
    </copy>
    </assign>
    <invoke name="Invoke_2"
    inputVariable="Invoke_2_actualizar_InputVariable"
    outputVariable="Invoke_2_actualizar_OutputVariable"
    partnerLink="SRV_Demandas"
    portType="ns2:SINAUT_Aviso_SRV_Demandas"
    operation="actualizar"/>
    </sequence>
    </scope>
    <scope name="SINAUT_Aviso_SRV_Avisos_Actualizar">
    <bpelx:annotation xmlns:bpelx="http://schemas.oracle.com/bpel/extension">
    <bpelx:pattern patternName="bpelx:automated"/>
    <bpelx:analysis>
    <bpelx:property name="LastUpdateDate">9/10/10 9:35:57 AM</bpelx:property>
    <bpelx:property name="BusinessId">Scope_c235386b-bc1f-11df-3ca0-0015c5fce8ce</bpelx:property>
    </bpelx:analysis>
    </bpelx:annotation>
    <sequence>
    <bpelx:annotation xmlns:bpelx="http://schemas.oracle.com/bpel/extension">
    <bpelx:analysis>
    <bpelx:property name="BusinessId">Sequence_c235386b-bc1f-11df-3ca0-0015c5fce8ce</bpelx:property>
    <bpelx:property name="LastUpdateDate">9/10/10 9:35:57 AM</bpelx:property>
    </bpelx:analysis>
    </bpelx:annotation>
    <assign name="Assign_2">
    <copy>
    <from variable="inputVariable"
    query="/client:process/client:input/ReferenciaPly"
    part="payload"/>
    <to variable="Invoke_1_actualizar_InputVariable"
    part="payload" query="/payload/aviso/referenciaPlyAviso"/>
    </copy>
    <copy>
    <from variable="inputVariable"
    query="/client:process/client:input/estadoAviso/codigo"
    part="payload"/>
    <to variable="Invoke_1_actualizar_InputVariable"
    part="payload" query="/payload/aviso/estadoAviso/codigo"/>
    </copy>
    </assign>
    <invoke name="Invoke_1"
    inputVariable="Invoke_1_buscar_InputVariable_1"
    outputVariable="Invoke_1_buscar_OutputVariable_1"
    partnerLink="SRV_Aviso"
    portType="ns1:SINAUT_Aviso_SRV_Avisos"
    operation="buscar"/>
    <assign name="Assign_4">
    <copy>
    <from expression="'12345'"/>
    <to variable="Invoke_3_actualizar_InputVariable"
    part="payload" query="/payload/aviso/referenciaPlyAviso"/>
    </copy>
    </assign>
    <invoke name="Invoke_3"
    inputVariable="Invoke_3_actualizar_InputVariable"
    outputVariable="Invoke_3_actualizar_OutputVariable_1"
    partnerLink="SRV_Aviso"
    portType="ns1:SINAUT_Aviso_SRV_Avisos"
    operation="actualizar"/>
    </sequence>
    </scope>
    2- My test suite is as follows:
    <wireActions wireSource="SINAUT_Aviso_PR_DemandasActualizar_TO_BE_/SRV_Demandas" operation="actualizar">
    <emulate duration="PT0S">
    <message>
    <part partName="payload">
    <content>
    <payload xmlns=""/>
    </content>
    </part>
    </message>
    </emulate>
    </wireActions>
    <wireActions wireSource="SINAUT_Aviso_PR_DemandasActualizar_TO_BE_/SRV_Aviso" operation="buscar">
    <emulate duration="PT0S">
    <message>
    <part partName="payload">
    <filePath>prueba_busqueda.xml</filePath>
    </part>
    </message>
    </emulate>
    </wireActions>
    <wireActions wireSource="SINAUT_Aviso_PR_DemandasActualizar_TO_BE_/SRV_Aviso" operation="actualizar">
    <emulate duration="PT0S">
    <message>
    <part partName="payload">
    <filePath>prueba_actualizar.xml</filePath>
    </part>
    </message>
    </emulate>
    </wireActions>
    3- When the test suite executes the second operation of the second service it throws this exception:
    <bpelFault><faultType>0</faultType><remoteFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="summary"><summary>oracle.fabric.common.FabricException: javax.wsdl.WSDLException: WSDLException: faultCode=OTHER_ERROR: Error writing stream: java.io.IOException: Can only write attribute within a tag.: WSDLException: faultCode=OTHER_ERROR: Error writing stream: java.io.IOException: Can only write attribute within a tag.</summary></part><part name="detail"><detail>Can only write attribute within a tag.</detail></part></remoteFault></bpelFault>
    4- if I change the second operation with the first one(buscar), it doesn't throws any exception.
    5- If this is a limitation , how can I test a composite that involves n operations of the same service?
    Kind regards and thanks for all of your support

  • Need help troubleshooting ServletAuthentication behavior

    We've been running into an issue when running a servlet we have written in WLS in conjunction with OAM. Apparently something in OAM causes ServletAuthentication.generateNewSessionID to be called, which has a number of consequences which are problematic for us.
    It appears that generateNewSessionID does the following:
    - Creates a new httpSession.
    - (Which in turn) Invokes the sessionCreated callback in any HttpSessionListener implementations.
    - Copies attributes from the old session to the new session, except that it apparently does not overwrite any attributes that were set in the sessionCreated callback.
    - Destroys the old httpSession.
    - (Which in turn) Invokes the sessionDestroyed callback in any HttpSessionListener implementations.
    This is problematic on a number of levels. It doesn't seem there isis a way for the servlet to know that the session lifecycle callbacks are being called for the purpose of switching out the session ID. Consequently, we see a sessionDestroyed callback and assume that the session has really gone away -- and so we clean out any data structures we have maintained for the session/user state. But then we get a request with the "new" session, which contains session attributes that have now become meaningless to us.
    I suspect we're missing some critical insight here. Can anybody shed some light on how servlets are supposed to work with this feature?
    Thanks,
    Josh

    What server model? What database?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "jon-rookie" <[email protected]> wrote in
    message
    news:fp49rc$19b$[email protected]..
    >I am new to Dreamweaver and am struggling with this task.
    >
    > I am trying to use the user authentication behavior to
    bring up a results
    > page
    > that will inturn allow a user to update their personal
    information in the
    > db.
    >
    > I would really appreciate it if someone could throw this
    together for me
    > so I
    > can take a look at it and then make changes and update.
    >
    > I think all that is needed is:
    >
    > login html/user auth *bases on a membership number and
    password. It
    > would
    > be really nice if it included the ability to retrieve a
    forgotten password
    > or
    > membership number which would be sent to an email.
    >
    > results html * shows the record of the user, ie name,
    address.
    > update html * the html that allows the user to update
    some of the
    > fields.
    >
    > I would really appreciate this.
    >
    >

  • Help: Strange PGA Behavior

    hi,
    during R/3 4.7 Export, PGA is very stranger. Could somebody give me help?
    DB version, oracle 9.2.0.4 Enterprise, OS, SunOS 5.8(machine is old, disk has poor performance)
    key parameters:
    pgamax_size=1073741824
    db_cache_size=1000000000
    pga_aggregate_target=2000000000
    workarea_size_policy=auto    
    PGA statistics information:
    SQL> select * from v$pgastat;
    NAME                                                                  VALUE UNIT
    aggregate PGA target parameter                                   2000000000 bytes
    aggregate PGA auto target                                                 0 bytes
    global memory bound                                                       0 bytes
    total PGA inuse                                                    23502848 bytes
    total PGA allocated                                                58076160 bytes
    maximum PGA allocated                                              59555840 bytes
    total freeable PGA memory                                           2883584 bytes
    PGA memory freed back to OS                                          327680 bytes
    total PGA used for auto workareas                                   1324032 bytes
    maximum PGA used for auto workareas                                 1726464 bytes
    total PGA used for manual workareas                                       0 bytes
    NAME                                                                  VALUE UNIT
    maximum PGA used for manual workareas                                     0 bytes
    over allocation count                                                     0
    bytes processed                                                  1.6069E+10 bytes
    extra bytes read/written                                         6.3215E+10 bytes
    cache hit percentage                                                  20.26 percent
    16 rows selected.
    Sort Location:
    SQL> select name, value from v$sysstat where name in ('sorts (memory)', 'sorts (disk)');
    NAME                                                                  VALUE
    sorts (memory)                                                        13958
    sorts (disk)                                                             22
    Qestions:
    1. why "aggregate PGA auto target"  is  0 bytes?
    2. why only a small part of PGA is used, but some sorts are performed in disk?
    Any tip is appreciated.
    Best Regard,
    Rongfeng
    Edited by: Rongfeng Shi on Aug 22, 2008 10:39 AM

    Hello Rongfeng,
    you have selected a very hard topic but let's start.
    At first the sapnote #936441 which is pointing you to the parameter pgamax_size is telling the "half-truth".
    If everyone asks something about that topic i always refer to the "ADVANCED MANAGEMENT OF WORKING AREAS IN ORACLE 9I/10G" from Joze Senegacnik. This document is very detailed and has many explanations.
    http://tonguc.yilmaz.googlepages.com/JozeSenegacnik-PGAMemoryManagementvO.zip
    > 1. why "aggregate PGA auto target" is 0 bytes?
    Check the statement from the paper: "aggregate PGA auto target u2013 SQL memory target u2013 P_A_T minus used memory for other categories in PGAs"
    > 2. why only a small part of PGA is used, but some sorts are performed in disk?
    Because your PGA is "only" 1.8 GB and you have the following limitations:
    > SMMMAX_SIZE
    > This parameter defines the maximum work area size in auto mode (serial) and defaults to 50% of pgamax_size. In Oracle 9i/10gR1 the maximum value is 0.1GB (100MB), while in 10gR2 it can go up to 0.25GB as we will see later.After one of the instance restarts I found that the pgamax_size and smmmax_size had even bigger values with P_A_T set to 4GB.
    Regards
    Stefan

  • Help with strange behavior starting a db on XP

    I have a db (9.2.0) on a W-XP machine (I am not a dba but I must handle these things because there is no dba). I dropped the instance and the db and created both again. Now I am having a strange behavior:
    When I start the windows service the database is not opened, but I need to do this if I want to connect as sysdba in order to launch the startup command. When I launch a shutdown the service is not stopped.
    I think this is not the normal behaviour because I think that, with the old db, the service used to open the db when it was started and used to close the db and instance when it was stopped.
    Some idea?

    try oradim command . e.g.
    oradim -STARTUP -SID orcl -USRPWD orclpwd -STARTTYPE srvc,inst

  • Help needed - weird behavior on 8300

    Hi,
    I have the Curve for about a month. Lately (for 3 days), the phone's acting weird. It lets me make calls and all of a sudden, it turns itself off. Initially, I thought that the phone may not have enough charge; but today it happened again about 4 times - and I had charged it overnight! I checked the battery indicator and it shows that the phone is charged fully.
    Has anyone experienced this problem?
    Thx in advance for any pointers.
    Regards. -Sam-

    I know some issues of 8100 and 8700g with similar problem. But no resolution received so those handsets and my carrier provided replacement to customers for those handsets.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • How do you stop the help window from floating to the top?

    Is there way to change the help window's behavior so that it acts like a normal window?
    It takes so long to set up seeing the problem and the help at the same time, then go back to reading and then back again.
    The floating to the top is a very unwellcome "Feature" and microsoft-like not Apple-like.

    hmslfi wrote:
    The floating to the top is a very unwellcome "Feature" and microsoft-like not Apple-like.
    That depends on your POV. Some may prefer the default behaviour, because it doesn't allow the help window to be hidden by the working window.
    Also, keep in mind that you can use the Minimise (yellow) button in the window's title bar.
    However, if you really want to change the default floating window, there is a preference you can change with the defaults command:
    $ defaults write com.apple.helpviewer NormalWindow -bool true
    Alternatively, you can enable Help Viewer's developer mode
    $ defaults write com.apple.helpviewer DevMode -bool true
    (See
    <http://www.macworld.com/article/158482/2011/03/hidehelpviewer.html>
    for details.)

  • Field values are repeating for search help.

    Hello Friends.
    I have a problem. When I create a search help for a field the identical field values are repeating. What should I do to trigger only the first time.
    for example:
    <u>Field-name</u>-                        <u>field-value</u>
    Supplier Nr ---                                 Commodity
    5001 -
                                               casting
    5002 -
                                               casting
    5003 -
                                               casting
    So when I create the search help for commodity it is showing 'casting' 3 times in a pop-up window. It should not repeat. Can you please give me the solution what should I do?

    Hi
    Search helps
    Standard search help
    Types of search helps
    Concept of search help
    Search Help Interface
    Dialog behavior of search helps
    Selection method for search helps
    Performance of search helps
    Attaching search helps
    Hierarchy of search helps
    Standard Search Help
    The input help (F4 help) is a standard function of the R/3 System. It permits the user to display a list of possible values for a screen field. A value can be directly copied to an input field by list selection.
    The fields having an input help are shown in the R/3 System by the input help key to the right of the field. This key appears as soon as the cursor is positioned on the corresponding screen field. The help can be started either by clicking on this screen element or with function key F4.
    If the number of possible entries for a field is very large, you can limit the set of displayed values by entering further restrictions.
    Further meaningful information about the displayed values is included in the display of possible entries, especially if the field requires that a formal key be entered.
    TYPES OF SEARCH HELPS
    Elementary search helps
    Describe a search path. The elementary search help must define where the data of the hit list should be read from (selection method), how the exchange of values between the screen template and selection method is implemented (interface of the search help) and how the online input help should be defined (online behavior of the search help).
    Collective search help
    Combine several elementary search helps. A collective search help thus can offer several alternative search paths.
    Search Help Interface
    Search help interface determines how the exchange of values between the screen template and the selection method is implemented.
    The search help interface defines the context data that can be used in the input help and the data that can be returned to the input mask. Analogously to the interface of a function module, the search help interface comprises interface parameters.
    When you define an interface parameter of a search help, you must also define whether it should be used to copy data to the input help (IMPORT parameter) or whether it should be used to return data from the input help (EXPORT parameter). A parameter of a search help can also have both attributes at the same time.
    The location from which the IMPORT parameters of a search help get their values and the screen fields in which the contents of the EXPORT parameters of the search help are returned are defined in the search help attachment. The search help itself should always be attached to an EXPORT parameter of the search help. If this parameter is also the IMPORT parameter, its contents are only used in the input help if it is a search string (that is, if it contains a ´*´ or a ´+´).
    You must define the parameter types of a search help. You can do this by assigning them data elements.
    Value Transport for Input Helps
    NOTE:In the above example, screen fields A, B and C are linked with parameters of the search help. As a result, values can only be transported between the screen and the search help for these three fields. Existing contents of screen fields A and B can be used for selecting the hit list since they are linked with an import parameter of the search help. The values of parameters A and C can be returned to the screen from the hit list since these parameters are declared as export parameters of the search help.
    Description of dialog behavior
    A hit list might contain plentiful number of entries. A
    dialog provides the user with an option to restrict the
    entries displayed on the hit list.
    In an input help process, the set of possible entries is presented in the dialog box as a list for displaying the hit list. The user selects the required value from this list by double clicking. Since the possible entries are often formal keys, you must be able to display further explanatory information about the possible entries in the list.
    If the set of possible entries is very large, the user should be able to define additional conditions for the attributes of the selected entry. Restricting the set of data in this way both increases the clarity of the list and reduces the system load. Additional conditions can be entered in a further dialog window, the dialog box for restricting values.
    Specifying the dialog type of a search help defines whether the dialog box for restricting values should be offered and if so under what conditions.
    The attributes in the dialog box for displaying the hit list or in the dialog box for restricting values must be defined as internal parameters of the search help. An internal parameter can also be used in only one of the two dialog boxes. It can also belong to the search help interface.
    The internal parameter types are also defined with data elements. These data elements define how the parameters are displayed in the two dialog boxes.
    Reward if usefull

  • "Unavailable Master Images Cannot be Relocated." error; Reconnect no help.

    Seeking help with strange behavior in Aperture that elicited a shrug from the Genius Bar at the local Apple store. They suggested I post a question in this forum.
    I'm using referenced files in Aperture. When trying to move some of them to a different location on the same drive, before I even get the dialog to select a location, I get the following message:
    "Unavailable Master Images Cannot be Relocated. The selected master image is either offline or not found. Please reconnect it and try again.".
    So, as instructed, I go through the steps to reconnect the images. At least I think I do since Aperture doesn't complain. I can also select "Show in Finder" and the image is found from within Aperture without incident. In other words, the image is "found". Also, the image is not tagged as "offline".
    After all of this, I get the same error: "Unavailable Master Images Cannot be Relocated. The selected master image is either offline or not found. Please reconnect it and try again.".
    So, I am a bit lost as to what to do since Aperture provides no further instructions other than to reconnect the images. I also get the same error when I try to consolidate the master into the Aperture DB.
    I hope someone has encountered this situation or similar situation before and can provide a remedy. I want to avoid reimporting the images since I will lose all keywords, and adjustments. Painful.
    Thanks,
    Joe

    Not sure if we're facing the same issue but here's what I did, avoiding the need to redo all the adjustments and add keywords again. Maybe your situation can be fixed in the same way?
    I have all my masters stored outside Aperture Library in separate folders on my hard drive. I just don't trust having all the originals inside Aperture. Maybe it makes life more difficult, I don't know. Then I import the folder to an Aperture Project to work on the photos. Maybe 1 in 20 is a 5 star keeper.
    I ran out of HD space on my MBP (Nikon D200 RAW files are 15 meg each) so I copied the folders on the HD to a backup HD and then deleted the original folders and their contents on the main HD.
    Now I want to take the 5 star pictures and make a print or upload a photo. In Aperture the referenced file is still there but I can't export or make any adjustments because "the selected Master image is either offline or not found."
    So I go to "File/Manage Referenced Files" and the File Path tells me what I have to create. It tells me the volume and path "[user]/Pictures/8-9-08 RS Shag Rock" for example, and it's in Red. So I create a new folder on the HD with that exact name. Then I go to the Back up HD, find the 8-9-08 RS Shag Rock folder, find the photo I want and drag it back into the new folder on the HD. The File Path turns black and we're back in business.
    Next time after the BU, I'll leave the folders on the main HD and just delete the contents and save a step when I need to bring some back. Obviously if you have a lot of files to move, it would just be simpler to copy the whole BU HD folder, and delete the pics on the Main HD you don't need for now.\
    Hope that helps.

  • Change default 'find' behavior to right justify

    When using Find (Ctrl-f) to search for text within a web page the current behavior is to left justify the page to the text it found. This is particularly annoying since I then have to scroll back to the left to see the beginning part of the line.
    Chrome and IE use this method so I find this extra step (I do it often for a locally produced web page) very annoying. I want to switch from using Chrome but since I use this page so often it may cause me to have to revert back to Chrome.
    Sorry, I was unable to find a web page to help explain the behavior.
    Thanks.

    Per FredMcD, I tried the 'Find Bar Tweaks' plugin that was featured but it has the same behavior. In playing around more I found that the behavior is slightly different from what I originally wrote. What I was seeing was that if the browser has scrolled to the right to find something previously then subsequent entries that match the criteria move the focus more left but not all the way - only to the match that it found.

  • Matchcode Vs Search Help ?

    Whats the difference in MATCHCODE and SEARCH HELP? What to and How to choose in between if reqd.
    Plz help me.
    Thanx.

    Hi Sagar,
    Search Help is used whenever you want create F4 on the selection screen other than the primary key field. There are two types of Search Helps. And Match code are used in older version now SAP has been replaced with Search Help.
    1 Name of a Search Help
         A search help is an object of the ABAP Dictionary with which input helps
         (F4 helps) can be defined.
         There are the following types of search helps:
         o   Elementary search helps implement a search path for determining the
             possible entries.
         o   Collective search helps contain several elementary search helps. A
             collective search help therefore provides several alternative search
             paths for possible entries.
         o   Append search helps can be used to enhance collective search helps
             delivered by SAP with customer-specific search paths without
             requiring a modification.
         The three components of the input help process described by a search
         help are the outer interface, the online behavior and the method of data
    collection.
    The outer interface is defined by specifying the interface parameters.
    They define the context information to be used in the input help process
    and the attributes to be sent to the screen by the input help.
    The search help attachment defines the field contents for parametrizing
    an import parameter and the fields of the input template in which the
    contents of the export parameters should be returned.
    The dialog behavior and data collection are defined differently for
    elementary search helps and collective search helps.
    The behavior of a search help can be made more flexible than usual with
    search help exits.Hope it clarifies your doubt.
    Regards,
    Ameer Baba.

Maybe you are looking for

  • How to calculate number of days in hijri

    Dear all, I need to develop a custom report in which i required to calculate number of days in hijri month and also the first and last day of the hijri month. we normally use Last_date(sysdate) function to get the last date of the english calender. b

  • How to go from M4V to DVD?

    Hi all - I created a Slideshow in iPhoto and exported it to mobile, medium and display versions of M4V.  I can now view them from iPhone and iPad and within iTunes, but I'd really prefer to get the Display version to DVD so I can distribute it to the

  • Bitmapping Fonts and Graphics in Mountain Lion

    My fonts graphics are bitmapping whenever I use Adobe CS5 (specifically, Illustrator and Indesign). Then I noticed that fonts and graphics are bitmapping in Chrome as well. It seems to work fine in Safari, but I still see some bitmapping, such as the

  • Creating Frame-Like Resizing Functionality

    So I’m working on a web application at work, and the customer wants a functionality that we’re not sure how to deliver yet. The closest thing I can relate it to is using frames in HTML. If you were to set up a framed web site, with two frames side-by

  • Part of screen is darker

    hi i am proud user of z3 compact, but then today for some reason after normal phone call with my head sweaty screen went crazy then after few minutes it came back to normal, but then i realized that power down button stoped functioning. after few min