Journal with Groups not LC

HI BPC Friends
I have created Journal Entry Template with header Information Groups and so on.
I have entered one Journal Entry with groups='EUR' and saved it.
I have seen that it saved the journal with groups= 'LC'
Is not possible to do a Journal with groups='EUR'?
thanks
regards
Michele Medaglia

Hi
Another approach is to create a folder in the local Administrators Home folder. Name it Applications. Place the applications you want to restrict access to into that folder. If you have ARD you could use the mkdir and mv commands to achieve this. In some situations I find this an easier way of managing applications rather than what's available in WorkGroup Manager. For me it only tends to work with Apple's built in applications effectively. Anything else is liable to cause a problem along the lines you mention. Some 3rd-Party applications can have dependencies that may be sited in different locations. The trick is tracking down them.
Tony

Similar Messages

  • Issue with groups not being able to run applications on remote server

    Hi all..
    I've got an older PowerMac G5 running 10.5.8 that gets the OpenDirectory accounts from our MacMini server running 10.6.5. I've got a group setup called "Children" that my kids belong to and which is managed care of the Workgroup manager. However, I find that some of my apps can't be run by any of the kids if they're in subdirectories within /Applications. They receive a "The operation could not be completed because you do not have enough access privileges." I've tried playing around with various settings and finally decided to not restrict access to any applications but the problems remain.. Some apps can be run just fine but others are out of reach.. Any ideas on how to fix this or perhaps diagnose it?
    Thx!

    Hi
    Another approach is to create a folder in the local Administrators Home folder. Name it Applications. Place the applications you want to restrict access to into that folder. If you have ARD you could use the mkdir and mv commands to achieve this. In some situations I find this an easier way of managing applications rather than what's available in WorkGroup Manager. For me it only tends to work with Apple's built in applications effectively. Anything else is liable to cause a problem along the lines you mention. Some 3rd-Party applications can have dependencies that may be sited in different locations. The trick is tracking down them.
    Tony

  • Custom IKM Knowledge Modules are not working with Group By Clause

    Hi All,
       I am facing an issue with custom IKM knowledge modules. Those are IKM Sql Incremental Update and IKM Sql Control Append.
    My Scenario is
    1. Created an interface with table on source and temporary datastore with some columns in target.
    2. In the Interface on the target i defined one column as UD1 and other column as UD2  for which group by to be implemented .
    3. Customized  IKM Sql Incremental Update  with " Group by " by making  modification in my IKM Sql Incremental Update
    detail step "Insert flow into I$ table"  i.e., i replaced like this whereever i find this <%=odiRef.getGrpBy()%> API
    Group By
    <%=snpRef.getColList("","[EXPRESSION]","","","UD1")%>,
    <%=snpRef.getColList("","[EXPRESSION]","","","UD2")%>
    Up to UD5.
    . Here in the place of [EXPRESSION] i passed column names for UD1 similarly other column name for [EXPRESSION] of UD2.
    4.Made all the proper mappings and also selected the KM's needed for that interface like CKM Sql ,IKM Sql Incremental Update.
    5. Executed the Interface with global context.
    Error i am getting in this case is :
    Caused By: java.sql.SQLSyntaxErrorException: ORA-00979: not a GROUP BY expression
      at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:462)
      at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:405)
      at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:931)
      at oracle.jdbc.driver.T4CTTIfun.receive(T4CTTIfun.java:481)
      at oracle.jdbc.driver.T4CTTIfun.doRPC(T4CTTIfun.java:205)
      at oracle.jdbc.driver.T4C8Oall.doOALL(T4C8Oall.java:548)
      at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:217)
      at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1115)
    Here the columns in the select clause are there in Group By also.
    I did the same scenario using IKM Sql to file append .In that case i am able to do it. But not with the above mentioned KM's. Please let me know if any one know it or tried with this, as it is
    high priority for me.
    Please help me out.
    Thanks,
    keerthi

    Hi Keerthi,
    If your are transfering data from Oracle to Oracle (I means source is oracle Db and target is also oracle DB) then use below KM's and group by will come automatically based on the key values you selected on interface target datastore
    1) CKM Oracle
    2) LKM Oracle to Oracle (DBLINK)
    3) IKM Oracle Incremental Update (MERGE)
    Hope this will helps to resolve your issue
    Regards,
    Phanikanth

  • Problems with GROUP BY - not a GROUP BY expression

    Hello,
    I am fighting little bit with GROUP BY expression.
    After some tests I am able to reduce the problem to following...
    When can I use column numbers in GROUP BY expression?
    Consider this situation:
    CREATE TABLE EMP4 (
       NAME VARCHAR2(10)
    COMMIT;
    INSERT INTO EMP4 VALUES('Tamara');
    INSERT INTO EMP4 VALUES('John');
    INSERT INTO EMP4 VALUES('Joseph');
    COMMIT;
    SELECT NAME, COUNT(*)
    FROM EMP4
    GROUP BY 1;
    00979. 00000 -  "not a GROUP BY expression"
    -- This is working
    SELECT NAME, COUNT(*)
    FROM EMP4
    GROUP BY NAME;Why is the GROUP BY 1 not workig?
    I am using the GROUP BY 1 because in real query there is some PL/SQL function which somehow modifies the column NAME, so I can't use the column name
    SELECT TEST_PACKAGE.AppendSomeCharacter(NAME), COUNT(*)
    FROM EMP4
    GROUP BY 1;Of course I can nest the query and move the COUNT and GROUP BY to outer query or maybe something else, but I was just curious why is the GROUP BY not working...
    Also in real query, there are 3 columns in the GROUP BY expression, so I have there GROUP BY 1, 2, 3
    Thanks for help

    hai
    try the following
    CREATE TABLE TBL(ID NUMBER,VAL VARCHAR(20));
    INSERT INTO TBL VALUES(1,'Z');
    INSERT INTO TBL VALUES(2,'X');
    INSERT INTO TBL VALUES(1,'Z');
    INSERT INTO TBL VALUES(2,'X');
    INSERT INTO TBL VALUES(3,'A');
    INSERT INTO TBL VALUES(4,'H');
    INSERT INTO TBL VALUES(5,'B');
    INSERT INTO TBL VALUES(6,'C');
    INSERT INTO TBL VALUES(7,'T');
    INSERT INTO TBL VALUES(3,'A');
    INSERT INTO TBL VALUES(4,'H');
    INSERT INTO TBL VALUES(5,'B');
    INSERT INTO TBL VALUES(6,'C');
    INSERT INTO TBL VALUES(7,'T');
    CREATE TYPE SAMPLETYPE AS OBJECT ( ID NUMBER, NAME
    VARCHAR2(25) ) ;
    CREATE TYPE SAMPETBLTYPE AS TABLE OF SAMPLETYPE;
    CREATE OR REPLACE FUNCTION SAMPLEFUNC
    p_colname varchar2
    )return SAMPETBLTYPE pipelined as
    ret_val SAMPLETYPE;
    TYPE cursor_ref IS REF CURSOR;
    fcur cursor_ref;
    di TBL%ROWTYPE;
    sqlstr varchar2(1000);
    colname varchar(30):=p_colname;
    begin
    sqlstr:='SELECT * FROM TBL ORDER BY '|| colname ;
    DBMS_OUTPUT.PUT_LINE(sqlstr);
    open fcur FOR sqlstr;
    loop
    FETCH fcur INTO di;
    EXIT WHEN fcur%NOTFOUND;
    ret_val:=SAMPLETYPE(di.ID,di.VAL);
    PIPE ROW(ret_val);
    end loop;
    close fcur;
    return;
    end;     
    select * from table(SAMPLEFUNC('ID'));
    select * from table(SAMPLEFUNC('VAL'));

  • Currency conversion with Group consolidation does not work

    Currency Conversion WITHOUT group consolidation works (script logic reads CURRENCY = %GROUPS_SET%) which puts out values in USD. The values were translated correctly as per the exchange rates.
    Now, since we need consolidation, I ran currency consolidation WITH group consolidation (I changed the script logic to read GROUP = %GROUPS_SET%). FXtrans package runs successfully with 0 records (0 submitted, 0 success, 0 fail).
    I also referred NOTE 1519146.
    Please advice.
    Thanks,
    Tagz

    Hi,
    You can try to use %GROUPS_DIM% or the dimension name directly in the dynamic script as suggested.
    And also try after modifying your currency conversion script as GROUPS = %GROUPS_SET%. If this does not work please try
    by hardcoding GROUPS=Value in the script and let us know how it works.
    Hope this helps.
    Regards,
    Shoba

  • Number group not maintained for WITH HOLDING TAX challan

    Dera frends can you help in solving the problem.
    I have configured WHT it is posting well in vendor a/c and posting in tax account too. but while executing remittence challan System giving message " number group not maintained for CO code xyz section IEQEWT! and business places 194c.
    where company code - XYZ
    official withholding tax code - 194c
    business place EWT1.

    Hi
    Pls follow the path
    IMG>Financial Accounting (New)>Withholding Tax>Extended Withholding Tax>Postings>Certificate Numbering for Withholding Tax
    Pls assign points if the information is useful to you
    Regards
    Sanil Bhandari

  • Group messaging not working with groups that contain non iphone users

    I have an Iphone 5 and for some reason I can't send/receive group messages with groups that contain non Iphone users.  Basically I recieve single text messages/imessage from each person who responds to the group message.  This is incredibly annoying.

    Hello, megbu36. 
    Thank you for visiting Apple Support Communities.
    Check to make sure that group messaging is enabled.  Go to Settings > Messages and turn on Group messaging.
    iOS: Understanding group messaging
    http://support.apple.com/kb/HT5760
    Cheers,
    Jason H.

  • AD Group not populated with members

    I have connect to my AD on my OSX Lion server 10.7.3. Mobile logins and id via terminal are working fine. Under Workgroup Manager, I can see all the groups and users from the AD and I am able to see users and which groups they belong to. However, under groups, I am unable to see the members of the group. Any ideas?

    I'm hoping the rumored 10.7.4 addresses this and another issue I am having with groups.  My group permissions aren't being applied to the parent/shared folders.  I have to assign individual users to each shared folder, its as if groups don't even exsist.
    --Dave

  • DISTINCT on object type collection not working with GROUP BY

    Hello,
    I have an object type with collection defined as:
    create or replace type individu_ot as object (
       numero_dossier          number(10),
       code_utilisateur        varchar2(8 char),
       nom                     varchar2(25 char),
       prenom                  varchar2(25 char),
       map member function individu_map return number
    create or replace type body individu_ot is
       map member function individu_map return number
       is
       begin
          return SELF.numero_dossier;
       end individu_map;
    end;
    create or replace type individu_ntt is table of individu_ot
    /When I use it in simple SQL without any aggregation, the distinct keyword works well and returns me the distinct entry of my object type in the collection:
    SQL> select cast(collect(distinct individu_ot(indivmc.numero_dossier, indivmc.idul, indivmc.nom, indivmc.prenom)) as individu_ntt) as distinct_list
    from   site_section_cours    sisc
              inner join enseignant_section_mc   ensemc
              on sisc.code_session = ensemc.code_session and
                 sisc.numero_reference_section_cours = ensemc.numero_reference_section_cours
              inner join individu_mc indivmc
              on ensemc.numero_dossier_pidm = indivmc.numero_dossier
    where  sisc.seq_site_cours = 6
    DISTINCT_LIST(NUMERO_DOSSIER,CODE_UTILISATEUR,NOM,PRENOM)                                                                                                                                                                                            
    INDIVIDU_NTT(INDIVIDU_OT(15,PROF5,Amidala,Padmé))                                                                                                                                                                                                    
    1 row selected.However in SQL with broader selection with group by, the distinct isn't working anymore.
    SQL> select *
    from   (
             select sisc.seq_site_cours,
                    cast(collect(distinct individu_ot(indivmc.numero_dossier, indivmc.idul, indivmc.nom, indivmc.prenom)) as individu_ntt) as distinct_list
             from   site_section_cours      sisc
                       inner join enseignant_section_mc   ensemc
                       on sisc.code_session = ensemc.code_session and
                          sisc.numero_reference_section_cours = ensemc.numero_reference_section_cours
                       inner join individu_mc indivmc
                       on ensemc.numero_dossier_pidm = indivmc.numero_dossier
             group by sisc.seq_site_cours
    where seq_site_cours = 6
    SEQ_SITE_COURS DISTINCT_LIST(NUMERO_DOSSIER,CODE_UTILISATEUR,NOM,PRENOM)                                                                                                                                                                                            
                 6 INDIVIDU_NTT(INDIVIDU_OT(15,PROF5,Amidala,Padmé),INDIVIDU_OT(15,PROF5,Amidala,Padmé),INDIVIDU_OT(15,PROF5,Amidala,Padmé),INDIVIDU_OT(15,PROF5,Amidala,Padmé),INDIVIDU_OT(15,PROF5,Amidala,Padmé))                                                    
    1 row selected.there is case where I need to return more than one collections, with distinct entries in it.
    Is there something I am missing?
    Thanks
    Bruno

    Not a bug, rather an undocumented feature.
    Here are some alternatives you might want to test :
    1) Using the SET operator to eliminate duplicates :
    SELECT sisc.seq_site_cours,
           set(
             cast(
               collect(individu_ot(indivmc.numero_dossier, indivmc.idul, indivmc.nom, indivmc.prenom))
               as individu_ntt
           ) as distinct_list
    FROM site_section_cours sisc
         INNER JOIN enseignant_section_mc ensemc
                 ON sisc.code_session = ensemc.code_session
                 AND sisc.numero_reference_section_cours = ensemc.numero_reference_section_cours
         INNER JOIN individu_mc indivmc
                 ON ensemc.numero_dossier_pidm = indivmc.numero_dossier
    GROUP BY sisc.seq_site_cours
    ;2) Using MULTISET with a subquery
    SELECT sisc.seq_site_cours,
           CAST(
             MULTISET(
               SELECT distinct
                      indivmc.numero_dossier, indivmc.idul, indivmc.nom, indivmc.prenom
               FROM enseignant_section_mc ensemc
                    INNER JOIN individu_mc indivmc
                            ON ensemc.numero_dossier_pidm = indivmc.numero_dossier
               WHERE sisc.code_session = ensemc.code_session
               AND sisc.numero_reference_section_cours = ensemc.numero_reference_section_cours
             AS individu_ntt
           ) AS distinct_list
    FROM site_section_cours sisc
    ;

  • How Journal Import groups records from GL_INTERFACE into Journal Headers

    Hello,
    Does anyone know how or using what criteria the Journal Import program groups records from the GL_INTERFACE into Journal Entries?
    The R12 User Guide says that :
    REFERENCE4 (Journal entry name): Enter a journal entry name for your journal entry.
    Journal Import creates a default journal entry name using the following format:
    (Category Name) (Currency) (Encumbrance Type ID, if applicable) (Currency
    Conversion Rate, if applicable) (Currency Conversion Date, if applicable) (Originating
    Balancing Segment Value), chopped to the first 100 characters. If the above results in
    multiple journals in the same batch with the same name, then additional characters are
    chopped off, and a 2, 3, 4, and so on, is added for the second, third, fourth, journals with
    the same name.
    Does it mean that for every unique combination of Category+Currency+CurrencyConversion Rate+Currency Conversion Date, a Journal Header would be created? I also found that although not mentioned in the user guide, if the Accounting Date within a group of records is different, the import program includes accounting date to the above criteria and tries to create separate Journal headers per Accounting Date.
    Also, is there a way to override this ( Category+Currency+CurrencyConversion Rate+Currency Conversion Date) criteria?
    Thanks,
    Manish

    any suggessions on the above query?
    Thanks & regards
    Aboo

  • Report with grouping issue

    I have a report which have year(2008), Category(0-1,2-3, ALL), product(0,1,2,3,4..), % sales. I group by all the category elements and called it as All, I am not getting the right percentage sales for the Category ALL other wise for 0-1,2-3 i am getting it right. Please advise where i am doing it wrong. please find the blog for a screen shot of my issue.
    http://ravibiblog.blogspot.com/2012/04/report-with-grouping-issue.html
    Thanks,
    RC

    Pl post details of OS, database and EBS versions. Pl see if these MOS Docs can help
    FARXPBSH Failing With "Program was terminated by signal 11" or "Program was terminated by signal 10"          (Doc ID 742729.1)
    Publishing RXAPPYAC: The FARXPBSH Ends With 'Signal 11' Error          (Doc ID 432797.1)
    RXi RX Reports Failing With Program Was Terminated By Signal 10 or 11 Errors After FA Rollup Patch 6          (Doc ID 737963.1)
    Program was Terminated by Signal 11 when Running Rxi Reports          (Doc ID 559425.1)
    HTH
    Srini

  • Error in communicating with Group Administration Server

    Hello everyone, i am requesting your help for an issue with LMS 4.2.5
    When i browse to Admin-> Group Management -> Fault.
    I get the following:
    OGS Server Error
    Error
    Error in communicating with Group Administration Server.
    It may be down or not yet up. Please make sure that the Group Administration Server is up and running, then refresh the page.
    here is the pdshow output
    pdshow
            Process= ESS
            State  = Program started - No mgt msgs received
            Pid    = 5536
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:21
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= EssMonitor
            State  = Running normally
            Pid    = 5567
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:25
            Stop   = Not applicable
            Core   = Not applicable
            Info   = ESS is fully up now !
            Process= EventFramework
            State  = Program started - No mgt msgs received
            Pid    = 5584
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:26
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= SyslogCollector
            State  = Running normally
            Pid    = 5585
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:26
            Stop   = Not applicable
            Core   = Not applicable
            Info   = SyslogCollector Started at Fri Oct 31 14:13:28 CST 2014
            Process= RMEDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 5586
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:26
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= FHDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 5663
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:30
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= EPMDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 5696
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:34
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= EPMServer
            State  = Running normally
            Pid    = 5729
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:38
            Stop   = Not applicable
            Core   = Not applicable
            Info   = EPMServer is up and running
            Process= AdapterServer
            State  = Program started - No mgt msgs received
            Pid    = 5748
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:42
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= AdapterServer1
            State  = Program started - No mgt msgs received
            Pid    = 5749
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:42
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= FHServer
            State  = Running normally
            Pid    = 5750
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:42
            Stop   = Not applicable
            Core   = Not applicable
            Info   = FHServer started.
            Process= INVDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 5751
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:42
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= PMServer
            State  = Running normally
            Pid    = 5936
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:46
            Stop   = Not applicable
            Core   = Not applicable
            Info   = PMServer is up and running
            Process= IpmDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 5960
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:50
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= UPMDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 5993
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:54
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= UPMDbMonitor
            State  = Running normally
            Pid    = 6026
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:58
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DbMonitor Running Normally.
            Process= ANIDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 6027
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:13:59
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= MACUHIC
            State  = Running normally
            Pid    = 6055
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:03
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Started.
            Process= UTLITE
            State  = Running normally
            Pid    = 6056
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:03
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Started.
            Process= FDRewinder
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= CmfDbEngine
            State  = Program started - No mgt msgs received
            Pid    = 6057
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:03
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= CmfDbMonitor
            State  = Running normally
            Pid    = 6183
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:08
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DbMonitor Running Normally.
            Process= DfmBroker
            State  = Running normally
            Pid    = 6190
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:09
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DfmBroker is running normally
            Process= DfmServer
            State  = Running normally
            Pid    = 6322
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:13
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DfmServer initialized OK.
            Process= DfmServer1
            State  = Running normally
            Pid    = 6323
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:13
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DfmServer1 initialized OK.
            Process= DFMLogServer
            State  = Program started - No mgt msgs received
            Pid    = 6324
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:13
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= DFMCTMStartup
            State  = Administrator has shut down this server
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = 11/03/14 11:55:05
            Stop   = 11/03/14 11:55:05
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= FHPurgeTask
            State  = Transient terminated
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = 11/03/14 00:00:00
            Stop   = 11/03/14 00:00:44
            Core   = Not applicable
            Info   = DPS Task FHPurgeTask completed at Mon Nov 03 00:00:44 CST 2014. For status check Job Browser UI.
            Process= DFMMultiProcLogger
            State  = Program started - No mgt msgs received
            Pid    = 6327
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:13
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= CSDiscovery
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= DCRDevicePoll
            State  = Transient terminated
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = 11/03/14 09:15:02
            Stop   = 11/03/14 09:15:50
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= CSRegistryServer
            State  = Running normally
            Pid    = 6328
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:13
            Stop   = Not applicable
            Core   = Not applicable
            Info   = CSRegistryServer is running
            Process= Tomcat
            State  = Program started - No mgt msgs received
            Pid    = 6330
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:13
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= TomcatMonitor
            State  = Running normally
            Pid    = 6670
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:14:17
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Tomcat Server up
            Process= Apache
            State  = Running normally
            Pid    = 7183
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:02
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Web Server initialized ok.
            Process= DCRServer
            State  = Running normally
            Pid    = 7204
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:06
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DCRServer is up and running
            Process= CMFOGSServer
            State  = Program started - No mgt msgs received
            Pid    = 7257
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:12
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= TISServer
            State  = Program started - No mgt msgs received
            Pid    = 7258
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:12
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= DFMOGSServer
            State  = Program started - No mgt msgs received
            Pid    = 7323
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:16
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= NOSServer
            State  = Running normally
            Pid    = 7375
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:20
            Stop   = Not applicable
            Core   = Not applicable
            Info   = NOSServer is up and running
            Process= PTMServer
            State  = Running normally
            Pid    = 7376
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:20
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Started Successfully
            Process= InventoryCollector
            State  = Running normally
            Pid    = 7377
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:20
            Stop   = Not applicable
            Core   = Not applicable
            Info   = InventoryCollector is up and running
            Process= Interactor
            State  = Program started - No mgt msgs received
            Pid    = 7496
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:24
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= InventoryCollector1
            State  = Program started - No mgt msgs received
            Pid    = 7497
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:24
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= Interactor1
            State  = Program started - No mgt msgs received
            Pid    = 7589
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:28
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= UPMProcess
            State  = Running normally
            Pid    = 7590
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:28
            Stop   = Not applicable
            Core   = Not applicable
            Info   = UPMProcess started successfully.
            Process= UTManager
            State  = Running normally
            Pid    = 7591
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:28
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Started.
            Process= EssentialsDM
            State  = Running normally
            Pid    = 7592
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:28
            Stop   = Not applicable
            Core   = Not applicable
            Info   = RME Device Management started.
            Process= ICServer
            State  = Running normally
            Pid    = 7730
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:31
            Stop   = Not applicable
            Core   = Not applicable
            Info   = ICServer started.
            Process= EnergyWise
            State  = Running normally
            Pid    = 7923
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = EnergyWise Process is running normally Fri Oct 31 14:16:45 CST 2014
            Process= PMCOGSServer
            State  = Program started - No mgt msgs received
            Pid    = 7924
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= ConfigMgmtServer
            State  = Running normally
            Pid    = 7925
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = DCMA is running normally Fri Oct 31 14:17:02 CST 2014
            Process= ConfigUtilityService
            State  = Running normally
            Pid    = 7926
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = ConfigUtilityService started.
            Process= CAAMServer
            State  = Running normally
            Pid    = 7927
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = CAAMServer started.
            Process= VNMServer
            State  = Program started - No mgt msgs received
            Pid    = 7928
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= WlseUHIC
            State  = Running normally
            Pid    = 7929
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Started.
            Process= IPMOGSServer
            State  = Program started - No mgt msgs received
            Pid    = 7940
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= TopoServer
            State  = Program started - No mgt msgs received
            Pid    = 7941
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= LicenseServer
            State  = Program started - No mgt msgs received
            Pid    = 7942
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= NameServer
            State  = Program started - No mgt msgs received
            Pid    = 7946
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:35
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= NameServiceMonitor
            State  = Program started - No mgt msgs received
            Pid    = 8205
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:39
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= EDS
            State  = Running normally
            Pid    = 8290
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:16:43
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Initialization complete
            Process= ANIServer
            State  = Running with busy flag set
            Pid    = 8768
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:17:14
            Stop   = Not applicable
            Core   = Not applicable
            Info   = ANIServer started.
            Process= UTMajorAcquisition
            State  = Transient terminated
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = 11/03/14 10:00:00
            Stop   = 11/03/14 10:14:13
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= EDS-GCF
            State  = Running normally
            Pid    = 8807
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:17:18
            Stop   = Not applicable
            Core   = Not applicable
            Info   = GCF Initialization complete at Fri Oct 31 14:17:53 CST 2014
            Process= jrm
            State  = Running normally
            Pid    = 8808
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:17:18
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= DataPurge
            State  = Administrator has shut down this server
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:18:12
            Stop   = 10/31/14 14:19:11
            Core   = Not applicable
            Info   = DataPurge initialization completed at Fri Oct 31 14:19:11 CST 2014.
            Process= IPMProcess
            State  = Program started - No mgt msgs received
            Pid    = 9155
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:18:12
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= CTMJrmServer
            State  = Running normally
            Pid    = 9156
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:18:12
            Stop   = Not applicable
            Core   = Not applicable
            Info   = CTMJrmServer started.
            Process= SyslogAnalyzer
            State  = Running normally
            Pid    = 9246
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:18:23
            Stop   = Not applicable
            Core   = Not applicable
            Info   = SyslogAnalyzerService Started at Fri Oct 31 14:18:35 CST 2014
            Process= ChangeAudit
            State  = Program started - No mgt msgs received
            Pid    = 9247
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:18:23
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= 1014
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 1965
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 1964
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 2360
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 3056
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 3104
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 1001
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 3177
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 3206
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 1015
            State  = Never started
            Pid    = 0
            RC     = 0
            Signo  = 0
            Start  = N/A
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Not applicable,
            Process= 1524
            State  = Program started - No mgt msgs received
            Pid    = 21804
            RC     = 0
            Signo  = 0
            Start  = 11/02/14 19:00:00
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= 3306
            State  = Program started - No mgt msgs received
            Pid    = 17433
            RC     = 0
            Signo  = 0
            Start  = 11/03/14 11:37:17
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
            Process= 1005
            State  = Running normally
            Pid    = 19289
            RC     = 0
            Signo  = 0
            Start  = 11/03/14 12:00:00
            Stop   = Not applicable
            Core   = Not applicable
            Info   = 1005 started.
            Process= diskWatcher
            State  = Program started - No mgt msgs received
            Pid    = 9249
            RC     = 0
            Signo  = 0
            Start  = 10/31/14 14:18:23
            Stop   = Not applicable
            Core   = Not applicable
            Info   = Application started by administrator request.
    Thanks in advance for your help.
    Best regards.

    Also when i click the alarms bar that is sitting in the bottom right i got these in DFMOGSServer.log
    [ Thu Nov 06  15:25:37 CST 2014 ] ERROR  com.cisco.nm.xms.ogs.kilner10.KilnerEventConsolidator makeEvent  - MAKE CONSOLIDATED_DFMOGS_EVENT: 9 data:
    [ Thu Nov 06  15:25:46 CST 2014 ] FATAL  com.cisco.nm.xms.ogs.server.OGSServer main  - Exception while OGS Server start up: CTMRegistryClient::addNewURNEntry  URN : ogs_server_urn ErrMsg : URN already in use
    com.cisco.nm.xms.ogs.util.OGSException: CTMRegistryClient::addNewURNEntry  URN : ogs_server_urn ErrMsg : URN already in use
            at com.cisco.nm.xms.ogs.server.OGSImpl.publishURN(OGSImpl.java:1396)
            at com.cisco.nm.xms.ogs.server.OGSServer.main(OGSServer.java:73)
    [ Thu Nov 06  15:31:54 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl isUserInTable  -
    java.lang.NullPointerException
            at com.cisco.nm.trx.epm.providers.persistence.ResultSetWrapper.next(Unknown Source)
            at com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl.isUserInTable(GroupUserImpl.java:171)
            at com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl.processCommand(GroupUserImpl.java:61)
            at com.cisco.nm.cuom.eventmon.webapp.AbstractCommandProcessor.execute(AbstractCommandProcessor.java:94)
            at com.cisco.nm.cuom.eventmon.webapp.EventMonitoringServlet.doPost(EventMonitoringServlet.java:202)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
            at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
            at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:311)
            at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:776)
            at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:705)
            at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:898)
            at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690)
            at java.lang.Thread.run(Thread.java:662)
    [ Thu Nov 06  15:31:54 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.GroupManager getDevicesForNonOGSGroup  - getDevicesForNonOGSGroup() called with Unreachable Devices
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.GroupManager getDevicesForNonOGSGroup  - getDevicesForNonOGSGroup() Got 9 devices from TIS
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.GroupManager getDevicesForNonOGSGroup  - getDevicesForNonOGSGroup() called with Unmanaged Devices
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.GroupManager getDevicesForNonOGSGroup  - getDevicesForNonOGSGroup() called with Suspended Devices
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.GroupManager getDevicesForNonOGSGroup  - getDevicesForNonOGSGroup() Got 0 devices from TIS
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl isUserInTable  -
    java.lang.NullPointerException
            at com.cisco.nm.trx.epm.providers.persistence.ResultSetWrapper.next(Unknown Source)
            at com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl.isUserInTable(GroupUserImpl.java:171)
            at com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl.processCommand(GroupUserImpl.java:61)
            at com.cisco.nm.cuom.eventmon.webapp.AbstractCommandProcessor.execute(AbstractCommandProcessor.java:94)
            at com.cisco.nm.cuom.eventmon.webapp.EventMonitoringServlet.doPost(EventMonitoringServlet.java:202)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
            at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
            at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:311)
            at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:776)
            at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:705)
            at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:898)
            at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690)
            at java.lang.Thread.run(Thread.java:662)
    [ Thu Nov 06  15:31:55 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl isUserInTable  -
    java.lang.NullPointerException
            at com.cisco.nm.trx.epm.providers.persistence.ResultSetWrapper.next(Unknown Source)
            at com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl.isUserInTable(GroupUserImpl.java:171)
            at com.cisco.nm.cuom.eventmon.webapp.GroupUserImpl.processCommand(GroupUserImpl.java:61)
            at com.cisco.nm.cuom.eventmon.webapp.AbstractCommandProcessor.execute(AbstractCommandProcessor.java:94)
            at com.cisco.nm.cuom.eventmon.webapp.EventMonitoringServlet.doPost(EventMonitoringServlet.java:202)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
            at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
            at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
            at org.apache.jk.server.JkCoyoteHandler.invoke(JkCoyoteHandler.java:190)
            at org.apache.jk.common.HandlerRequest.invoke(HandlerRequest.java:311)
            at org.apache.jk.common.ChannelSocket.invoke(ChannelSocket.java:776)
            at org.apache.jk.common.ChannelSocket.processConnection(ChannelSocket.java:705)
            at org.apache.jk.common.ChannelSocket$SocketConnection.runIt(ChannelSocket.java:898)
            at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:690)
            at java.lang.Thread.run(Thread.java:662)
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    [ Thu Nov 06  15:32:05 CST 2014 ] ERROR  com.cisco.nm.cuom.eventmon.api.impl.HbmDBManager executeQuery  - ExecuteQuery, returnList is empty or NULL, []
    Don´t know much about databases, but it seems im missing some important tables or data

  • Are you disappointed and frustrated with the Note 3? I feel the pain!

    I feel everyone's pain with the Note 3 Issues!  I have been in the tech field for 20 years and Verizon treats me as if it is the first time they are hearing about the issues! Rather that work on a fix, I've been told that I can leave my contract with no penalties!
    I have documentation and screen shots of all my issues and here is the short list of what I've been through....
    1. 80 + hours on the phones with a support team that close tickets without resolution, transfers you around the country to different call centers to start all over again,
    2. 3 emails to Verizon Executive Office
    3. A refurbished phone replacement of my brank NEW Note 3 that I was told would definitely fix the issues..
    4. 4 Visits to Verizon stores, 2 Simm Card replacements, 2 Network Extenders, replacement charger cord and new battery
    5. Conference calls with Samsung
    6. Been offered a less expensive phone replacement for "free" ... yeah Verizon trade my Mercedes priced phone for a Neon...
    7. Calls not returned by support agents
    8. Text messages from technicians initiated by Verizon to me, from their work domain, never responded after multiple conversations with screen shots sent showing my issue
    My issues:
    1. Network signal drops constantly in my home. No mobile network errors, dropped calls, hanging texts, 1x signals. I am told by one group that I am in a 4g covered area and the other group that I am in a weak coverage area! My other Verizon phone has 4g yet support can't understand my logic that it is a phone issue!
    2. Slow charging messages to use the original charger with my screen shot plugged into the brand new SAMSUNG charger
    3. Battery usage of 10% per hour when my phone would last all day before the KitKat update and still have almost 70% remaining
    4. Overnight battery drainage in 7 hours from 91% to 27% while OFF..no wifi on and no Bluetooth on
    5. PIctures in my Gallery, that I can see and get file information for that are NOT there in the SD folder identified,  and then mysterious disappear forever
    All since the mandatory software update that you can not refuse, delete or revert back to factory version!
    So now they are going to bring the Note 4 into the mix with KitKat 4.4.4 before they update and fix the software for the owners of the Note 3...
    So what do I do?  Switch to the Note 4 or wait or wait months with TERRIBLE service while Verizon tries to fix a bad update?    By the time that happens Lollipop with be out!
    This is so frustrating... the big 3 point the fingers around rather than collaborate..
    Google makes the base Android Software update for a hardware device manufactured by Samsung that is sold by and placed on a Verizon Network. Verizon tweaks the software for "their" business. Verizon sends refurbished phones while under factory 1 year Warranty and sends devices . Samsung says everything leaves their business working properly but I can send my phone to them and be without my phone for 10 days while they "properly" flash the device for free.  They tell me  Verizon does not flash the device the same way and their way is "better". Who do I trust?  And be without my phone for 10 days because Samsung "rigorously" tests everything??? 
    And to top it all off... I wrote to Samsung's "Voice of the Customer" which is supposedly and direct complaint to the Executive Level. I wrote 3 times and 3 weeks later still no contact from Samsung. They should call it the "Voice into the Abyss!"
    I'm sooooooooooo disappointed with my experience this year....

    gooeysgran, we don't want this to be an ongoing issue for you. Have you powered your device off/on since retrieving that software update? Have you tried removing that Wi-Fi connection in the settings of your device?
    For more device support, click http://vz.to/1kDL3MI
    LasinaH_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • How to create Matrix with Group report layout in xml

    Hi,
    i would be glad if anyone could tell me How to create Matrix with Group report layout in xml?
    Here i am attaching the required design doc
    below is the code
    select COST_CMPNTCLS_CODE,
    -- crd.RESOURCES,
    NOMINAL_COST,
    cmm.COST_MTHD_CODE,
    -- crd.COST_TYPE_ID,
    gps.period_code
    -- ORGANIZATION_ID
    from CM_RSRC_DTL crd,
    gmf_period_statuses gps,
    CM_MTHD_MST cmm,
    CR_RSRC_MST crm,
    CM_CMPT_MST ccm
    where gps.period_id = crd.PERIOD_ID
    and crd.cost_type_id = cmm.cost_type_id
    and crd.RESOURCES = crm.RESOURCES
    and crm.COST_CMPNTCLS_ID = ccm.COST_CMPNTCLS_ID
    and gps.period_code in (:p_period1, :p_period2, :p_period3)
    group by COST_CMPNTCLS_CODE, cmm.COST_MTHD_CODE, gps.period_code,NOMINAL_COST
    order by 1,2,3,4.
    The o/p of the report shoud be as given below
              Period-1     Period-2     Period-3     Period-4
    COMPONENT                         
    LABOUR - DIRECT                         
         Actual     1     2     3     4
         Actual Rate     10     10     10     10
         Standard Rate                    
         Var%                    
    DEPRICIATION-DIRECT                         
         Actual                    
         Actual Rate                    
         Standard Rate                    
         Var%                    
    OVERHEAD - DIRECT                         
         Actual                    
         Actual Rate                    
         Standard Rate                    
         Var%                    
    LABOUR - IN DIRECT                         
         Actual                    
         Actual Rate                    
         Standard Rate                    
         Var%                    
    Thanks in advance

    Your friend is obviously not a reliable source of HTML
    information.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Mr.Ghost" <[email protected]> wrote in
    message
    news:f060vi$npp$[email protected]..
    > One of my friends advised me to develop my whole site on
    the layout mode
    > as its
    > better than the standard as he says
    > but I couldnot make an ordinary table with rows and
    columns in th layout
    > mode
    > is there any one who can tell me how to?
    > thanx alot
    >

  • How to save entries in Cash Journal with status 'Posted'?

    Hi all,
    I has been asked to create entries in a Cash Journal with status 'POSTED'. Obviously, FM 'BAPI_CASHJOURNALDOC_CREATE' only saves entry (status 'SAVED'), but didn't change its status to 'POSTED'.
    After some investigation of different FM in a CJ area, I found the only way to change status via CALL TRANSACTION 'FBCJ' -> 'POST ALL' (for receipts, for example). This is not a decition I'm searching for.
    My question is: how can I change status of a Cash Journal single entry to 'Posted'?
    Any help would be highly appreciated.
    Thanks in advance.
    Regards,
    Ivaylo Mutafchiev
    Senior SAP ABAP Consultant
    VBS EOOD
    Varna, Bulgaria

    I'm facing the same  issue . have you been able to solve it ???

