How to Modify Search URL's in Forums?

OK, this has been plaguing me for a while now, but had time on my hands, so will ask for some assistance from the forum gurus here.
Problem:
I use the Forum Search (yeah, I know that the name could be better... ), to locate many articles to link to. In most cases, I know the exact Search keyword to use, but I then have an issue - the URL provided for the article is almost always pointing way down a long thread. That can be useful sometimes, but I want to get the URL for the beginning of those threads, to make it easier for others (especially new users) to get the thread from the beginning, and not at the end, or even the middle. Even when the Search keyword is in the title, and also in the OP, the Adobe Forum Search always dumps me at the end of the thread, or at best, the middle - never at the beginning.
Here is an example:
Search in Premiere Elements Tips & Tricks Forum for keyword "resources." I get http://forums.adobe.com/message/3953827#3953827, which is about the middle of that thread. The word "Resources" is used in the title, and also the OP (mine), but I do not get it, until down the thread. The Search function seems to overlook the first several uses of the word, and I get the URL for the Re:. This is the URL that I want: http://forums.adobe.com/thread/800455?tstart=0.
What do I need to do, to get that ____start=0 ?
Appreciated,
Hunt

Bill,
Actually, it is sometimes possible to get to the thread URL in another way, but I am afraid it is no less silly.
1) Make the search (Ask the Question) and get to wherever in the thread;
2) Go to the top (if needed) and Click [the OP], then click [the OP]'s Stuff and see whether the thread is still in the list without Re: at the start.
That will give the thread URL (without the ?tstart=0, though), as in this case http://forums.adobe.com/thread/1405227, which is viable in itself; you may add the ?tstart=0.
I just made it before it went off the list.

