Search Title Issue

I just wanted to see if anyone else has seen this issue and can offer a solution.
We have a user that just updated to IE8 with the BOBJ 3.1 patch. however now she is able to have results returned from the Search Title on the home page. If she goes to advance search and performs the search the list of reports returns. Has anyone else seen this? I have been unable to reproduce, and we have a couple of other users that have the same issue.
Mark

Hi,
   IE 8 needs to be under compatibility mode as SAP BusinessOBjects Enterprise only support compatibility mode for IE8. This is true for even the current XI3.1 with SP3.
   Use this Microsoft Support Link to learn how you can switch to compatibility mode
           http://support.microsoft.com/kb/956197
   Try switching to Compatibility mode and let me know if you still have issue.
Cheers,
Ken

Similar Messages

  • Search Bar Issues MYSQLi

    Hi, Just wondering if someone can have a look at what im doing wrong here?
    PS All connections to the database work.
    I get these three error messages:
    Warning: mysqli_query(): Empty query in /home4/X/public_html/props_inventory.php on line 12
    Warning: mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, boolean given in /home4/X/public_html/props_inventory.php on line 13
    Warning: mysqli_fetch_assoc() expects parameter 1 to be mysqli_result, boolean given in /home4/X/public_html/props_inventory.php on line 363
    <?php
    //Main Connection & Query
    //Database Connection & Error
    $con_host = 'X';
    $con_username = 'X';
    $con_password = 'X';
    $con_database = 'X';
    $con = mysqli_connect($con_host, $con_username, $con_password, $con_database);
    //Main Query (on page load [Shows all records])
    $sql = mysqli_query($con, $sql_search);
    $row = mysqli_fetch_assoc($sql);
    //Set production info variables
    $prop_id = $row['id'];
    $prop_title = $row['title'];
    $prop_description = $row['description'];
    $prop_colour = $row['colour'];
    $prop_type = $row['type'];
    $prop_size = $row['size'];
    $prop_weight = $row['weight'];
    $prop_material = $row['material'];
    $prop_value = $row['value'];
    $prop_location = $row['location'];
    $prop_sublocation = $row['sublocation'];
    $prop_quantity = $row['quantity'];
    $prop_bc = $row['BC'];
    $prop_datecreated = $row['datecreated'];
    ?>
    <?php
    //Search Bar
    if($_POST['txt_search']) {
    $search = $_POST['txt_search'];
    elseif($_GET['searchprops']) {
    $search = $_GET['searchprops'];
    if (isset($search))
      $searchword = $search;
      $query_props = "SELECT * FROM props WHERE id LIKE '%".$searchword."%' OR name LIKE '%".$searchword."%' OR description LIKE '%".$searchword."%' OR colour LIKE '%".$searchword."%' OR type LIKE '%".$searchword."%' OR size LIKE '%".$searchword."%' OR weight LIKE '%".$searchword."%' OR value LIKE '%".$searchword."%' OR location LIKE '%".$searchword."%' OR sublocation LIKE '%".$searchword."%' OR BC LIKE '%".$searchword."%'";
    if(!isset($search)){
      $query_props = "SELECT * FROM props";
    $query_limit_props = sprintf("%s LIMIT %d, %d", $query_props, $startRow_props, $maxRows_props);
    $props = mysqli_query($con, $query_limit_props) or die(mysql_error());
    $row_props = mysqli_fetch_assoc($props);
    ?>

    You have a lot of problems with your script below. First of all, you are using isset() incorrectly. The isset() function only tests if the field is set, not if it is empty. So even if the user doesn't enter anything, if the field is on the form it is set.
    Next, why are you copying the value of one variable into another variable - $searchword = $search; ? What does that accomplish?
    Finally, the argument you are passing to mysqli_num_rows() is a single row. You need to pass it the result set.
    Fixed the main search bar issue, but still having problem with the num_row statement
    Warning: mysqli_num_rows() expects parameter 1 to be mysqli_result, array given in /home4/mresnik/public_html/props_inventory.phpon line 47
    <?php
    //Search
    if(isset($_POST['txt_search'])) {
      $search = $_POST['txt_search'];
      $searchword = $search;
      $query_search = "SELECT * FROM props WHERE id LIKE '%".$searchword."%' OR name LIKE '%".$searchword."%' OR description LIKE '%".$searchword."%' OR colour LIKE '%".$searchword."%' OR type LIKE '%".$searchword."%' OR size LIKE '%".$searchword."%' OR weight LIKE '%".$searchword."%' OR value LIKE '%".$searchword."%' OR location LIKE '%".$searchword."%' OR sublocation LIKE '%".$searchword."%' OR BC LIKE '%".$searchword."%'";
    if(!isset($search)){
      $query_search = "SELECT * FROM props";
    $search_query = mysqli_query($con, $query_search);
    $row = mysqli_fetch_assoc($search_query);
    $row_count = mysqli_num_rows($row);
    ?>

  • Query region Search mappings issue

    Hi,
    I have components laid out like the following in my app
    Query Region
    |
    |-subTabLayout
    | |
    | |- AdvanceTable 1
    | |- AdvanceTable 2
    |
    |-Query Components
    |-Simple search panel
    |-Simple search mappings
    Issue: I mapped each of the search inputs to the valid column ids from Advancetable1 and advancetable2 in the simple search mappings. When I run the application with some search parameters in the search fields belonging to both the tables, I only see AdvanceTable1 criterias being passed and advancetable2 criterias not appearing. (I am getting the criterias in the controller using queryBean.getCriteria() which returns a Dictionary[]).
    Is there a limitation for Query region to have one region alone or am I missing something? Your help is appreciated.
    Thank you for your time.
    Regards,
    Arun

    If you have a complex serarch region structure, its always better to go for a custom region where you can manipulate the things as you want.
    --Shiv                                                                                                                                                                                                                                                                                                           

  • CF9 New Search Engine Issues?

    I have an older application that I have upgraded and I am only having issues with the Search Engine going form Verity to Solr.
    I have a simple query tht gets the content for each page and indexes it. The code works awesome in Varity - but when I run it on the Solr system I get the following error:
    Error_opening_new_searcher_exceeded_limit_of_maxWarmingSearchers4_try_again_later
    Also - when this errors out (only this error) - the prowser shows the HTML Source of the error instead of the typical?
    Any help, please!
    There are only 207 records that I am trying to index?
    between 20-25 actually get indexed.
    <cfindex action="PURGE" collection="#application.stSiteData.objectCollection#">
                <cfquery name="qGetData" datasource="#application.stSiteData.datasource#">
                    SELECT  objectID
                    FROM Objects
                    WHERE active = 1
                </cfquery>
            <cfset myList = valueList(qGetData.objectID)>
            <cfloop list="#myList#" index="xobjectID">
                <CFQUERY name="qGetObjectData" datasource="#application.stSiteData.datasource#">
                    SELECT        *
                    FROM            objects INNER JOIN
                                            Pages ON objects.pageID = Pages.pageID
                    WHERE            Pages.exSiteSearch <> 1
                            and  objects.objectID = '#xobjectID#'
                </CFQUERY>
                <cfindex action="UPDATE"
                    collection="#application.stSiteData.objectCollection#"
                    key="objectID"
                    query="qGetObjectData"
                    type="CUSTOM"
                    title="label"
                    body="label,objectData"
                    custom1="pageid"
                    custom2="">
            </cfloop>

    So I am still working on this and it seems that it's some kinf of Commit issue?
    I don't understand why I can index 200 records without CF crashing? Thiis doens seem logical that the new SE would be such a POS?
    I have tried updated the XML config form 4 to 8 - all that I could find, but I am still getting the same error that you see above - so Im not sure that changing that setting did anything?
    This seems like there is a simple answer somewhere - I can't be the only one on these boards that is having issues?

  • Searching 'Title' and 'Caption' metadata

    I've searched a bit on this and am not getting anywhere. The issue I am having is when I apply content to the Title and Caption fields of metadata, they are not searcheable. Meaning, when I use the 'Find' section on the sidebar, it doesn't locate images that I have confirmed have the content I am searching for. I've made sure that when using 'Find,' I have all 'Anywhere' selected for 'Text' and 'Contains Any' for 'Rule.' Also, 'All Dates' is selected for 'Date.'
    I can't help but think I am missing something amazingly simple.
    Thanks in advance.
    Troy Wical
    calivw78.com

    jimburgess, John O'Connor, DonRicklin...thanks for the help. Although I thought I had made extremely sure that I had no other filters in place to skew my metadata search results, I must have missed something. Although I can't remember exactly what it was that made my search start working, I believe it was related to both apply "cmd-L" to start fresh and then looking under the 'Folders' panel to see matching photos as some of you had recommended.
    Really appreciate the help.

  • SharePoint Foundation 2013 - Search Configuration Issue - 2 App Servers and 2 Front-End Servers

    Hi, 
    We have a SharePoint Foundation 2013 with SP1 Environment. 
    In that, we have 2 Front-End Servers and 2 App Servers. In the Front-End Servers, the Search Service is stopped and is in Disabled state and in the 2 App Servers in One App Server, Search is Online and in another Search is Starting but goes to Stopped sooon
    after.
    Originally, we had only 1 App Server and we were running our Search Service and Search Service Application in that. Now since the index location became full and we were unable to increase the drive there, we added one more App Server and now the issue is
    Search is not properly getting configured in either of these App servers. What we want to do is run Search only in the new App Server, because we have a lot of storage space for Index locations here, but in the older App Server, not run Search at all.  We
    tried keeping the Search Service disabled and ran the below PowerShell Scripts, but none of the ones are working. These scripts are creating the Search Service Application, but the error of "Admin Component is not Online", "Could not connect
    to the machine hosting SharePoint 2013 admin component" is coming up. 
    http://www.funwithsharepoint.com/provision-search-for-sharepoint-foundation-2013-using-powershell-with-clean-db-names/
    http://blog.falchionconsulting.com/index.php/2013/02/provisioning-search-on-sharepoint-2013-foundation-using-powershell/
    http://blog.ciaops.com/2012/12/search-service-on-foundation-2013.html
    Can I get some help please?
    Karthick S

    Hi Karthick,
    For your issue, could you provide the
    detail error message of ULS log  to determine the exact cause of the error?
    For SharePoint 2013, by default, ULS log is at      
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    For troubleshooting your issue,  you can try to run the SharePoint Products Configuration Wizard on your WFE servers and run the script for configuring the search service on SharePoint
    Foundation:
    [string]$farmAcct = "DOMAIN\service_Account"
    [string]$serviceAppName = "Search Service Application"
    Function WriteLine
    Write-Host -ForegroundColor White "--------------------------------------------------------------"
    Function ActivateAndConfigureSearchService
    Try
    # Based on this script : http://blog.falchionconsulting.com/index.php/2013/02/provisioning-search-on-sharepoint-2013-foundation-using-powershell/
    Write-Host -ForegroundColor White " --> Configure the SharePoint Foundation Search Service -", $env:computername
    Start-SPEnterpriseSearchServiceInstance $env:computername
    Start-SPEnterpriseSearchQueryAndSiteSettingsServiceInstance $env:computername
    $appPool = Get-SPManagedAccount -Identity $farmAcct
    New-SPServiceApplicationPool -Name SeachApplication_AppPool -Account $appPool -Verbose
    $saAppPool = Get-SPServiceApplicationPool -Identity SeachApplication_AppPool
    $svcPool = $saAppPool
    $adminPool = $saAppPool
    $searchServiceInstance = Get-SPEnterpriseSearchServiceInstance $env:computername
    $searchService = $searchServiceInstance.Service
    $bindings = @("InvokeMethod", "NonPublic", "Instance")
    $types = @([string],
    [Type],
    [Microsoft.SharePoint.Administration.SPIisWebServiceApplicationPool],
    [Microsoft.SharePoint.Administration.SPIisWebServiceApplicationPool])
    $values = @($serviceAppName,
    [Microsoft.Office.Server.Search.Administration.SearchServiceApplication],
    [Microsoft.SharePoint.Administration.SPIisWebServiceApplicationPool]$svcPool,
    [Microsoft.SharePoint.Administration.SPIisWebServiceApplicationPool]$adminPool)
    $methodInfo = $searchService.GetType().GetMethod("CreateApplicationWithDefaultTopology", $bindings, $null, $types, $null)
    $searchServiceApp = $methodInfo.Invoke($searchService, $values)
    $searchProxy = New-SPEnterpriseSearchServiceApplicationProxy -Name "$serviceAppName - Proxy" -SearchApplication $searchServiceApp
    $searchServiceApp.Provision()
    catch [system.exception]
    Write-Host -ForegroundColor Yellow " ->> Activate And Configure Search Service caught a system exception"
    Write-Host -ForegroundColor Red "Exception Message:", $_.Exception.ToString()
    finally
    WriteLine
    ActivateAndConfigureSearchService
    Reference:
    https://sharepointpsscripts.codeplex.com/releases/view/112556
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Eric Tao
    TechNet Community Support

  • Enhancing F4 Search Help Issue - Standard Component

    Hello All,
    We have a requirement in SRM to customize couple of standard Search helps attached to the Webdynpro components. As such I know the concept of how we can handle this requirement but hitting an issue.
    Standard Working scenario -
    1) Standard Structure available with multiple fields. Two fields that are of our interest are SH_VALUE and SH_VALUE_LABEL.
    2) Standard Search help for this being used has fields VALUE and VALUE_LABEL.
    3) In the Structure the both the fields SH_VALUE and SH_VALUE_LABEL are mapped to the Search help VALUE and VALUE_LABEL.
    4) In the WD component the node is mapped to the standard structure.
    Running the application and the picking up the values from F4 on the SH_VALUE field will return its corresponding value and also map the SH_VALUE_LABEL field with the Label from the F4 since the structure and Search help mapping are there.
    So far good when its standard.
    Issue I am facing -
    We need to modify this standard search help to customize our needs.
    1) Did a Copy of the standard Search help and then modified to suit our needs. The output structure of the search is still the same as the standard one.
    2) Did a Post Exit in the WD component to call our custom search help through the below code -
    data lo_nd_attrib type ref to if_wd_context_node.
    data lo_nd_attrib_info type ref to if_wd_context_node_info.
    lo_nd_attrib = wd_context->path_get_node( path = `ATTRIBUTES_DATA.ATTR_DTLS_MULT` ).
    lo_nd_attrib_info = lo_nd_attrib->get_node_info( ).
    lo_nd_attrib_info->set_attribute_value_help( name = 'SH_VALUE' value_help_mode = '121' value_help = 'Z_ORG_ATTR' ).
    lo_nd_attrib_info->set_attribute_value_help( name = 'SH_VALUE_LABEL' value_help_mode = '121' value_help = 'Z_ORG_ATTR' ).
    Running the application just returns the SH_VALUE field but does not get the data for the SH_VALUE_LABEL.
    Is there something wrong in the way I am calling the Custom Search help or should I need to approach this differently?
    Thanks,
    Nagarajan.

    Hi Nagarajan,
    Well, you are trying to set the search help to both attributes ( sh_value, sh_value_label) individually and it is having no link between these two attributes
    i.e. once you select a value from search help of SH_VALUE, its no where linked that the other details to be passed to SH_VALUE_LABEL.
    We generally, do the linking of attributes to search help parameters at structure level as below
    So, if you need the same behaviour, then you need to assign the Zsearch help at strucuture field SH_VALUE and link the parameters to both fields SH_VALUE & SH_VALUE_LABEL
    In case, if find it not possible to to this way,
    You need to populate the value of field SH_VALUE_LABEL upon selection of value from search help of SH_VALUE.
    i.e. by registering the search help selection event to an OnEnter action and write the logic to populate the value to SH_VALUE_LABEL
    Please refer the below link
    Automatically Trigger onEnter event after selecting value from the Value Help(F4 Help)
    Hope this helps you.
    Regards,
    Rama

  • Search Term Issues when passed as Parameters in Opening a PDF file in Browser (Updated)

    Hi everyone,
    I am wondering if there is a solution to the following issue.
    We are working with PDF files that have been OCRed (invisible text layer). We use a search engine to search the PDFs for terms. We then pass the search terms as a parameter to the PDF when we are opening it in Acrobat or Reader in the browser. It brings up a list of instances and the context in which it is found -- much like the native search function -- but it is not possible to only search for the exact phrase when it is passed as a variable..
    In some cases, what we see are two lists -- so it has the filename with a list underneath that is expanded showing search results, and then a second instance of the file name after that list, but it is collapsed.
    Is there a way to just have one list or both lists expanded at the same time?
    Also, is there a way to ensure that it shows instances where more search keywords are found at the top of the list.
    For example, if we pass the search phrase "wanted to buy a car" it might show instances of "to" at the top of the list, but later on in the collapsed list it might show instances of "buy a car".  Again, is it possible to prioritize the results, or at the very least, expand everything? I am not sure what else we can try.
    thank you,
    Jeremy
    Follow up: I should note that some times the two lists appear to be the same or similar terms found twice. At the top it would say 2 documents with n instances (where n is the number of instances). I have noticed this when the search keyword count goes up.
    Follow up #2: It appears that this occurs more often when using more than 2 keywords, but I have seen it happen with only 2 words.

    There were documents available in the knowledgeable that I no longer have the urls for. I have had communication with Adobe Acrobat support personnel that have made the same statements. I do not have the habit  of asking official Adobe tech support people to prove their statements by providing documentation. I have also seen Adobe employees give presentations on computers that have had both installed. When they were asked about the incompatibility, they did say the equivalent of phooey. However, enough people on this forum have had their problems disappear when they have removed one of the two programs that I feel comfortable giving that advice. Yes some people have no problems running both until one of the programs or a system component gets updated and then things stop working. My advice is not to have both on the same computer. When two programs share system calls and can fight over who gets to handle the call it makes sense that it can cause a problem. It doesn't make a difference if it is Reader and Acrobat or any two other programs you run. If you are not having a problem with running both GREAT. However, if you are running both and have a problem, it is a simple step to eliminate one and see if the problem disappears.

  • Search Engine issue in Windows 7 32 bit

    Hi,
    Configuring ATG Search 10.0.1 on Windows 7 (32 bit) & getting following error while indexing.I have a 55 GB free memory space so I don't think any issues with disk space.
    I am aware that ATG Search 10.x is not supported for Windows 7 32 bit system.Search with CRS is working on the same environment but erroring out for my application. Any guess on this issue?
    Thanks!
    Mani
    20:06:43,310 WARN [IndexDeploymentService] Bad search engine 26600001 on krv for partition 26500020
    20:06:43,316 ERROR [IndexDeploymentService] Message from engine on krv: Fri Jan 16 08:26:56 CST 1970 error Could not create the physical partition kernel o
    bject. GetLastError returned 0.
    20:06:51,537 ERROR [IndexDeploymentService] Swap failed for index 26500002; aborting swap and tearing down staging. Swap rollback Policy Description: All physic
    al partitions must have at least one successfully initialized search engine.
    20:06:51,562 ERROR [IndexLoader] Error occurred in step partition_step for sync task 26600004 of type complete. Error:
    atg.searchadmin.core.IndexLoaderException: atg.search.SearchAdminException: atg.search.routing.IndexDeploymentException: Deployment of index for environment 'in
    dexing environment (Production)' failed. Check logs.
    atg.searchadmin.core.IndexLoaderException: atg.search.SearchAdminException: atg.search.routing.IndexDeploymentException: Deployment of index for environment 'in
    dexing environment (Production)' failed. Check logs.
    at atg.searchadmin.core.IndexLoader.prepareEnvironment(IndexLoader.java:676)
    at atg.searchadmin.core.IndexLoader.executeSession(IndexLoader.java:1992)
    at atg.searchadmin.core.IndexLoader$IndexingThread.run(IndexLoader.java:2427)
    Caused by: atg.search.SearchAdminException: atg.search.routing.IndexDeploymentException: Deployment of index for environment 'indexing environment (Production)'
    failed. Check logs.
    at atg.searchadmin.core.stage.PartitionDispatchStage.doInitializeSession(PartitionDispatchStage.java:322)
    at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:143)
    at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:149)
    at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:149)
    at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:149)
    at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:149)
    at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:149)
    at atg.searchadmin.core.stage.IndexingPipelineSessionImpl.initialize(IndexingPipelineSessionImpl.java:242)
    at atg.searchadmin.core.stage.IndexingPipelineSessionService.createSession(IndexingPipelineSessionService.java:121)
    at atg.searchadmin.core.IndexLoader.prepareEnvironment(IndexLoader.java:666)
    ... 2 more
    Caused by: atg.search.routing.IndexDeploymentException: Deployment of index for environment 'indexing environment (Production)' failed. Check logs.
    at atg.search.routing.IndexDeploymentService.deployIndexSynchronously(IndexDeploymentService.java:326)
    at atg.search.routing.RoutingSystemService.deployIndexSynchronously(RoutingSystemService.java:2132)
    at atg.searchadmin.core.stage.PartitionDispatchStage.doInitializeSession(PartitionDispatchStage.java:315)
    ... 11 more
    Edited by: user11263665 on Sep 19, 2012 7:38 AM
    Edited by: user11263665 on Sep 19, 2012 7:40 AM

    I tried the ATG Search indexing in ATG 10.1.1 and I faced the same issue.
    My CRS is up and running and I am able to complete an order in it. But search is not working with it.
    atg.searchadmin.core.IndexLoaderException: atg.search.SearchAdminException: atg.search.routing.IndexDeploymentException: Deployment of index for environment 'indexing environment' failed. Check logs.
         at atg.searchadmin.core.IndexLoader.prepareEnvironment(IndexLoader.java:623)
         at atg.searchadmin.core.IndexLoader.executeSession(IndexLoader.java:2069)
         at atg.searchadmin.core.IndexLoader$IndexingThread.run(IndexLoader.java:2542)
    Caused by :atg.search.SearchAdminException: atg.search.routing.IndexDeploymentException: Deployment of index for environment 'indexing environment' failed. Check logs.
         at atg.searchadmin.core.stage.PartitionDispatchStage.doInitializeSession(PartitionDispatchStage.java:326)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:169)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:175)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:175)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:175)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:175)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:175)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:175)
         at atg.searchadmin.core.stage.IndexingPipelineSessionImpl.initialize(IndexingPipelineSessionImpl.java:296)
         at atg.searchadmin.core.stage.IndexingPipelineSessionService.createSession(IndexingPipelineSessionService.java:144)
         at atg.searchadmin.core.IndexLoader.prepareEnvironment(IndexLoader.java:613)
         at atg.searchadmin.core.IndexLoader.executeSession(IndexLoader.java:2069)
         at atg.searchadmin.core.IndexLoader$IndexingThread.run(IndexLoader.java:2542)
    Caused by (#2):atg.search.routing.IndexDeploymentException: Deployment of index for environment 'indexing environment' failed. Check logs.
         at atg.search.routing.IndexDeploymentService.deployIndexSynchronously(IndexDeploymentService.java:354)
         at atg.search.routing.RoutingSystemService.deployIndexSynchronously(RoutingSystemService.java:2266)
         at atg.searchadmin.core.stage.PartitionDispatchStage.doInitializeSession(PartitionDispatchStage.java:319)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:169)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:175)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:175)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:175)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:175)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:175)
         at atg.searchadmin.core.stage.IndexingPipelineStage2Impl.initializeSession(IndexingPipelineStage2Impl.java:175)
         at atg.searchadmin.core.stage.IndexingPipelineSessionImpl.initialize(IndexingPipelineSessionImpl.java:296)
         at atg.searchadmin.core.stage.IndexingPipelineSessionService.createSession(IndexingPipelineSessionService.java:144)
         at atg.searchadmin.core.IndexLoader.prepareEnvironment(IndexLoader.java:613)
         at atg.searchadmin.core.IndexLoader.executeSession(IndexLoader.java:2069)
         at atg.searchadmin.core.IndexLoader$IndexingThread.run(IndexLoader.java:2542)

  • URXVT Title issue and keybind issue (backspace, delete, etc.)

    Hi,
    Two questions:
    1) I use zsh. How can I set the title of urxvt to be my current directory?
    2) I'm having an issue in urxvt wih backspacing/deleting/end-of-line/beginning-of-line. What are the proper bindkey's for that?

    Here's straight from my ~/.zshrc file
    # This sets the window title to the last run command.
    [[ -t 1 ]] || return
    case $TERM in
    *xterm*|rxvt|(dt|k|E|a)term)
    preexec () {
    print -Pn "\e]2;$1\a"
    screen*)
    preexec () {
    print -Pn "\e\"$1\e\134"
    esac
    # Setting HOME and END keys
    case $TERM in (xterm*|aterm|rxvt)
    bindkey '\e[H' beginning-of-line
    bindkey '\e[F' end-of-line ;;
    esac
    The preexec codes actually print out my last command. 
    So, in order for it to do what you want, you would need to change:
    case $TERM in
    *xterm*|rxvt|(dt|k|E|a)term)
    preexec () {
    print -Pn "\e]2;$1\a"
    to:
    case $TERM in
    *xterm*|rxvt|(dt|k|E|a)term)
    preexec () {
    print -Pn "\e]2;%~\a"
    That should do it for ya.
    Last edited by Knute (2009-09-06 00:57:18)

  • Search request issue in GRC AC10.0

    Hello Experts,
    When we want to check the status of the request logged by others by using the below option we are not getting any results
    GRC 10.0 with SP14.
    My Home ->My Profile -> Request Status then click on the Change Query. In the Change query screen enter the request number created by others and click on Preview.
    This is not authorization issue. We tested with user having SAP_ALL authorization.
    Does anyone has any idea?
    Thanks in advance
    Hari

    Hi Hari,
    When we talk about page My Home  / My Profile, this shows the information which is related to me/us only. If end user logon using this page/link, he/she can see his/her own data.
    Change Query is to filter the existing data which comes at the time of loading/refreshing the window. This should not show data out of scope.
    So request status using my home page would not be able to show data for other users.
    Search Request link is the only way to check others request data.
    Thanks & Regards
    Neeraj

  • Facebook Picture upload title issue

    I have searched the forums and have not found much on this topic so here goes! When you upload a picture from iphoto using the Facebook feature, why does it put the name of the photo in the title bar? So if my picture just came off my digi cam its title is like IMG001.jpg. That is what shows up in the title bar of facebook. So it looks to my friends like I uploaded this picture then put in the caption the name of the file? Quite annoying! Anyone know any info that they might share?
    Thanks in advance!

    This is one of the things I like least with iPhoto'09's implementation of the Facebook uploader. For what I do, I HAVE to keep the camera names in the Title field. I deal with many thousands of photos, and I don't really have the option of just moving them elsewhere (such as to a different field).
    You can always try the Facebook Exporter (available from Facebook) here: http://developers.facebook.com/iphoto/
    This is different than the built-in version Apple did. In the Facebook version they get the description/title fields CORRECT. They probably asked a real photographer what would work best, whereas Apple may have asked a chimpanzee, as their way of doing it makes no sense at all.
    In Facebook a "caption" can be placed under any photo. The Facebook Exporter uses your "description" field for this, which is exactly what should be done. The iPhoto Facebook Uploader uses the "title" for this, which makes no sense at all, considering that the only "title" in Facebook Albums is the actual album name.
    Regardless, it's a huge disappointment for me. I need to keep my camera-created "titles" in iPhoto just the way they are (otherwise I'd have an inventory nightmare on my hands). So I'm stuck.
    I'm not sure if the Facebook Exporter works with iPhoto'09 (it does with previous versions) but I think I'm going to give it a try. Sure, I'll lose the automatic syncing and updating and the automatic face-tagging... but I don't really have a choice if I want any kind of captions to appear on Facebook at all.
    Why can't Apple just correct this so we can move on??

  • Two title issues

    I have two issues related to iMovie HD 6's use of titles:
    1. Why are most titles limited to roughly 4 seconds of "pause" time? I want a 2-line "Centered Title" to fade in in 1 second, pause on the screen for around 6 seconds, and then fade out in 1 second. The closest I can get to this is to have it fade in for 2 seconds, pause for 4 (max available), and fade out for 2. However, this is not what I want. What is the point of having an upper limit on the "pause" time?
    2. My title, when rendered, is being vertically squished. I'm working in a 1080i 16:9 HD project. In the preview and during rendering, the title looks crisp and correct. When it is done rendering, it is vertically squished and looks jagged and awful. Any thoughts?
    Thanks.

    I would start by trying the i/o 2 with garageband in another user account to find out if it's a local or global problem.
    Then with the alesis plugged in make sure that all your settings in the audio/midi setup utility are correct for the device.
    A class compliant device means if they build the interface to a agreed upon spec it will be recognized and be able to use the apple driver (core audio). It did work because you were able to use it and change it's function when making it part of aggregate device.

  • Notes app "Titles" issue

    This has only happened since upgrading to Mountain Lion and the new Notes app. In the Mac Notes app I'm having a frequent issue where I see two notes with the same title (like a note has been duplicated) and it appears that another note has disappeared. But when I click on the "duplicate", the note I thought was missing is displayed - it's just listed under the wrong title. If I Quit and relaunch Notes the problem goes away. Seems like it is related to iCloud syncing but I'm not sure. All of my Notes are in iCloud.

    Well, now it's 2015 and the problem is still there.   Previously generated notes' titles are often overwritten by a new note's title.
    Example:
       Note A
       Note B
       Note C
    exists.  Then I create Note D, which appears on top because it's newer.  The title for, say, Note A (having recently been used) changes to "Note D" without editing the first line of that note, which still says "Note A".
    Killing the app and restarting it makes the titles regenerate to the correct text.

  • Title issue in premiere CS 5.5

    I just discover this issue and I would like you to help me.
    I'm working on a PAL DV widescreen project. I wanted to use a title for each person on the show so I opened Title - Single Still and I drew a rectangle. So I went to fill it with a gradient (normal 2 color) from red on left to white on right. The white color was set to trasnparent whit transient color to 0.
    Well, when I built this with 0° angle (from up to down) the gradient works good and you can see it well on Premiere. If I set it to 270° (from left to right as I need) I can see on video the rectangle only for its 2/3 width on screen. The right side is cutted.
    I also tried to make this rectangle in Photoshop and import in the title desktop, well: the same issue. The rectangle made in .psd format with a color gradient and transparent background is shown only for his 2/3 widht on screen. The right side is missing. Tiff format or jpg with white backgroud work good.
    I tried to make a new projetc, just to test. The same issue. Rectangle whit a horizontal color gradient cannot be seen entirely.
    If I import the .psd file directly in the project, it is shown well, as it is.
    Please, I'd like you to try this procedure and tell me if you have the same issue.

    That's what I did at the end. But I don't like this issue. If I need a gradient color rectangle I should not use Photoshop and import it but Premiere should be able to draw it.

