Unable to execute query 'TerrSearch'

I am trying to execute a query as per below but i get a runtime error CX_CRM_UNSUPPORTED_OBJECT.
Can anybody explain why this is happening as i have used the same code to execute queries on other objects but this error happens only for 'TerrSearch' ?
I am able to execute this query directly from GENIL_BOL_BROWSER for this object.
DATA:   results        TYPE REF TO if_BOL_ENTITY_col,
             core          TYPE REF TO cl_crm_bol_core,
             ls_query_params     type genilt_query_parameters,
             lt_selection_params type genilt_selection_parameter_tab,
             ls_selection_params type genilt_selection_parameter.
core = cl_crm_bol_core=>get_instance( ).
core->start_up( 'ALL' ).
ls_query_params-max_hits = '1'.
ls_selection_params-attr_name = 'BP_PARTNER'.
ls_selection_params-sign      = 'I'.
ls_selection_params-option    = 'EQ'.
ls_selection_params-low = lv_bupa_string.
APPEND ls_selection_params to lt_selection_params.
results = core->dquery( iv_query_name           = 'TerrSearch'
                                   is_query_parameters     = ls_query_params
                                   it_selection_parameters = lt_selection_params ).

Hi,
the coding seems fine so far. Just copied and executed it in our system.
Maybe you can try starting BOL component set "TM" instead of "ALL". The name "ALL" by no means stands for all BOL component sets. It is just one huge one that you should avaoid where possible.
The error message you get usually comes up when you are using the wrong component set and the object is not present in it. Have a look at variable PROPERTIES_TAB  in method CL_CRM_GENIL_OBJ_MODEL->IF_GENIL_OBJ_MODEL~GET_OBJECT_KIND() with the debugger during runtime.
cheers Carsten