Maybe you are looking for

  • Boot Camp and Windows XP right-click

    I have a Mac Book Pro where I have installed Boot Camp and Windows XP with great success. I have one problem; I can not right-click. When I press ctrl+mousepad button it still works as an left-click. Very frustrating. Can anyone please help? And no,

  • I lost all my bookmarks,after switching to 3.5 silent how can i get them back?

    i lost all my bookmarks,after switching to 3.5 silent how can i get them back?

  • Qaaws not refreshing query triggered from Xcelsius, maybe a cache problem

    Hi, I'm having a problem with QAAWS and Xcelsius I'm using a List Builder component to select multiple values in this case STATES from the efashion universe I use the selected states as values to feed a prompt in a QAAWS query, the qwaas query has  t

  • Inbound Q error

    Hi Experts , While monitoring the Inbound Q in CRM system , Q is in  Status :  SYSFAIL Queue : R3AD_CRM_MKTPL_R3INT . Error Msg : Updated BDOC status failed - Bdco not found . Can someone help me to solve the issue Thanks in Advance Anudeep Paritala

  • What's the logic behind the prefixes in User Tips?

    I'm browsing through the User Tips, and maybe my memory is fuzzy, but I don't recall all those prefixes in the subject lines. e.g. kmosx, kmos, k.mac, kad, kaw, etc. Is there a logic behind it somewhere that would be useful for searching? e.g. put on