Maybe you are looking for

  • Compare several records in the same table

    Hello, i´m writing a BAT file so i can export some information that i query. I have a automatic integration that from time to time checks if there is any new client´s and generates a trigger. If an error ocurs i it will repeat the process until the c

  • How can I change menu language from Czech to American?

    Hi, I just bought CS6, and when I installed it, the language in the menu is Czech (I live in Czech). I would like to switch the language on the menu to American, how can I doi that? Thanks, Christie

  • Overhead of using java.sql.STRUCT

    I am calling a stored proc passing in a java.sql.STRUCT created via DDL statement CREATE TYPE APPDBA.MY_STRUCT AS OBJECT USER_KEY INTEGER, USER_HOME VARCHAR2(32) My question is: when i am creating a structdescriptor from java oracle.sql.StructDescrip

  • Unable to resolve errors thrown by BAPI FM "BAPI_ACC_DOCUMENT_CHECK"

    We are facing problems with BAPI function module BAPI_ACC_DOCUMENT_CHECK. We are currently using SAP R/3 Enterprise 4.7. The current support patch applied in our server is SAPKH47028. The BAPI in our Z-program respons with errors "Error in document:

  • OEM Register Problems

    Dear all, I am new to OWB. After I pressed the OEM Register button under the Generated Scripts Box. It said the Java Virtual Michine Launcher, could not find the main class. Program will exit! But I have already installed the Java 2 SDK and Jave 2 Ru