Similar Messages

  • How do I search in a single forum!?

    I wanted to search for something within the "Compressor 4" community, but it doesn't seem like the new 'discussions' site allows you to search within a specific forum. All I see is the 'search communities' bar in the top right. How do I only search within 'Compressor 4'?

    Type in your search, then under More options, click that link and Type in "Compressor" into the box marked:
    Restrict to a Community: In order to limit it to that Community

  • How do I search just the Dreamweaver forums?

    Hi all,
    I must be crazy but I can't seem to see how to search just the Dreamweaver forums. Two search fields, one for all adobe.com and one for searching all forums but no option to search only this one?
    David

    Hi,
    sorry, I misunderstood. Now, what I do is when I want to search in the DW forum only, I start my search with the word "dreamweaver" an let it follow with the searched terms.
    If you cannot live with that, you could your  "link in that group that said "Search this forum" might be ..." serve as suggestion to
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform, where you can "Use this form to request new features or suggest modifications to existing features."
    Hans-Günter

  • How to modify search query based on new FE

    Hi,
    As per a requirement, in All Accounts search (advanced search section), I had to replace 5 checkboxes (e.g. Role1, Role2, Role3, Role4, Role5) by a single dropdown (codelist) name= "Account_Roles" containing same values (Role1, Role2, Role3, Role4, Role5). I created Customer's XBO and declared field of the codelist type, name= "Account_Roles". So, the XBO now has below 6 fields :
    Role1, Role2, Role3, Role4, Role5 (type = Indicator)
    Account_Roles                            (type = codelist)
    Existing search on All Accounts worked on the 5 checboxes and fetched those accounts for which the values matched.
    E.g.
    If in search parameters, I check Role1 & Role2, and for Account1, these values are stored as "true", then Account1 will be shown in the result list.
    Now the search UI doesn't have the checkboxes, but codelist ('Account_Roles') which can have value 'Role1'/'Role2'/'Role3'/'Role4'/'Role5' or combinations are also possible like 'Role1' OR 'Role2', etc..
    My question here is -
    Will the old search query that worked on indicator fields earlier, handle the new FE "Account_Roles" automatically ?
    If not, then will modification be required to existing search query ?
    If modification is required, what steps I need to follow to handle this new field instead of checkboxes.
    I need exact steps to modify a search query, as I tried several things in the PDI but was not able to confirm if this requirement can be implemented by modifying search query or it is not feasible from PDI perspective.
    Appreciate all your inputs.
    Thanks,
    Sachin.

    Hi,
    you can create a link between the vendor objects itself, means link 0vendor with 0ven_compc and 0ven_purorg. This should give you a list of all vendors multiplied with the comp codes multiplied with the purch. org. May be here it is possible to create another link between a attribute (eg. comp_code of 0ven_purorg with comp_code of 0ven_compc). In case it is not possible you need to add this link information somehow. Another option might be to create 2 queries. One on a infoset of 0vendor and 0ven_purorg and another one on 0vendor and 0ven_compc.
    regards
    Siggi

  • How to modified a URL showed in a Render phase from the Action phase.

    Hi all,
    I have a problem with a URL showed when I pass from action phase to render phase. Next I explain that problem.
    I'm using a Weblogic Portal 10.3., Java Portlet and Spring. My portlet contains two controllers (A and B). The controller A receive an action and depending of a parameter, shows a viewA (which is managed by A controller) or viewB (managed by B controller). To do that I use a ParameterHandlerMapping of SpringFramework, which if an action parameter is A, the portlet use Controller A and use controller B if an action parameter is B.
    Next I show you a Controller A method which receive an action:
    @ActionMapping(params={"action=A","execAction=redirection","pg"})
    public void accionIrFichaDispositivo(ActionRequest req, ActionResponse resp,
    @ModelAttribute("listadoVozForm") ListadoVozForm form,
    @RequestParam("pg") String paramPg) throws PortletException, IOException{
    if(pg.equals("Hola")){
    }else{
    resp.setRenderParameter("action", "B");
    In a Render Phase, which is managed by Controller B, the URL contains the value of action parameter: action=A.
    How can I modified that action parameter to show action=B?..
    Regards..

    Hello,
    What you are seeing is the expected behavior; the URL in the browser will be the action URL (with action=A) even though the portlet is setting a render parameter action=B in the action phase. There's nothing "wrong" with this; the "B" controller will get run because the render parameter "action=B" exists, even though it isn't what is displayed in the browser. In general, it is best to not be concerned about what parameters are in the browser's URL, as the portal framework is managing all the parameters for you on the server-side.
    If you really want the browser's displayed URL to not be the action URL, there is a feature built in to WLP 10.3.2 and later versions which will cause the browser to do a redirect to the render URL just after the action phase runs. This will make the browser display the "action=B" in the URL, but the redirect will also double the number of requests the server must handle, so consider if you really need the browser's URL to display the current render URL. To turn this feature on, modify the entry for your portlet in the WEB-INF/portlet.xml file to add a container runtime option "com.oracle.portlet.redirectAfterAction", like this:
        <portlet>
            <portlet-name>sampleRedirectAfterAction</portlet-name>
            <portlet-class>
                portlets.jsr286.SampleRedirectAfterAction
            </portlet-class>
            <supports>
                <mime-type>text/html</mime-type>
                <portlet-mode>view</portlet-mode>
            </supports>
            <portlet-info>
                <title>Redirect After Action Sample</title>
            </portlet-info>
            <container-runtime-option>
                <name>com.oracle.portlet.redirectAfterAction</name>
                <value>true</value>
            </container-runtime-option>
            <container-runtime-option>
                <name>com.oracle.portlet.suppressWsrpOptimisticRender</name>
                <value>true</value>
            </container-runtime-option>
        </portlet>The "suppressWsrpOptimisticRender" runtime option is recommended as a performance enhancement for any portlets being run over WSRP which also have the "redirectAfterAction" option, however, if you are running your portlets over WSRP you won't be seeing the render parameters in the browser's URL in any recognizable form anyway.
    Kevin

  • How to Modify Search for Leads using Date types in the Assgmnt Block Date

    Hello Experts,
    I have a requirement to modify the search for Leads using Dates in the Assignment Block Dates and using the Posting Date of the transaction.
    Any ideas?
    Thank you in advance,
    Justin

    If you look at the grants, you'll see that there are over 170 objects from the FLOWS_030000 granted to PUBLIC:
    SQL> select count(*) from dba_tab_privs where owner= 'FLOWS_030000' and grantee = 'PUBLIC';
    173
    If we were go grant these privileges to a role, called APEX_APP_RU, and grant this role to APEX_PUBLIC_USER and any schemas an application is linked to (Workspace to Schema), would that be a workable solution?
    The only problem I see right off hand that this might not work is that PUBLIC has synonyms created for the FLOWS_030000 objects. If we revoke the underlying privileges, because of the synonyms, this might not work.
    SQL> select COUNT(*) from dba_synonyms where table_owner = 'FLOWS_030000' and owner = 'PUBLIC';
    176
    Does anyone else have any ideas?

  • How do you search this forum?

    The interface here is maddening.  How do i search just the FlashBuilder forum?

    If you click the magnifying glass (I know it'll search for "Search Forums") but it'll get you to the right page.
    Then under the main search heading you'll see a little green "+" sign with the text "More Options" that will pop down all the forums.
    Flash Builder is a sub-forum of "Adobe Labs" (I found if you drag the scroller about half way down you'll get there).
    There is a ton of sub forums though, man, I can see how you were frustrated!

  • 1. How can we search the Forum to see if a question has already been asked? 2. Can I send a Web Page and not just its Link?

    1. How can we search the Forum to see if a question has already been asked? Search goes back to Help and out of the Forum.
    2. Can I send a Web Page and not just its Link? Explorer allows it.

    1. How can we search the Forum to see if a question has already been asked? Search goes back to Help and out of the Forum.
    2. Can I send a Web Page and not just its Link? Explorer allows it.

  • How to modify  the search results of the GUI for subscribing to calendars

    How to modify the search results of the GUI for subscribing to calendars
    Note:
    <OL>
    <LI>The following information applies only to iPlanet Calendar Server 5.0
    Patch 3.
    <LI>All of the cases for which the XSLT changes will work have not been
    verified.
    <LI>The following is only an example of an XSLT customization.
    </OL>
    The example below shows a sample customization of the
    search_for_calendars
    dialog. This customization will result in the Display Name being included as
    part of the search results in the GUI, which would normally show just the
    calendar ID. It will render the returned calendars in the following format:
    <P>
    Display Name - <I>description</I>
    <P>
    Normally, the format would be as follows:
    <P>
    Calendar-ID - <I>description</I>
    <P>
    </A>
    The example consists of the following two files:
    <P>
    <OL>
    <LI>search_for_calendars_common.xsl
    (the entire XSLT file)
    <P>
    <LI>diffctx.txt
    (the context sensitive diff patch file,
    which basically shows only the changes that need to be made)
    </OL>
    <P>
    <HR>
    </A><B>
    search_for_calendars_common.xsl</B>
    <?xml version="1.0" ?>
    <!DOCTYPE xsl:stylesheet (View Source for full doctype...)>
    - <!--
    set the output properties
    <xsl:stylesheet
    xmlns:xsl="http://www.w3.org/XSL/Transform/1.0"
    result-ns="http://www.w3.org/TR/REC-html40">
    -->
    - <xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0">
    - <!-- set the output properties
    -->
    <xsl:output method="html" encoding="ISO-8859-1" />
    <xsl:include href="data/common.xsl" />
    <xsl:include href="data/i18n.xsl" />
    <xsl:include href="data/date_format.xsl" />
    <xsl:include href="data/dialog_tabs.xsl" />
    - <xsl:template match="/">
    <xsl:apply-templates select="calendar" />
    </xsl:template>
    - <xsl:template match="calendar">
    - <xsl:choose>
    - <xsl:when test="@top='true'">
    - <xsl:variable name="Frame1">
    <xsl:value-of select="frame[1]" />
    </xsl:variable>
    - <xsl:variable name="Frame2">
    <xsl:value-of select="frame[2]" />
    </xsl:variable>
    - <xsl:variable name="Frame3">
    <xsl:value-of select="frame[3]" />
    </xsl:variable>
    - <xsl:variable name="tab_value">
    <xsl:value-of select="@tab" />
    </xsl:variable>
    - <HTML>
    - <HEAD>
    <xsl:call-template name="contextJavascript" />
    <TITLE>Calendars Search: Calendar Express - iPlanet</TITLE>
    </HEAD>
    - <FRAMESET border="0" frameborder="0" rows="77,*,71">
    <FRAME name="tab" marginheight="0" marginwidth="0" scrolling="no"
    scrollbars="no" src="{$Frame1}" />
    <FRAME name="main" frameborder="0" src="{$Frame2}" />
    <FRAME name="button" marginheight="0" marginwidth="0" scrolling="no"
    scrollbars="no" frameborder="0" src="{$Frame3}" />
    </FRAMESET>
    </HTML>
    </xsl:when>
    - <xsl:when test="@view='searchProperties'">
    - <xsl:for-each select="group">
    - <xsl:if test="@name='searchProperties'">
    <xsl:call-template name="search_toolbar" />
    </xsl:if>
    </xsl:for-each>
    </xsl:when>
    - <xsl:when test="@view='main'">
    - <xsl:for-each select="group">
    - <xsl:if test="@name='main'">
    <xsl:call-template name="main" />
    </xsl:if>
    </xsl:for-each>
    </xsl:when>
    - <xsl:when test="@view='button'">
    - <xsl:for-each select="group">
    - <xsl:if test="@name='button'">
    <xsl:call-template name="button_root" />
    </xsl:if>
    </xsl:for-each>
    </xsl:when>
    - <xsl:otherwise>
    - <html>
    What's this view? (search_for_cals.xsl) -
    <xsl:value-of select="@view" />
    </html>
    </xsl:otherwise>
    </xsl:choose>
    </xsl:template>
    - <xsl:template name="search_toolbar">
    - <HTML>
    <xsl:call-template name="emit_frame_head_tag" />
    - <BODY bgcolor="{$bgcolor_background}" background="imx/tdbg.gif"
    marginwidth="0" marginheight="0" onload="window.focus()">
    - <FORM>
    - <xsl:attribute name="action">
    <xsl:value-of select="./formdata@action" />
    </xsl:attribute>
    <xsl:attribute name="name">form</xsl:attribute>
    <xsl:attribute name="onSubmit">document.forms[0]['find'].click(); return false;
    </xsl:attribute>
    <xsl:apply-templates select="formdata" />
    - <CENTER>
    - <TABLE border="0" cellpadding="2" cellspacing="0" width="100%" height="100%">
    - <TR>
    - <TD align="center">
    - <TABLE border="0" cellpadding="3" cellspacing="1">
    - <TR>
    - <TD colspan="4">
    <FONT size="{$font_size_big_2}" face="{$font_name}">Find all calendars where
    the calendar</FONT>
    </TD>
    </TR>
    - <TR>
    - <TD valign="baseline">
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <SELECT name="which">
    <OPTION value="name;calid">name or ID</OPTION>
    <OPTION value="name">name</OPTION>
    <OPTION value="primaryOwner">primary owner</OPTION>
    <OPTION value="calid">ID</OPTION>
    </SELECT>
    </FONT>
    </TD>
    - <TD valign="baseline">
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <SELECT name="how">
    <OPTION value="0">contains</OPTION>
    <OPTION value="1">begins with</OPTION>
    </SELECT>
    </FONT>
    </TD>
    - <TD valign="baseline">
    <INPUT type="text" name="what" />
    </TD>
    - <TD valign="baseline">
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <INPUT type="button" name="find" value="Find">
    - <xsl:attribute name="onClick">
    <xsl:value-of select="./button[@name='find']" />
    </xsl:attribute>
    </INPUT>
    </FONT>
    </TD>
    </TR>
    </TABLE>
    </TD>
    </TR>
    </TABLE>
    </CENTER>
    </FORM>
    </BODY>
    </HTML>
    </xsl:template>
    - <xsl:template name="main">
    - <HTML>
    <xsl:call-template name="emit_frame_head_tag" />
    - <BODY bgcolor="{$bgcolor_background}" background="imx/tdbg.gif"
    marginwidth="0" marginheight="0">
    - <FORM name="form" method="post">
    - <xsl:attribute name="action">
    <xsl:value-of select="./formdata@action" />
    </xsl:attribute>
    <xsl:attribute name="name">form</xsl:attribute>
    <xsl:apply-templates select="formdata" />
    <INPUT type="hidden" name="how" value="0" />
    <INPUT type="hidden" name="which" value="name;calid" />
    <INPUT type="hidden" name="what" value=" />
    <INPUT type="hidden" name="selectedGroup" />
    - <xsl:if test="(./calsearchresults/nomatch)">
    - <!-- print no match found
    -->
    &#38;nbsp;
    &#38;nbsp;
    No Match Found
    </xsl:if>
    - <xsl:for-each select="./calsearchresults/searchresultcal">
    - <P>
    &#38;nbsp;
    &#38;nbsp;
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <FONT size="{$font_size_big}" face="{$font_name}">
    Owner:
    <xsl:value-of select="@owner" />
    <FONT size="{$font_size_big}" face="{$font_name}" color="{$bgcolor_wend_mid}">|
    </FONT>
    Calendar ID:
    <xsl:value-of select="@id" />
    <BR />
    </FONT>
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <xsl:choose>
    - <xsl:when test="@subscribed='false'">
    &#38;nbsp;
    &#38;nbsp;
    - <INPUT type="checkbox" name="calendar">
    - <xsl:attribute name="value">
    <xsl:value-of select="@name" />
    </xsl:attribute>
    </INPUT>
    &#38;nbsp;
    &#38;nbsp;
    - <A target="_blank">
    - <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand" />
    </xsl:attribute>
    <xsl:value-of select="@name" />
    </A>
    </xsl:when>
    - <xsl:otherwise>
    &#38;nbsp;
    &#38;nbsp;
    - <A target="_blank">
    - <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand" />
    </xsl:attribute>
    <xsl:value-of select="@name" />
    </A>
    &#38;nbsp;
    (Subscribed)
    </xsl:otherwise>
    </xsl:choose>
    - <xsl:if test="string-length(@description) > 0">
    &#38;nbsp;
    &#38;nbsp;
    - <FONT size="{$font_size_big}" face="{$font_name}">
    <xsl:value-of select="@description" />
    </FONT>
    </xsl:if>
    </FONT>
    </FONT>
    </P>
    </xsl:for-each>
    </FORM>
    </BODY>
    </HTML>
    </xsl:template>
    </xsl:stylesheet>
    <P>
    <A HREF="#back">Back</A>
    <P>
    <HR>
    </A>
    <B>diffctx.txt</B>
    Index: search_for_calendars_common.xsl
    ===================================================================
    RCS file: /m/src/ns/server/msg/calendar/core/html/search_for_calendars_common.xsl,v
    retrieving revision 1.1.2.14
    diff -c -r1.1.2.14 search_for_calendars_common.xsl
    *** search_for_calendars_common.xsl 2000/12/12 23:10:43 1.1.2.14
    --- search_for_calendars_common.xsl 2001/03/15 23:55:19
    *** 182,188 ****
    &#38;nbsp; &#38;nbsp;
    <INPUT type="checkbox" name="calendar">
    <xsl:attribute name="value">
    ! <xsl:value-of select="@id"/>
    </xsl:attribute>
    </INPUT>
    &#38;nbsp; &#38;nbsp;
    --- 182,188 ----
    &#38;nbsp; &#38;nbsp;
    <INPUT type="checkbox" name="calendar">
    <xsl:attribute name="value">
    ! <xsl:value-of select="@name"/>
    </xsl:attribute>
    </INPUT>
    &#38;nbsp; &#38;nbsp;
    *** 190,196 ****
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@id"/>
    </A>
    </xsl:when>
    <xsl:otherwise>
    --- 190,196 ----
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@name"/>
    </A>
    </xsl:when>
    <xsl:otherwise>
    *** 199,205 ****
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@id"/>
    </A>
    &#38;nbsp;(Subscribed)
    </xsl:otherwise>
    --- 199,205 ----
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@name"/>
    </A>
    &#38;nbsp;(Subscribed)
    </xsl:otherwise>
    <P>
    <A HREF="#back">Back</A>

    Maybe on the Google API s page?

  • How to Do searching in this forum

    Hi all,
    I want to how to do searching for this forum. Let us say i am only interested in forum posting where <b>SAPscirpt and email will appear.</b>
    Should i do "sapscript" and "email"? i tried, but it is not working. I am getting all link which is having either of the word.
    any ideas?
    Thanks !!

    Hi Vipin,
    When i searched for your requirements i got only the first link containing both the terms.Probably that is the only link available.
    The various combinations i tried was :
    "SAP script" & "Email"
    "SAP" & "script" & "Email"
    Hope this helps you.
    Regards,
    Vijith Kumar

  • How To Modify Interactive Report Search Input?

    Hello All,
    I am running version 3.2 and attempting to modify (validate) the search input value on an interactive report. For example, after a user enters a string in the search textbox, I want to strip any space characters from the string and perform other operations as needed.
    I have attempted to use javascript and PL/SQL page processing, but have been unsuccessful with either. I can not figure out how to modify the javascript function called for submitting the page and the on submit page processes don't fire for interactive report pages.
    How do I modify search values on IR pages?
    Mark
    Edited by: Mark Carpenter on Sep 28, 2009 3:53 PM

    Hello Mark,
    The search item is called "apexir_SEARCH".
    Using jQuery you can add a onblur function to that field:
    $(function(){
      // Add an onblur function to the Search field
      $("#apexir_SEARCH").attr("onblur",'clearField(this)');
    function clearField( pThis ){
    //Do your thing here.
    }Greetings,
    Roel
    http://roelhartman.blogspot.com/

  • How can you search this forum without searching all the other forums

    how can you search this forum without searching all the other forums at the same time which is a big fat waste of time.

    Follow this tip to create a bookmark to a search page that searches only the forum you want or...
    Browse with Firefox and enable this Greasemonkey script, which forces all searches from a sub-forum to be local.

  • How do I search this forum?

    How do I search or particular topics in this forum? The onlt search field that I see on my page searches the entire SUN site.

    Check it again. Search feature have just been added again !!!
      Alberto

  • How does one search the Forum by topic?

    How does one search the Forum by topic

    You can use this page for doing searches:
    *https://support.mozilla.com/en-US/search?a=2&w=2

  • In List, How to modify the Link in Quick Edit Mode?

    In List, How to modify the Edit in Quic Mode Link? Instead of opening Quick view mode, to open in InfoPath customized form?

    Hi Eugene,
    According to your description, my understanding is that you want to midify the link of "Edit" and set it linking to a InfoPath Form which can bulk edit your List.
    You can use the code above to modify the Edit's hyperlink and set it linking to your InfoPath form.
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(document).ready(function () {
    $("#idHomePageNewItem").next("a").attr("href","the URL of your InfoPath form");
    $("#idHomePageNewItem").next("a").removeAttr("onclick");
    </script>
    For more information about bulk updating a SharePoint list using InfoPath form, you can have a look at the blog:
    https://social.msdn.microsoft.com/Forums/sharepoint/en-US/c05983fc-d992-49ff-8d18-fa8f70777d66/using-infopath-2010-to-bulk-update-a-sharepoint-list?forum=sharepointcustomizationprevious
    http://infopath.wordpress.com/2013/09/23/infopath-repeating-table-add-edit-delete-sharepoint-list-items-bulk/
    http://sharepointknowledgebase.blogspot.com/2011/10/updating-sharepoint-list-by-using.html#.VGFsKHkcSM8
    If any misunstanding, please feel free reminding me and provide more detail for your issue.
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

Maybe you are looking for

  • WHAT or Who is UPDATUS USER ? It has Admin privaliage ! Owner ( Myself ) has no ability to control my computer !

    WHAT or Who is UPDATUS USER ?       HELP PLEASE !   :-(       Jan 2014     It has Claimed Admin privaliage !  Owner ( Myself ) has no ability / rights to control my own computer !  I cannot download, update, or access programs which were once mine as

  • Is my HDD slow?

    I have the low end 13" MBP (2.26 ghz) with 2gb ram and the stock Hitachi HTS545016B9SA02 HDD With EFI 1.6 I got 25 mb/s read & write After EFI 1.7 I get 32 mb/s read and 32 mb/s write with AJA. Is this "normal" for this config? Or is it slow? I saw s

  • Can SAP CRM system point to different PI systems

    Hi All We have a scenario where we need to point our CRM system to multiple PI systems. Currently we are running around 100+ interfaces in our current setup i.e. CRM(A) and PI(A) systems. Can we point our CRM system to other PI system withiout having

  • Rpd Modeling-Forecast Measures

    Hi, I have a reporting requirement to display Revenue, Cost forecasts for 3months, 2months and 1 months from the current month. Could you please help me in modeling this scenario at rpd? These are few details that might help: 1) the Revenue and Cost

  • HP Update message on reboot

    I have 3 computers networked to my HP LaserJet Pro L7590.  Lately, I have been getting a popup message, particularly when starting up or rebooting that there is an HP Update  with the usual buttons below.  The popup is in black and white and doesn't