Similar Messages

  • SharePoint 2010 Unable to execute query: Error 0x80131530

    I am seeing the below error message in the ULS logs while accessing some set of items in the list and the item will not get
    opened after long tim. 
    "Unable to execute query: Error 0x80131530
    Unknown SPRequest error occurred. More information: 0x80131530
    System.Web.HttpException: Request timed out."
    This list has 202 items in total with 45 columns in total (includes
    5 lookup columns, 3 append history columns). 
    Items which has more than 20 versions is not loading.
    In the same site, there is another list of the same template with 2009 items and some items with more
    than 80 versions works fine.
    Please let me know if you have any suggestion to fix this.

    Yes there are 2 simple SPD workflows. One of the workflow operation is to send email and other one is to create an item in another based on condition.
    The other list which works fine also has similar SPD workflows. 

  • Unable to Execute QUery ORA -00911 Probably Oracle Bug Please confirm

    HI Gurus,
    Unable to run the query:
    Was able to run select query fine, was able to run insert query fine...but when combining and running, its throwng the follwoing error:
    Is this a bug in ORacle?
    Error starting at line 1 in command:
    INSERT INTO MigrationCorrespData1(did) SELECT did from revisions where (dInDate >={ts '2011-09-01 00:00:01'} and dInDate <={ts '2012-01-01 23:59:59'})
    Error at Command Line:1 Column:80
    Error report:
    SQL Error: ORA-00911: invalid character

    It's not a bug, your syntax just isn't Oracle syntax.
    I googled a bit (which you could have done yourself as easily) and it appears that your syntax is JDBC syntax. The Oracle equivalent is timestamp:
    select timestamp'2009-12-08 00:00:00.000' my_ts from dual;
    MY_TS                         
    08-DEC-09 12.00.00.000000000 AMEdited by: InoL on Jun 6, 2012 8:57 AM

  • Unable To Execute Query

    Hi All,
    Given below Query works fine when I am running for some set of item
    Select * from
    (SELECT cdp.NAME model_name,
    (SELECT NAME
    FROM cz_ps_nodes
    WHERE ps_node_id = cpn.devl_project_id
    AND deleted_flag = 0) modelroot,
    p_cim.ref_part_nbr parent_ref_part_nbr, cim.ref_part_nbr,
    (SELECT NAME
    FROM cz_ps_nodes
    WHERE ps_node_id = cpn.parent_id
    AND deleted_flag = 0) parent_fv,
    cpn.NAME fv, cim.desc_text item_desc, bcb.item_num,
    cpn.initial_num_value conf_quantity,
    bcb.component_quantity bom_quantity,
    DECODE (cpn.bom_required_flag,
    0, 'O',
    1, 'Y'
    ) conf_required_flag,bcb.optional,
    DECODE (bcb.optional, 1, 'O', 2, 'Y') bill_required_flag,
    DECODE (cpn.maximum_selected, 1, 1, 2) maximum_selected,
    bcb.mutually_exclusive_options bill_mutex_flag,
    DECODE (cpn.MINIMUM,
    -1, -9999,
    NULL, 0,
    cpn.MINIMUM
    ) conf_min_value,
    DECODE (bcb.low_quantity,
    -1, -9999,
    NULL, 0,
    low_quantity
    ) bom_min_qty,
    DECODE (cpn.maximum,
    -1, 0,
    NULL, 0,
    cpn.maximum
    ) conf_max_value,
    DECODE (bcb.high_quantity,
    -1, 0,
    NULL, 0,
    high_quantity
    ) bom_max_qty,
    cpn.effective_from conf_effectivity_date,
    bcb.effectivity_date bom_effectivity_date,
    cpn.effective_until, bcb.disable_date bill_end_date,
    cpn.component_sequence_id conf_component_sequence_id,
    bcb.component_sequence_id bom_component_sequence_id,
    cpn.component_sequence_path
    FROM [email protected] bbom,
    [email protected] bcb,
    [email protected] msi,
    cz_item_masters cim,
    cz_ps_nodes cpn,
    (SELECT ref_part_nbr,ps_node_id,inventory_item_id
    FROM [email protected] msi,
    cz_item_masters cim,
    cz_ps_nodes cpn
    WHERE cpn.deleted_flag = 0
    AND cim.deleted_flag = 0
    AND cpn.item_id = cim.item_id
    AND cim.ref_part_nbr = msi.segment1
    AND msi.organization_id = 101) p_cim
    ,cz_devl_projects cdp
    WHERE cpn.devl_project_id = cdp.devl_project_id
    AND cpn.item_id = cim.item_id
    AND cim.ref_part_nbr = msi.segment1
    AND msi.inventory_item_id = bcb.component_item_id
    AND msi.organization_id = 101
    AND bcb.bill_sequence_id = bbom.bill_sequence_id
    AND p_cim.ps_node_id = cpn.parent_id
    AND bbom.assembly_item_id = p_cim.inventory_item_id
    AND cpn.bom_sort_order IS NOT NULL
    AND cpn.deleted_flag = 0
    AND cdp.deleted_flag = 0
    AND cim.deleted_flag = 0
    AND cdp.devl_project_id = 183880
    AND cpn.effective_from=bcb.effectivity_date
    AND ( cpn.bom_required_flag DECODE (bcb.optional, 1, 0, 2, 1)
    OR DECODE (cpn.maximum_selected, 1, 1, 2) bcb.mutually_exclusive_options
    where fv in ('F4584B','F4585B') or 1=2 order by item_num;
    but when I am trying to run for all records I am getting following error
    "ORA-00904: "SYS_ALIAS_2"."MAXIMUM_SELECTED": invalid identifier
    ORA-02063: preceding line from DVOA081" .
    I am unable to understand why I am getting this error when I am running (Same query) for all records & why I am not getting any errors when I am running for two items.
    Can any one help me to resolve this. Appreciate your immediate response.
    Error Query:
    Select * from
    (SELECT cdp.NAME model_name,
    (SELECT NAME
    FROM cz_ps_nodes
    WHERE ps_node_id = cpn.devl_project_id
    AND deleted_flag = 0) modelroot,
    p_cim.ref_part_nbr parent_ref_part_nbr, cim.ref_part_nbr,
    (SELECT NAME
    FROM cz_ps_nodes
    WHERE ps_node_id = cpn.parent_id
    AND deleted_flag = 0) parent_fv,
    cpn.NAME fv, cim.desc_text item_desc, bcb.item_num,
    cpn.initial_num_value conf_quantity,
    bcb.component_quantity bom_quantity,
    DECODE (cpn.bom_required_flag,
    0, 'O',
    1, 'Y'
    ) conf_required_flag,bcb.optional,
    DECODE (bcb.optional, 1, 'O', 2, 'Y') bill_required_flag,
    DECODE (cpn.maximum_selected, 1, 1, 2) maximum_selected,
    bcb.mutually_exclusive_options bill_mutex_flag,
    DECODE (cpn.MINIMUM,
    -1, -9999,
    NULL, 0,
    cpn.MINIMUM
    ) conf_min_value,
    DECODE (bcb.low_quantity,
    -1, -9999,
    NULL, 0,
    low_quantity
    ) bom_min_qty,
    DECODE (cpn.maximum,
    -1, 0,
    NULL, 0,
    cpn.maximum
    ) conf_max_value,
    DECODE (bcb.high_quantity,
    -1, 0,
    NULL, 0,
    high_quantity
    ) bom_max_qty,
    cpn.effective_from conf_effectivity_date,
    bcb.effectivity_date bom_effectivity_date,
    cpn.effective_until, bcb.disable_date bill_end_date,
    cpn.component_sequence_id conf_component_sequence_id,
    bcb.component_sequence_id bom_component_sequence_id,
    cpn.component_sequence_path
    FROM [email protected] bbom,
    [email protected] bcb,
    [email protected] msi,
    cz_item_masters cim,
    cz_ps_nodes cpn,
    (SELECT ref_part_nbr,ps_node_id,inventory_item_id
    FROM [email protected] msi,
    cz_item_masters cim,
    cz_ps_nodes cpn
    WHERE cpn.deleted_flag = 0
    AND cim.deleted_flag = 0
    AND cpn.item_id = cim.item_id
    AND cim.ref_part_nbr = msi.segment1
    AND msi.organization_id = 101) p_cim
    ,cz_devl_projects cdp
    WHERE cpn.devl_project_id = cdp.devl_project_id
    AND cpn.item_id = cim.item_id
    AND cim.ref_part_nbr = msi.segment1
    AND msi.inventory_item_id = bcb.component_item_id
    AND msi.organization_id = 101
    AND bcb.bill_sequence_id = bbom.bill_sequence_id
    AND p_cim.ps_node_id = cpn.parent_id
    AND bbom.assembly_item_id = p_cim.inventory_item_id
    AND cpn.bom_sort_order IS NOT NULL
    AND cpn.deleted_flag = 0
    AND cdp.deleted_flag = 0
    AND cim.deleted_flag = 0
    AND cdp.devl_project_id = 183880
    AND cpn.effective_from=bcb.effectivity_date
    AND ( cpn.bom_required_flag DECODE (bcb.optional, 1, 0, 2, 1)
    OR DECODE (cpn.maximum_selected, 1, 1, 2) bcb.mutually_exclusive_options
    where fv in ('F4584B','F4585B') or 1=1 order by item_num;
    Error Mesg : ORA-00904: "SYS_ALIAS_2"."MAXIMUM_SELECTED": invalid identifier ORA-02063: preceding line from DVOA081
    I check DB links details everything is working as expected.
    Can anyone help me to resolve this issues at the earliest. Thanks in advance.
    Thanks,
    Jehangeer Shaik

    That looks worryingly like an optimizer bug. "SYS_ALIAS_2" is a system-generated name it assigns to a subquery, but the fact that you're getting a parse error from the remote database suggests that something went wrong after successfully parsing and transforming locally. The remote database isn't on a wildly different Oracle version or anything is it? What versions are you on? My guess is it chooses a different execution plan in your two cases, and one of them fails. You might try experimenting with the DRIVING_SITE hint (wild guess), otherwise you may need to start looking at tracefiles and talking to Oracle Support.

  • Error while checking in a document: Unable to execute service

    Hi,
    I am using oracle UCM 11g. When i am checking in a document, i am getting error as "Unable to execute service CHECKIN_NEW_SUB and function validateCheckinData."
    In stacktrace found this is caused by:
    "Unable to find query or idc data source with 'DdeletedRows'. "
    How to resolve this?
    Thanks in advance

    Please refer to this thread ...may be u get ur answer out of it...........................
    Error while checking in and storing: C:\ ..... (Message no. 26253)
    regards,
    Tushar Dave

  • Execute Query is not working

    hi all,
    In my when-new-form-instance form level trigger i have given go_block('blockname')
    execute_query
    but this execute query is not firing .when i checked using message i was able to reach line b4 and after the execute query but still it has not populated the data from the base table.
    the base table also contains records.
    when i run this particular fmx in the similliar but differnt database this form runs well and data gets populated automatically.
    i am unable to move fwd becouse of this i have spend many hours on this issue. please help me out.
    please write for any further clarifications..
    thanks and regards,

    There is no data on the table that satisfies the query. Copy the data from the database that does return data and try again. Are you looking at the correct table, it maybe a synonym issue as someone previously mentioned.
    A trick to see the select statement is this :- Press enter_query, enter :A into one of the query fields, press enter_query. A query box should appear. Type dog=1 and click ok. You will then get an error message (FRM-40505). Choose 'Display error' of the help menu (or Shift+F1). This will display the select statement. Obviously ignore the dog=1 as this is what caused the error but look at the where clause for clues.
    It does sound like the form is looking at at different table to you.

  • SQ01 -Unable to upload query

    Dear Experts,
    I had tried to upload query in QA Client after downloading it from DEV Client. But still I am unable to find query in QA client. I can only see User Group & infoset which are uploaded successfully. I checked in both standard & Global areas of query, but only I found are user group & infoset which I had created in DEV Client. I had followed the following steps to upload & download. Please correct me if I did anything wrong. Please suggest..
    DOWNLOAD ABAP QUERY ( From DEV Client )
    1. Go to SQ02 .
    Select Environment -> Query Areas..
    Select Standard Area (Client specific)
    (If Query does not exist in Standard Area then You will have to copy that Query From Global Area to Standard Area.)
    For Coping Query From Global To standard first select that query from list.
    2)Now select Environment-> Transports
    3)In next screen select Copy Global to standard radio button.
    Check Overwriting allowed (only with import/upload/copy)
    Remove Check for Test Run
    Select Transport InfoSets and queries radio button
    Fill Infoset and Query with corresponding names.
    4)Now Press Execute button.Copy Log will be displayed.
    Now Query exist in Global & Standard Area.
    5) Go to SQ02 .
    Select Environment -> Query Areas..
    Select Standard Area (Client specific)
    Select Infoset from list.
    6) Select Environment -> Transports
    7)Select Download radio button
    Check Overwriting allowed (only with import/upload/copy)
    Remove Check for Test Run
    Select Transport InfoSets and queries radio button
    Fill Infoset and Query with corresponding names.
    8) Click on Execute button
    Now It will ask you to save file.save it.
    Now Opened  another system (QA Client) to make copy of that infoset.
    In the same way transport the User Groups using the Transport User GRoups radio button.
    UPLOAD ABAP QUERY
    1. Go to SQ02 .
    Select Environment -> Query Areas
    Select Standard Area (Client specific)
    2. Select Environment -> Transports
    3)Select Upload radio button
    Check Overwriting allowed (only with import/upload/copy)
    Remove Check for Test Run
    Select Transport InfoSets and queries radio button
    Fill Infoset and Query with corresponding names.
    4) Click on Execute button.
    It will ask you for the place for uploading file.
    Select that place (from where you downloaded file).
    Now infoset & query is uploaded.Log will be displayed.
    in the same way download the user group also.
    5)Go to SQ02
    Select Environment -> Query Areas
    Select Standard Area (Client specific)
    SQ02 -> Infoset -> Generate.
    Enter Yes.
    6)Go to SQ01
    Select Environment -> Query Areas
    Select Standard Area (Client specific)
    Enter your Query Name.
    I entered the same query name, but still system is showing error message as"Query ZDMS1 has not yet been created"
    Please help.
    Regards,
    Sandeep

    Hi Experts,
    I resolved it by myself. So closing this thread.
    Regards,
    Sandeep

  • Unable to execute service SS_GET_PAGE and function getRssFeedForUrl.in ucm

    When i update rss feed information i am unable to update the rss logo getting the below error
    Unable to execute service SS_GET_PAGE and function getRssFeedForUrl.
    $ucmapp41: !csUserEventMessage,anonymous,portalcmd1.bb.wan:8055!csFileServiceUserAgent,Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729),GET!csServiceDataException,SS_GET_PAGE,getRssFeedForUrl!$!csSystemError,www.google.com!syExceptionType2,intradoc.data.DataException,www.google.com!syExceptionType2,java.net.UnknownHostException,www.google.com
    intradoc.common.ServiceException: !csServiceDataException,SS_GET_PAGE,getRssFeedForUrl!$!csSystemError,www.google.com
         at intradoc.server.ServiceRequestImplementor.buildServiceException(ServiceRequestImplementor.java:1760)
         at intradoc.server.Service.buildServiceException(Service.java:1997)
         at intradoc.server.Service.createServiceExceptionEx(Service.java:1991)
         at intradoc.server.Service.createServiceException(Service.java:1986)
         at intradoc.server.ServiceRequestImplementor.handleActionException(ServiceRequestImplementor.java:1460)
         at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1427)
         at intradoc.server.Service.doAction(Service.java:452)
         at intradoc.server.ServiceRequestImplementor.doActions(ServiceRequestImplementor.java:1201)
         at intradoc.server.Service.doActions(Service.java:447)
         at intradoc.server.ServiceRequestImplementor.executeSubServiceCode(ServiceRequestImplementor.java:1071)
         at intradoc.server.Service.executeSubServiceCode(Service.java:3568)
         at intradoc.server.ServiceRequestImplementor.executeServiceEx(ServiceRequestImplementor.java:942)
         at intradoc.server.Service.executeServiceEx(Service.java:3563)
         at intradoc.server.ServiceRequestImplementor.executeSafeServiceInNewContext(ServiceRequestImplementor.java:973)
         at intradoc.server.Service.executeSafeServiceInNewContext(Service.java:3558)
         at intradoc.server.script.ServiceScriptExtensions.evaluateFunction(ServiceScriptExtensions.java:259)
         at intradoc.common.DynamicHtmlMerger.computeFunction(DynamicHtmlMerger.java:1209)
         at intradoc.common.DynamicHtmlMerger.evaluateGrammarElement(DynamicHtmlMerger.java:825)
         at intradoc.common.DynamicHtmlMerger.substituteVariable(DynamicHtmlMerger.java:597)
         at intradoc.common.DynamicHtml.substituteVariable(DynamicHtml.java:1244)
         at intradoc.common.DynamicHtml.outputHtmlEx(DynamicHtml.java:986)
         at intradoc.common.DynamicHtml.outputHtmlEx(DynamicHtml.java:1006)
         at intradoc.common.DynamicHtml.outputHtmlEx(DynamicHtml.java:1050)
         at intradoc.common.DynamicHtml.outputHtmlEx(DynamicHtml.java:1086)
         at intradoc.common.DynamicHtml.outputHtml(DynamicHtml.java:906)
         at intradoc.common.DynamicHtmlMerger.executeDynamicHtmlToWriter(DynamicHtmlMerger.java:1818)
         at intradoc.common.DynamicHtmlMerger.evaluateScriptToWriter(DynamicHtmlMerger.java:1645)
         at intradoc.common.DynamicHtmlMerger.evaluateScriptNoErrorHandling(DynamicHtmlMerger.java:1615)
         at intradoc.common.DynamicHtmlMerger.evaluateScriptEx(DynamicHtmlMerger.java:1573)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:592)
         at sitestudio.SSClassHelper.invokeRaw(Unknown Source)
         at sitestudio.SSClassHelper.invoke(Unknown Source)
         at sitestudio.SSScriptExtensions.evaluateIncludeXmlEx(Unknown Source)
         at sitestudio.SSWCMScriptExtensions.evaluateTemplate(Unknown Source)
         at sitestudio.SSWCMScriptExtensions.getPlaceholderContent(Unknown Source)
         at sitestudio.SSWCMScriptExtensions.evaluateFunction(Unknown Source)
         at intradoc.common.DynamicHtmlMerger.computeFunction(DynamicHtmlMerger.java:1209)
         at intradoc.common.DynamicHtmlMerger.evaluateGrammarElement(DynamicHtmlMerger.java:825)
         at intradoc.common.DynamicHtmlMerger.substituteVariable(DynamicHtmlMerger.java:597)
         at intradoc.common.DynamicHtml.substituteVariable(DynamicHtml.java:1244)
         at intradoc.common.DynamicHtml.outputHtmlEx(DynamicHtml.java:986)
         at intradoc.common.DynamicHtml.outputHtml(DynamicHtml.java:906)
         at intradoc.common.DynamicHtmlMerger.outputDynamicHtmlPage(DynamicHtmlMerger.java:1769)
         at intradoc.server.Service.buildResponsePage(Service.java:1199)
         at intradoc.server.Service.doResponse(Service.java:1868)
         at intradoc.server.FileService.doResponse(FileService.java:1412)
         at intradoc.server.ServiceRequestImplementor.doRequest(ServiceRequestImplementor.java:664)
         at intradoc.server.Service.doRequest(Service.java:1707)
         at intradoc.server.ServiceManager.processCommand(ServiceManager.java:359)
         at intradoc.server.IdcServerThread.run(IdcServerThread.java:197)
    Caused by: intradoc.data.DataException: www.google.com
         at rssfeeds.RssHelper.getXmlHttpContentsAsString(Unknown Source)
         at rssfeeds.RssServiceHandler.getRssFeedForUrl(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:592)
         at intradoc.common.IdcMethodHolder.invokeMethod(ClassHelperUtils.java:617)
         at intradoc.common.ClassHelperUtils.executeMethodReportStatus(ClassHelperUtils.java:293)
         at intradoc.server.ServiceHandler.executeAction(ServiceHandler.java:79)
         at intradoc.server.Service.doCodeEx(Service.java:490)
         at intradoc.server.Service.doCode(Service.java:472)
         at intradoc.server.ServiceRequestImplementor.doAction(ServiceRequestImplementor.java:1360)
         ... 47 more
    Caused by: java.net.UnknownHostException: www.google.com
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:177)
         at java.net.Socket.connect(Socket.java:524)
         at java.net.Socket.connect(Socket.java:474)
         at sun.net.NetworkClient.doConnect(NetworkClient.java:157)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:388)
         at sun.net.www.http.HttpClient.openServer(HttpClient.java:523)
         at sun.net.www.http.HttpClient.&#60;init&#62;(HttpClient.java:231)
         at sun.net.www.http.HttpClient.New(HttpClient.java:304)
         at sun.net.www.http.HttpClient.New(HttpClient.java:321)
         at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:839)
         at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:791)
         at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:716)
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:960)
         ... 59 more
    Any help is required
    Thanks
    Sravani

    Hi Ryan,
    Thanks for your reply.
    Yes, I checked in the configuration manager and the DB (Logged into the DB and ran a query on Users) as well.
    I can see the column name dPassword.
    Thanks

  • Getting error when we execute query in RSRT1

    Hi Gurus,
    I Loaded Transaction data in "0CCA_C11" cube and also loaded master data too.
    but when i execute query in RSRT1 i am getting error message
    1) Could not enter feature 0COSTCENTER__0PROFIT_CTR with SID 133 into table /BI0/SIOBJNM
    2)System error in program CL_RSR and form GET_CHANMID-02- (see long text)
    3)Error when generating dataProvider.
    For 0COSTCENTER i loaded master data but for '0PROFIT_CTR' i am unable to load Hierarchy data because still the request is yellow even showing 58 from 58 records.
    can any once can help me to soleve this issue.
    Thanks in advance.
    Raju.k
    *points to be assigned.

    Raju,
      Try replicating your hierarchy DS and reload data.
    hope it helps,
    balaji

  • Collection: (80004005) Execute: Query timed-out

    Hi,
    Recent days im facing a strange issue like the SCCM clients are not reporting the full Software inventory, so because of that we were unable to query using the software inventory details.
    The strange part is, while checking the logs "Inventory agent.log" it states "Collection: (80004005) Execute: Query timed-out".
    I wanna find what is the job of the Software inventory cycle and how to see at what point they stuck scanning...
    Any information helping me to proceed further with my investigation would be much appreciated.
    Thanks,
    Nana

    Thanks for the link Garth...
    We have scheduled software inventory to run on Sundays so that it should not impact client PC's performance. I agree it takes long time, but at some point we might require some information from those files. I also tried to create few test machine, but its difficult
    to duplicate this issue in them. Whenever we create a new machine, it reports good :(
    I was querying the machines who has collected "powershell.exe" files using software inventory cycle, i was able to fetch about 91% of the machines where as 9% has not. I tried to run a powershell query (Full software inventory) remotely on the machine where
    we are facing issues collecting software inventory. Monitoring the logs and i came up with this error.
    Here my question would be as its working on most of the machines why aren't they good on the rest. Even if we try to re-install the client, same status. Maybe because of the machine performance?
    Thanks for your help...

  • Help: data validation before save or after execute query

    Hi,
    The issue that I have are:
    1. A form allows user to insert and save records. When user press the save button, Instead of have an oracle error message: "FRM-40508: ORACLE error: unable to INSERT record," I'd like there be some step taken to send an alert to user if the user does not enter the date meets the fields constraint(s).
    2. Same for the execute query button, when there are no records return from the query.
    Thank you.
    Jimmy

    Thank you all, 437901(error or informative?), Ajani, Denis and Steve. It worked out with ON-MESSAGE trigger by catching message_code.
    Thanks again.
    Jimmy
    P.S.
    In Oracle9i forms developer Reference Guide, the example is misleading:
    ERROR_CODE Examples
    ** Built-in: ERROR_CODE,ERROR_TEXT,ERROR_TYPE
    ** Example: Reword certain FRM error messages by checking
    ** the Error_Code in an ON-ERROR trigger
    ** Trigger: On-Error
    DECLARE
    errnum NUMBER := ERROR_CODE;
    errtxt VARCHAR2(80) := ERROR_TEXT;
    errtyp VARCHAR2(3) := ERROR_TYPE;
    BEGIN
    IF errnum = 40301 THEN
    Message('Your search criteria identified no matches...
    Try Again.');
    ELSIF errnum = 40350 THEN
    Message('Your selection does not correspond to an employee.');
    ELSE
    4-170

  • How to cancel a query when execute query builtin fire and No Records found.

    Hi,
    I am unable to cancel a query when i make query (fire enter-query) then fire (execute-query) and no records found then the form status is enter-query mode. Plz help me that how can i back to normal mode of form.
    here i use the code for coming back to enter-query to normal mode but no results.
         if :system.mode = 'ENTER-QUERY' THEN
    ABORT_QUERY;
         clear_form;          
         END IF;
    thanks in advance....

    Hello,
    I would test the record status of the first record in the block. If this status is 'NEW', then there is no record retrieved, so that you can exit the query mode with exit_form()
    Francois

  • Unable to execute update commands after improper shutdown

    Hi!
    It sounds a little strange.
    I am unable to execute update commands from my application. My machine was shutdown improperly. Then I loaded the datastores again. I was able to execute select commands but unable to execute update commands. It was working fine before shutdown.
    Regards
    /Ahmad

    Hi Chris!
    SQLExecute method of ODBC is returning -1.
    I have checked the syntax of the query its also correct. I am also very confused on it why is this happening. If I execute the update command from ttisql it works ok.
    The code is the same that we discussed in our previous conversation.
    The steps I did after improper shutdown:
    1. Started TimeTen daemon >ttdaemonadmin -start
    2. Loaded the Data store >ttAdmin -ramLoad spiderM
    3. Executed the code
    The output of ttstatus is as follows:
    TimesTen status report as of Fri Jun 29 21:45:41 2007
    Daemon pid 8273 port 17001 instance tt70
    TimesTen server pid 8284 started on port 17003
    TimesTen webserver pid 8280 started on port 17005
    Data store /tmp/spiderM
    There are 6 connections to the data store
    Data store is in shared mode
    Shared Memory KEY 0x08004f3c ID 557070
    Type PID Context Connection Name ConnID
    Subdaemon 8278 0x0000000000570520 Worker 2042
    Subdaemon 8278 0x00000000005dc4d0 Flusher 2043
    Subdaemon 8278 0x000000000060d5d0 Checkpoint 2044
    Subdaemon 8278 0x000000000063e5a0 Aging 2045
    Subdaemon 8278 0x000000000066f570 HistGC 2046
    Subdaemon 8278 0x00000000006a0430 Monitor 2047
    RAM residence policy: Manual
    Data store is manually loaded into RAM
    Replication policy : Manual
    Cache agent policy : Manual
    Data store /usr/users/spider/TimesTen/tt70/info/TT_tt70
    There are no connections to the data store
    Replication policy : Manual
    Cache agent policy : Manual
    Access control enabled.
    End of report
    Regards
    /Ahmad

  • Unable to execute a remote proc

    Hi I am unable to execute a remote procedure from forms6i, and that procedure runs coolly form sql plus console. I just dont get any exception or error. Thats really pathetic for me now.
    I need help.
    thanx Rajeev

    Hi ,
    Remote procedure means the procedure in database. My database is in solaris, d2k on win2k and other database on win2k. I am executing a remote procedure on solaris Oracle db to poll data from win2k db using forms, i.e. on button click. The form user and the solaris db users are same. I am using dblink here.
    Hope this helps in clarifying my query further.
    thanx

  • FAST Search - Unable to Complete Query on BackEnd resource limit remporarily exceeded code:1013

    Hi ,
    We are using FAST search in our SharePoint 2010 environment. I am encountering an issue while navigating to 21st  page or Query string value 200 and above (
    URL -> /Pages/results.aspx?k=1&s=All&start1=201
    ) in search core result web part. The error message is UI is  "
    The search request was unable to execute on FAST Search Server".
    I have found the below log in the ULS .
    SearchServiceApplication::Execute--Exception:   Microsoft.Office.Server.Search.Query.FASTSearchQueryException: Unable to   complete query on backend Resource limit temporarily
    exceeded Code:   1013   
    at Microsoft.Office.Server.Search.Query.Gateway.FastSearchGateway.GetQueryResult(IQuery   query)   
    at   Microsoft.Office.Server.Search.Query.Gateway.FastSearchGateway.ExecuteSearch(SearchRequest   request, String queryString)   
    at   Microsoft.Office.Server.Search.Query.Gateway.AbstractSearchGateway.Search(SearchRequest   request)   
    at   Microsoft.Office.Server.Search.Query.FASTQueryInternal.ExecuteSearch(SearchRequest   request, ResultTableCollection rtc)   
    at Microsoft.Office.Server.Search.Query.FASTQueryInternal.Execute(QueryProperties   properties)   
    at   Microsoft.Office.Server.Search.Administration.SearchServiceApplication.Execute(QueryProperties   properties)
    Please share your thoughts or advise if some has come across this issue. Thanks!

    Hi ,
    We are using FAST search in our SharePoint 2010 environment. I am encountering an issue while navigating to 21st  page or Query string value 200 and above (
    URL -> /Pages/results.aspx?k=1&s=All&start1=201
    ) in search core result web part. The error message is UI is  "
    The search request was unable to execute on FAST Search Server".
    I have found the below log in the ULS .
    SearchServiceApplication::Execute--Exception:   Microsoft.Office.Server.Search.Query.FASTSearchQueryException: Unable to   complete query on backend Resource limit temporarily
    exceeded Code:   1013   
    at Microsoft.Office.Server.Search.Query.Gateway.FastSearchGateway.GetQueryResult(IQuery   query)   
    at   Microsoft.Office.Server.Search.Query.Gateway.FastSearchGateway.ExecuteSearch(SearchRequest   request, String queryString)   
    at   Microsoft.Office.Server.Search.Query.Gateway.AbstractSearchGateway.Search(SearchRequest   request)   
    at   Microsoft.Office.Server.Search.Query.FASTQueryInternal.ExecuteSearch(SearchRequest   request, ResultTableCollection rtc)   
    at Microsoft.Office.Server.Search.Query.FASTQueryInternal.Execute(QueryProperties   properties)   
    at   Microsoft.Office.Server.Search.Administration.SearchServiceApplication.Execute(QueryProperties   properties)
    Please share your thoughts or advise if some has come across this issue. Thanks!

Maybe you are looking for