[SOLVED] Gnome-Shell does not return any application on search

Hi.
When I search for applications in Activities in gnome-shell, no applications are returned. I can still go to the Applications tab, where all applications are visible. In the .xsession-error log I find this error
JS LOG: Error searching with Zeitgeist FTS: Error: DBus error: org.freedesktop.DBus.Error.UnknownMethod: Method "Search" with signature "s(xx)a(asaasay)uuu" on interface "org.gnome.zeitgeist.Index" doesn't exist
JS LOG: Error searching with Zeitgeist FTS: Error: DBus error: org.freedesktop.DBus.Error.UnknownMethod: Method "Search" with signature "s(xx)a(asaasay)uuu" on interface "org.gnome.zeitgeist.Index" doesn't exist
JS LOG: Error searching with Zeitgeist FTS: Error: DBus error: org.freedesktop.DBus.Error.UnknownMethod: Method "Search" with signature "s(xx)a(asaasay)uuu" on interface "org.gnome.zeitgeist.Index" doesn't exist
JS LOG: Error searching with Zeitgeist FTS: Error: DBus error: org.freedesktop.DBus.Error.UnknownMethod: Method "Search" with signature "s(xx)a(asaasay)uuu" on interface "org.gnome.zeitgeist.Index" doesn't exist
JS LOG: Error searching with Zeitgeist FTS: Error: DBus error: org.freedesktop.DBus.Error.UnknownMethod: Method "Search" with signature "s(xx)a(asaasay)uuu" on interface "org.gnome.zeitgeist.Index" doesn't exist
JS LOG: Error searching with Zeitgeist FTS: Error: DBus error: org.freedesktop.DBus.Error.UnknownMethod: Method "Search" with signature "s(xx)a(asaasay)uuu" on interface "org.gnome.zeitgeist.Index" doesn't exist
JS LOG: Error searching with Zeitgeist FTS: Error: DBus error: org.freedesktop.DBus.Error.UnknownMethod: Method "Search" with signature "s(xx)a(asaasay)uuu" on interface "org.gnome.zeitgeist.Index" doesn't exist
Some package information:
gnome-shell 3.2.0-2
gnome-shell-extension-alternate-tab 3.2.0-1
gnome-shell-extension-auto-move-windows 3.2.0-1
gnome-shell-extension-move-clock 1.0-1
gnome-shell-extension-pidgin-status 3.2.0-2
gnome-shell-extension-power-options 2.0-1
gnome-shell-extensions-common 3.2.0-1
gnome-shell-extension-skype-status 3.0.2-1
gnome-shell-extension-system-monitor 3.2.0-1
gnome-shell-extension-user-theme 3.2.0-1
gnome-shell-extension-workspace-indicator 3.2.0-1
gnome-shell-zeitgeist-extension-git 20111010-1
libqzeitgeist 0.7.0-1
libzeitgeist 0.3.10-1
zeitgeist 0.8.1.1-1
zeitgeist-datahub 0.7.0-1
zeitgeist-datasources 0.8.0.1-1
zeitgeist-extensions 0.0.12-1
zeitgeist-userspace 0.1-1
Remark: Before, installing zeitgeist, when searching for applications gnome-shell crashed and in the .xsession-errors I got this error
gnome-shell-calendar-server[1508]: Got HUP on stdin - exiting
. This may not be related to this problem.
Last edited by lasombra (2012-04-06 11:13:43)

Well only to see if it is related to zeitgeist, I've removed (deinstalled) all zeitgeist related libs and apps:
libzeitgeist
gnome-shell-extension-zeitgeist
libqzeitgeist
zeitgeist
gnome-activity-journal
zeitgeist-datahub
zeitgeist-extensions
I still get the same error mentioned above:
gnome-shell-calendar-server[1508]: Got HUP on stdin - exiting
More details what happens if all extensions disabled
** Message: applet now embedded in the notification area
Window manager warning: CurrentTime used to choose focus window; focus window may not be correct.
Window manager warning: Got a request to focus the no_focus_window with a timestamp of 0. This shouldn't happen!
** Message: applet now removed from the notification area
gnome-session[3155]: WARNING: Application 'gnome-shell.desktop' killed by signal
gnome-shell-calendar-server[3381]: Got HUP on stdin - exiting
Last edited by lasombra (2011-11-05 20:09:19)

Similar Messages

  • Very Very Urgent Issue: Restricted Key Figure does not return any data

    Hi all,
    Please help me solving this urgent issue.
    created customer exit variable on characterstics version and also
    other customer exit variable on Value type.
    I coded that in variable exit. Problem is when I include these in
    restrickted keyfigure My query does not return me any data.
    But if I remove from restrickted key firgure and put it as normal
    charaterstics I see the variable is getting populated.
    Also in RSRT the SQl generated when these are included in RKF is not
    correct.
    I debugged and know they are getting populated. As when included in RKF
    I can also see the values of customer exit variables from information
    tab.
    I also know that there is data in cube for those restrictions.
    I posted one OSS Notes regarding this urgent issue. But got no reply from SAP.
    FYI: We are using BEx 3.5 Browser SAP GUI 6.4 Patch 20 BW Patch 11
    Thanks
    SAP BW
    **Please do not post the same question twice: Very Urgent Issue: Restricted Key Figure does not return any data

    Hi,
    Everyone out there this is very urgent. If someone can help me solving this problem.
    We are using BEx 3.5 Browser SAP GUI 6.4 Patch 20 BW Patch 11.
    I posted one oss notes also regarding this issue. But got no reply from SAP.
    So, Please help me solving this issue.
    Thanks
    SAP BW

  • Xquery does not return any results on 10.2.0.4, does work on 10.2.0.5

    I have a Xquery statement that works as expected on Oracle 10.2.0.5 but does not return any results on Oracle 10.2.0.4.
    Is this the result of a badly written query? A bug in 10.2.0.4?
    Is there a way to rewrite the query so that is does work on 10.2.0.4?
    Testcode:
    declare
       l_xml xmltype;
       -- Select layers with TileMatrixSet EPSG:28992
       cursor c_layer(p_xml xmltype) is
          select t.*
            from xmltable(xmlnamespaces(default 'http://www.opengis.net/wmts/1.0'
                                       ,'http://www.opengis.net/ows/1.1' as "ows"
                                        ,'http://schemas.opengis.net/gml' as "gml"
                                        ,'http://www.w3.org/1999/xlink' as "xlink"
                                        ,'http://www.w3.org/2001/XMLSchema-instance' as "xsi")
                          ,'for $d in //Layer[TileMatrixSetLink/TileMatrixSet="EPSG:28992"] return $d' passing
                          p_xml columns title varchar2(100) path 'ows:Title'
                          ,format varchar2(100) path 'Format'
                          ,style xmltype path 'Style') as t;
    begin
       l_xml := xmltype.createxml('<?xml version="1.0" encoding="UTF-8"?>
    <Capabilities xmlns="http://www.opengis.net/wmts/1.0"
    xmlns:ows="http://www.opengis.net/ows/1.1"
    xmlns:xlink="http://www.w3.org/1999/xlink"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:gml="http://www.opengis.net/gml" xsi:schemaLocation="http://www.opengis.net/wmts/1.0 http://schemas.opengis.net/wmts/1.0/wmtsGetCapabilities_response.xsd"
    version="1.0.0">
    <Contents>
      <Layer>
        <ows:Title>brtachtergrondkaart</ows:Title>
        <ows:Identifier>brtachtergrondkaart</ows:Identifier>
        <Style isDefault="true">
          <ows:Identifier>_null</ows:Identifier>
        </Style>
        <Format>image/png8</Format>
        <TileMatrixSetLink>      <TileMatrixSet>EPSG:28992</TileMatrixSet>
        </TileMatrixSetLink>  </Layer>
      <Layer>
        <ows:Title>top10nl</ows:Title>
        <ows:Identifier>top10nl</ows:Identifier>
        <Style isDefault="true">
          <ows:Identifier>_null</ows:Identifier>
        </Style>
        <Format>image/png8</Format>
        <TileMatrixSetLink>      <TileMatrixSet>EPSG:28992</TileMatrixSet>
        </TileMatrixSetLink>  </Layer>
      <Layer>
        <ows:Title>bgt</ows:Title>
        <ows:Identifier>bgt</ows:Identifier>
        <Style isDefault="true">
          <ows:Identifier>_null</ows:Identifier>
        </Style>
        <Format>image/png8</Format>
        <TileMatrixSetLink>      <TileMatrixSet>EPSG:28992</TileMatrixSet>
        </TileMatrixSetLink>  </Layer>
    </Contents>
    </Capabilities>');
       for r_layer in c_layer(l_xml)
       loop
          dbms_output.put_line(r_layer.title);
       end loop;
    end;Result on 10.2.0.5:
    brtachtergrondkaart
    top10nl
    bgt

    This one's strange indeed.
    I can reproduce on 10.2.0.4 and one of the following seems to fix it :
    1) Specifying the column list in the SELECT, instead of t.* :
       -- Select layers with TileMatrixSet EPSG:28992
       cursor c_layer(p_xml xmltype) is
          select t.title, t.format, t.style
            from xmltable(or,
    2) Using an extended FLWOR expression :
    for $d in //Layer
    where $d/TileMatrixSetLink/TileMatrixSet = "EPSG:28992"
    return $dMaybe you've already noticed but the problem only occurs within a PL/SQL context.
    The same query run from SQL is OK.

  • How to Create a record if vo.executequery does not return any rows

    I would like to update a single record on adf form. However if the record does not exist would like to create a row and save it in the table.
    The user does not want to add a "create" button on the screen. Hence would need to add the create code if vo.execute does not return any rows...
    How to add this and where to add?

    you can have a TF router for for exists and does not exist and based on that execute transient VO and other VO.
    Add a method call activity like below to create a row in transient VO
    public Row createRow()
    ViewObjectImpl tVO = (ViewObjectImpl)getTVO();
    tVO.executeEmptyRowSet();
    Row newRow = tVO.createRow();
    tVO.setCurrentRow(newRow);
    tVO.insertRow(newRow);
    return newRow;
    }

  • Iphone 4 does not open any application it happened when i updated my iphone4 in my mac book pro

    iphone 4 does not open any application it happened when i updated my iphone4 in my mac book pro

    Install a free app. Click App Store app, find any free app you might like, install the app. If still problems, try a Reset, hold both Home and Power buttons until the iPhone restarts.

  • Very Urgent Issue: Restricted Key Figure does not return any data

    Hi all,
    created customer exit variable on characterstics version and also
    other customer exit variable on Value type.
    I coded that in variable exit. Problem is when I include these in
    restrickted keyfigure My query does not return me any data.
    But if I remove from restrickted key firgure and put it as normal
    charaterstics I see the variable is getting populated.
    Thanks
    SAP BW

    Hi,
    Everyone out there this is very urgent. If someone can help me solving this problem.
    We are using BEx 3.5 Browser SAP GUI 6.4 Patch 20 BW Patch 11.
    I posted one oss notes also regarding this issue. But got no reply from SAP.
    So, Please help me solving this issue.
    Thanks
    SAP BW

  • Function Does Not Return any value .

    Hi ,
    I am wrtting the below funtion without using any cursor to return any message if the value enters by parameters
    does not match with the value reterived by the function select statement or it does not reterive any value that
    for the parameters entered .
    E.g:
    CREATE OR REPLACE FUNCTION TEST_DNAME
    (p_empno IN NUMBER,p_deptno IN NUMBER)
    RETURN VARCHAR2
    IS
    v_dname varchar2(50);
    v_empno varchar2(50);
    V_err varchar2(100);
    v_cnt NUMBER := 0;
    BEGIN
    SELECT d.dname,e.empno
    INTO v_dname ,v_empno
    FROM scott.emp e , scott.dept d
    WHERE e.empno=p_empno
    AND d.deptno=p_deptno;
    --RETURN v_dname;
    IF p_empno IS NOT NULL AND p_deptno IS NOT NULL
    THEN IF v_dname is NULL THEN
    v_err :='Not Valid';
    RETURN v_err;END IF;
    ELSIF p_empno IS NOT NULL AND p_deptno IS NOT NULL
    THEN IF v_dname is NOT NULL THEN
    RETURN v_dname; END IF;
    ELSE
    RETURN v_dname;
    END IF;
    END;
    Sql Statement
    SELECT TEST_DNAME(1234,30) FROM dual
    AND IF I enter a valid combination of parameter then I get the below error :
    e.g:
    SQL> SELECT TEST_DNAME(7369,20) FROM dual
    2 .
    SQL> /
    SELECT TEST_DNAME(7369,20) FROM dual
    ERROR at line 1:
    ORA-06503: PL/SQL: Function returned without value
    ORA-06512: at "SCOTT.TEST_DNAME", line 24
    Where I am missing .
    Thanks,

    Format you code properly and look at it:
    CREATE OR REPLACE
       FUNCTION TEST_DNAME(
                           p_empno IN NUMBER,
                           p_deptno IN NUMBER
        RETURN VARCHAR2
        IS
            v_dname varchar2(50);
            v_empno varchar2(50);
            V_err varchar2(100);
            v_cnt NUMBER := 0;
        BEGIN
            SELECT  d.dname,
                    e.empno
              INTO  v_dname,
                    v_empno
              FROM  scott.emp e,
                    scott.dept d
              WHERE e.deptno=d.deptno
                AND e.empno=p_empno
                AND d.deptno=p_deptno;
            --RETURN v_dname;
            IF p_empno IS NOT NULL AND p_deptno IS NOT NULL
              THEN
                IF v_dname is NULL
                  THEN
                    v_err :='Not Valid';
                    RETURN v_err;
                END IF;
            ELSIF p_empno IS NOT NULL AND p_deptno IS NOT NULL
              THEN
                IF v_dname is NOT NULL
                  THEN
                    RETURN v_dname;
                END IF;
             ELSE
               RETURN v_dname;
           END IF;
    END;
    /Both p_empno and p_deptno in
    SELECT TEST_DNAME(7369,20) FROM dualare not null. So SELECT will fetch some v_dname and v_empno. Since p_empno and p_deptno iare not null your code will go inside outer IF stmt and will execute its THEN branch. That branch consist of nothing but inner IF statement. And since v_dname is NOT NULL it will bypass that inner IF and exit the outer IF. And there is no RETURN stmt after that outer IF. As a result you get what you get - ORA-06503. Also, both if and elsif in your code check same set of conditions which makes no sense.
    SY.

  • [Solved] ADF - Update does not return values generated by a trigger

    Hello,
    I'm using JDev 10.1.3.3.0 and DB 10.2.0.3.0.
    On DB I've created a table, a sequence and a trigger:
    CREATE TABLE TAB1
         ID          NUMBER          PRIMARY KEY,
         EDITED_AT     DATE,
         VALUE          VARCHAR2(64)
    CREATE SEQUENCE S_TAB1
         INCREMENT BY 1
         START WITH 1;
    CREATE TRIGGER T_TAB1_BIE
    BEFORE INSERT OR UPDATE ON TAB1
    FOR EACH ROW
    BEGIN
         IF INSERTING THEN
              SELECT S_TAB1.NEXTVAL INTO :NEW.ID FROM DUAL;
         END IF;
         :NEW.EDITED_AT := SYSDATE;
    END;
    /In JDev I've created an EO - Tab1, a VO - Tab1View and an AppModule.
    In the EO Tab1 I have checked "Refresh After Insert" and "Refresh After Update" for Id and Edited_By attributes. I made the latter two attribures as "Never" updatable.
    Then I test the AppModule with a JDev Tester (I use a connection which connects as an owner of the 3 objects above).
    Then I insert a new row and enter a value into the Value field in the Tester. When I press Commit button everything works great - Id and Edited_By attributes get populated with values generated by the trigger.
    But when I try to update the Value field and press Commit the Edited_By field does not retreives new value that was generated by the trigger.
    Why does this happens?
    Many thanks in advance.
    Yerzhan.

    Frank,
    I tried to set Refresh option on both, Value and Edited_At, fields but unsuccessfully.
    Then I tried to do the following in SQL Plus:
    SQL> insert into tab1(value) values('ddd');
    1 row created.
    SQL> commit;
    Commit complete.
    SQL>
    SQL> select * from tab1;
            ID EDITED_AT           VALUE
             1 27.03.2008 17:01:24 ddd
    SQL>
    SQL> declare dt date; val varchar2(64);
      2  begin update tab1 set value = 'ddd' where id = 1 returning edited_at, value into dt, val;
      3  dbms_output.put_line('txt = ' || dt || ', ' || val);
      4  end;
      5  /
    txt = 27.03.2008 17:01:24, ddd
    PL/SQL procedure successfully completed.
    SQL>
    SQL> select * from tab1;
            ID EDITED_AT           VALUE
             1 27.03.2008 17:02:12 ddd
    SQL>As it can be seen Returning clause of an Update statement does not return a new date, i.e. 27.03.2008 17:02:12, that was updated by the trigger, it returns an old one - 27.03.2008 17:01:24.
    Frank, maybe the issue is in the Oracle DB?

  • Faces scan does not return any tags

    I have now for about 3rd time scanned my entire library for faces (meaning deleting the face_whatever files over again). Every time the scan is run, it takes about 5 hours (65 GB of pictures).
    After the scan is done, there are exactly no face suggestions to be found anywhere on the cork board.
    I am getting quite frustrated, Google Picasa never acted this way on my previous computer. I am thinking of going back to Picasa if this issue doesn't get solved soon...

    After the scan is done, there are exactly no face suggestions to be found anywhere on the cork board.
    1 - have you watched the faces tutorial? -- http://www.apple.com/findouthow/photos/#faces
    2 - the process does not include initial addition of faces on the corkboard - the scan identifies potential people in a photo and you start the corkboard by selecting photos and identifying people in the photo - *those people that you identify are then added to the corkboard* and when you open their corkboard entry you will get suggestions for other photos that contain that person - *you accept or reject each suggestion* and the number of photos grows. Nothing is ever added to the corkboard without your action to approve it.
    I am getting quite frustrated, Google Picasa never acted this way on my previous computer. I am thinking of going back to Picasa if this issue doesn't get solved soon...
    No problem - do what ever makes you happy - I'm not sure why you think that threatening the users here that you are going to leave makes you feel any better about anything - but what ever
    LN
    Message was edited by: LarryHN

  • FDM for PBCS - Drill Thru does not return any records in landing page

    This is referring to the Data Management functionality in PBCS, not on-premise FDMEE.
    I loaded in a file, for example:
    Region|Product|Account|Amount
    10|100|1000|9,000
    10|100|1000|1,000
    In FDM, I am using a multi dimensional map to derive another field. For example, if Region is 10 and Product is 100, than Department = 555.
    so in FDM, I would end up with
    10|100|1000|555|9,000
    10|100|1000|555|1,000
    Once loaded to PBCS, that loads in as:
    10|100|1000|555|10,000
    I built a form that shows this intersection, and then 'drilled to source'. When I get to the FDM landing page, there are no records shown. Is this because the derived field (department) does not exist in the source, or am I doing something wrong?
    Appreciate any help.

    Do you have access to the server logs by any chance?
    Can you check the dimension class for your Scenario dimension in your target application? is it set to SCENARIO?
    not showing source records is typically related to FDMEE not finding values in TDATASEG table.
    HTH

  • [SOLVED] (gnome) NetworkManager does not start on login

    Hello!
    Like the title says, the NetworkManager utility does not start with gnome on login. Every time I log in I have to start it manually by going into the terminal and running su, then running NetworkManager. I have googled and searched in the wiki, but did not find a good answer. Some threads talk about doing something with the gnome-session but it did not work for me.
    So, which conf file do I need to edit to have it start on startup?
    I hope I provided enough information.
    Thanks in advance for the answers.
    Last edited by Persuadatron (2011-02-26 16:03:54)

    oTarUX wrote:
    Persuadatron wrote:
    Yes, and yes. The network-manager-applet is installed (v 0.8.2-2) and my rc.conf looks like this:
    DAEMONS=(syslog-ng dbus network netfs crond gdm)
    You have to deactivate network daemon and add network manager instead, somethig like this:
    DAEMONS=(syslog-ng dbus !network networkmanager netfs crond gdm)
    Read the wiki as RaisedFist said.
    Thanks! This solved it.

  • Firefox Sync does not preserve any GUI or search settings

    The sync function is supposed to store and restore all of your data. It does fine with add-ons and themes, but none of the GUI changes made to Firefox are preserved. Everything done in the "Customize" menu is left behind, along with any toolbars. Search preferences are also not transferred.
    Please tell me there is a solution to this - I do not want to have to switch back to Chrome.

    I saw that in the other thread about this issue as well, and did not try it, because it was reported not to work.
    I had to create a new boolean - that entry isn't one of the defaults in about:config. I set it to 'true', and Sync started syncing. I waited until it finished, rebooted to my other copy of Windows, and uninstalled its copy of Firefox and deleted %APPDATA%/Mozilla/Firefox to get rid of my preferences and profiles.
    I reinstalled Firefox, logged into Sync, and waited for it to sync. The UI is still the default, it's exactly the same as it was without that preference set. I even tried it all again, creating that preference before logging into Sync. The GUI was, again, not changed at all.
    That value does not exist by default, and it does nothing, unfortunately.
    So, the report was correct. That tip is no good.

  • [SOLVED] Gnome 3 does not follow Xorg InputClasses

    Hi,
    I own two keyboards with two different layouts.
    Before I was using kde and I could configure the layouts using Xorg's InputClasses to match the devices: kde was just not messing with xorg's configuration.
    Now with gnome 3 (3.4 and now 3.6), it seems gnome insists in using its own settings and spoils everything that can be done with Xorg.
    Is there anybody with an idea of how I can tell gnome to not take care of my input devices settings?
    Thank you for any help!
    Last edited by kaouete (2012-11-09 13:41:16)

    I was having problems with setting the keyboard layout in Gnome via the xorg config files (adding Option "XkbLayout" "gb" to the catch-all keyboard layout which used to work just wan't having any effect) until I discovered that Gnome appears to require you to set the keyboard layout in its own Keyboard applet.  Follow the Keyboard Layout link on the main tab and add the layout you need while removing the default US one.  Worked for me so hope it helps.

  • [Solved] Gnome-terminal does not start (fresh install)

    Whenever I install gnome-terminal, I have the following message displayed:
    (gconftool-2:28984): GConf-WARNING **: Client failed to connect to the D-BUS daemon:/usr/bin/dbus-launch terminated abnormally without any error message
    Then whenever I launch gnome-terminal I have this message:
    ** (gnome-terminal:1102): CRITICAL **: atk_bridge_adaptor_cleanup: assertion `inited' failed
    The problem seems to be related to dbus. I have even tried guake which complains explicitly about "No D-BUS daemon running".
    Systemctl is telling me that d-bus is up and running.
    Any help appreciated.
    Info:
      - Linux arch64-vbox 3.6.9-1-ARCH #1 SMP PREEMPT Tue Dec 4 08:04:10 CET 2012 x86_64 GNU/Linux
      - systemctl --all | grep error
    auditd.service error inactive dead auditd.service
    display-manager.service error inactive dead display-manager.service
    plymouth-quit-wait.service error inactive dead plymouth-quit-wait.service
    plymouth-start.service error inactive dead plymouth-start.service
    rc-local.service error inactive dead rc-local.service
    syslog.service error inactive dead syslog.service
    Cheers,
    Last edited by PierreR (2012-12-05 20:16:59)

    Solved with the latest dbus upgrade (dbus-core removal)

  • Toplink generate the SQL statement correctly but it does not return any row

    Hi
    I faced an strange problem when using Toplink as JPA provider. Following snippet shows how I create and execute a query using Toplink JPA:
    q = em.createQuery("SELECT B FROM Branch B WHERE B.street LIKE :street");
    q.setParameter("street", "'%a%'");
       List<Branch> l = q.getResultList();
      System.out.println("List Size: " + l.size());The SQL statement resulted by this query is as follow (according to the generated log file)
    SELECT ID, STREET FROM BRANCH WHERE (STREET LIKE CAST (? AS VARCHAR(32672) ))
      bind => [%a%]Problem is that List size is always 0, independent of what I provide as parameter. I tried and executed the generated SQL statement in the SQL manager and I got some tens of record as the result. The SQL statement i tested in the SQL manager is like:
    SELECT ID, STREET FROM BRANCH WHERE (STREET LIKE CAST ('%a%' AS VARCHAR(32672) ))Can someone please let me know what I am missing and how I can fix this problem?
    Thanks.

    Hi,
    Thank you for reply.
    All data are stored in lower case so, the case sensitivity is not a problem. I am wondering how the generated query works fine when I execute it in the sql manager but it return no result when it is executed by the JPA.
    Thanks for looking into my problem.

Maybe you are looking for

  • Why does Captivate take so long to load ?

    I am aware that there is a problem when working with Captivate and connected to company network. As a result of this issue I do not work in "My Documents" but in a folder on local C drive. Not sure if this problem is related to the below...I guess th

  • Approver not found error while configuring workflow in CUP

    While I am configuring SAP CUP workflow, Once I create a request and sent it to approve, I am getting the message stating Approver doesn't exist. Any help will be appreciated in this regard. Regards

  • ORA-06503: Function returned without value at WWV_FLOW_WEBSERVICES_API

    Hi, I use APEX_WEB_SERVICE.MAKE_REQUEST function to call web service however stuck with ORA-06503 exception. It would be nice to hear comment from someone who knows APEX_WEB_SERVICE from inside. ORA-06503: PL/SQL: Function returned without value ORA-

  • New to Oracle Report .....run/display 2  queries depending on parameter

    I am developing 2 report where the output is almost same except for 2 rows .Those 2 row should be extracted from Employee table if the parameter specified is E or should be extracted from Salary table if parameter specified is S. In short the report

  • AK Personalization at responsibility level

    Hi, We are on 11.5.10RUP6. I have an OA framework Pg: /Oracle/Apps/PA/Projects/WebUI/CreateProjectPG.xml that has embedded AK regions. I want to change the controller attached to 2 of the AK regions in the page. I naviagated to the AK developer respo