Simple Search is not working as expected

I am trying to execute code from the Brian "Bex" Heff book. The code is simple but I cannot figure out an error I'm getting. When I hit the search button I get following error.
A Runtime Error has occurred.
Do you with to Debug?
Line:1433
Error: 'document.QUERYTEXTCOMPONENTS.QueryBuilderQuery.disabled' is null or not an object
If I hit no I got the landing with with all the serach result. It seems like I not passing the querytext value to the next page.
Any idea on what is causing this?
We are on 10g.
hcst-advanced-search.hcst code.
<html>
<head><!--$include ss_layout_head_info-->
<!--$PageTitle="Guest Search Page"-->
<!--$if isTrue(IsLoggedIn)-->
<!--$PageTitle="Search Page For " & UserName-->
<!--$endif-->
<!--$include std_query_html_head_declarations-->
<script language="JavaScript">
<!--$include query_form_submit_form_function-->
</script>
</head>
<!--$include body_def-->
<!--$include std_page_begin-->
<h3 class=pageTitle>HCST Search Page</h3>
<form name="QUERYTEXTCOMPONENTS">
<input type=hidden name="QueryText" value="">
<table>
<tr>
<td align=right><span class=searchLabel>Title</span></td>
<td>
<input type="hidden" name="opSelected"
value="hasAsSubstring">
<input type="text" size=30 name="dDocTitle"
value="">
</td>
</tr>
<tr>
<td align=right><span class=searchLabel>Content ID</span></td>
<td>
<input type="hidden" name="opSelected"
value="hasAsSubstring">
<input type="text" size=30 name="dDocName" value="">
</td>
</tr>
<tr>
<td align=right><span class=searchLabel>
Release Date From</span></td>
<td align=left>
<input type="hidden" name="opSelected" Value="dateGE">
<input type="text" size=12 maxlength=20
name="dInDate" value="">
<span class=searchLabel>To</span>
<input type="hidden" name="opSelected" Value="dateLess">
<input type="text" size=12 maxlength=20
name="dInDate" value="">
</td>
</tr>
<tr>
<td align=right><span class=searchLabel>Full Text</span></td>
<td><input type="text" name="FullTextSearch" size=30></td>
</tr>
</table>
</form>
<!--$c="This page is hcst-advanced-search.hcst, and we wish to render the results with the template hcst-advanced-search-results.hcst"-->
<!--$urlTemplate = strSubstring(fileUrl, 0, strLength(fileUrl)-5)& "-results"-->
<form name="SEARCHFORM" method="GET" action="<!--$HttpCgiPath-->">
<input type=hidden name="IdcService" value="GET_SEARCH_RESULTS">
<input type=hidden name="urlTemplate" value="<!--$urlTemplate-->">
<input type=hidden name="QueryText" value="">
<input type=hidden name="ResultCount" value="5">
<table>
<tr>
<td><span class=searchLabel>Sort By:</span></td>
<td><select name="SortField">
<option selected value="dInDate">Release Date
<option value="dDocTitle">Title
<option value="Score">Score
</select>
</td>
<td><select name="SortOrder">
<option value="Asc">Ascending
<option selected value="Desc">Descending
</select>
</td>
<td>
<input type=submit value ="Search" onClick="submitFrm(false)">
</td>
</tr>
</table>
</form>
<!--$include std_page_end-->
</body>
</html>
Edited by: user642006 on Apr 16, 2009 12:02 PM

Hi
I did not go through the complete code that you have put here.... but from the error "ent.QUERYTEXTCOMPONENTS.QueryBuilderQuery.disabled' is null or not an object it looks to me the js code for the querytextcomponents function is not initialised correctly. May just put a debug statement right before and after the code is called to see what value is being passed to this variable and check if thats the value you expect it to get.
Hope this helps
Thanks
Srinath

Similar Messages

  • Search Results not working as expected with Site.URL Filter

    I have a page (SharePoint 2013 - Foundation) with a search Results web part. In that web part I have added a filter to limit the results to the specific site (and it's children). So my Query text is:
    {searchboxquery} Path:{Site.URL}*
    This works.. except for one thing. I'm guessing here but I think the "Site.URL" is returning the site that contains the search results page and not the site that actually started the search! 
    What I'm trying to do is mimic the default search behavior where a search only contains results from the current site down. So for example
    \sites\mySite\mySubSite
    If I'm on mySite and search, I should get everything from mySite + mySubSite. However if I am in the mySubSite when I search, I should only get results from mySubSite and NOT the parent mySite.
    Added info:
    the actual 'search center' is at the \sites\mysite level. Per MS documentation it states that {Site.URL} is the site from where the query was issued. To me that means that if I am on \mysite\mySubSite and initiate the search there, that it should only include
    results mySubSite which it is not doing
    Here is a screen shot.. I should not be getting any hits

    Hi,
    In SharePoint 2013, we could configure Result source to limit searched to certain content or to a subset of search results. This would be equal to a new search scope in SharePoint 2010.
    For your reference:
    http://technet.microsoft.com/library/jj683115(v=office.15)
    http://blogs.technet.com/b/tothesharepoint/archive/2012/10/09/build-a-specialized-search-experience-in-minutes-with-sharepoint-2013.aspx
    Using sample below will limit search result in subsite:
    {searchTerms} path:http://sp/sites/mysite/subsite
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Dynamic query based Simple Choice List not working as expected.

    I've a value in a View Object attribute which is not present in the LOV associated to it. How to show this in the UI if the attribute's component is a Simple Choice List ?

    Jdev Version is : 11.1.1.6.0
    The attribute for which the LOV exists has a value which was once active on an earlier date, i.e, the LOV used to show the value in it's dropdown on an earlier date.
    Example:
    The ViewObject query for the LOV is:
    SELECT JOB_ID, END_DATE FROM JOBS WHERE END_DATE > SYSDATE
    Results
    JOB_ID -- END_DATE
    45 -- -- -- 23-OCT-2012
    56 -- -- -- 21-OCT-2012
    76 -- -- -- 15-NOV-2012
    78 -- -- -- 15-DEC-2012
    Now,
    The main viewObject EmployeesVO has an attribute JOB_ID with an LOV to the JOBS VO above.
    On 20th Oct, 2012, when I create an employee record, the LOV shows all 4 records in JOBS dropdown and I selected job Id as 56.
    On 25th Oct, when I try to edit the Employee Record, I see a blank item in the JOBS choice list (the LOV being a simple choice list).
    The LOV will display the jobs which are active as on 25th Oct.
    How do I know, what is the current job of the employee?
    This issue will not happen if we use input list of values combo LOV

  • Tree Table Search is not working as expected

    Hi,
    As part of one of my tasks, I need to provide search ability on a Tree Table View.
    The Tree View looks as below:
    A
    -> XA
    -> YA
    -> ZA
    B
    -> XB
    ->YB
    ->ZB
    C
    D
    A,B,C,D are child nodes of Root
    XA, YA, ZA are child nodes of A, and XB,YB,ZB are child nodes of B
    If User searches for XA, the node gets expanded and XA gets selected.
    However if User searches for same XA again, it just starts search from C, from A.
    Here is the code snippet:
         CollectionModel model = (CollectionModel) tree1.getValue();
    treeBinding = (JUCtrlHierBinding) model.getWrappedData();
    JUCtrlHierNodeBinding root = treeBinding.getRootNodeBinding();
         Found = false;
    RowKeySet resultRowKeySet =
    searchTreeNode(root, searchType, searchString);
    RowKeySet disclosedRowKeySet =
    buildDisclosedRowKeySet(treeBinding, resultRowKeySet);
    tree1.setSelectedRowKeys(resultRowKeySet);
    tree1.setDisclosedRowKeys(disclosedRowKeySet);
    AdfFacesContext.getCurrentInstance().addPartialTarget(tree1);
    private RowKeySet searchTreeNode(JUCtrlHierNodeBinding node,
    String searchType,
    String searchString) {
    RowKeySetImpl rowKeys = new RowKeySetImpl();
    if (Found == true) {
    return rowKeys;
    if (searchString == null || searchString.length() < 1) {
    logger.log(node.getName() + ": Search string cannot be NULL or EMPTY");
    return rowKeys;
    Row nodeRow = node.getRow();
    if (nodeRow != null) {
    String compareString = "";
    Object attribute = nodeRow.getAttribute("ATTRIBUTENAME");
    if (attribute instanceof String) {
    compareString = (String)attribute;
    } else {
    compareString = attribute.toString();
                   if (compareString.equals(searchString) {
    rowKeys.add(node.getKeyPath());
    Found = true;
    List<JUCtrlHierNodeBinding> children = node.getChildren();
    if (children != null ) {
    for(JUCtrlHierNodeBinding _node: children) {
    RowKeySet rks = searchTreeNode(_node, searchType, searchString);
    System.out.println("child ren for " + _node.getRow().getAttribute("Cname"));
    if (rks != null && rks.size() > 0) {
    rowKeys.addAll(rks);
    return rowKeys;
    Also the behavior is different when FetchSize is 25, and 1000.
    Please suggest.

    The below method is creating the problem.
    private RowKeySet buildDisclosedRowKeySet(JUCtrlHierBinding treeBinding,
    RowKeySet keys) {
    RowKeySetImpl discloseRowKeyset = new RowKeySetImpl();
    Iterator iter = keys.iterator();
    while(iter.hasNext()) {
    List keyPath = (List)iter.next();
    JUCtrlHierNodeBinding node =
    treeBinding.findNodeByKeyPath(keyPath);
    if (node != null && node.getParent() != null &&
    !node.getParent().getKeyPath().isEmpty()) {
    discloseRowKeyset.add(node.getParent().getKeyPath());
    RowKeySetImpl parentKeySet = new RowKeySetImpl();
    parentKeySet.add(node.getParent().getKeyPath());
    RowKeySet rks = buildDisclosedRowKeySet(treeBinding, parentKeySet);
    discloseRowKeyset.addAll(rks);
    Can anyone suggest how to solve this?

  • Personalized Simple Search with new messageLovInput - Search does not work

    I have currently set an Message LOV Input into a Simple Search Panel for IcxPorRcvSrchPG.
    I have got the LOV bringing back the correct values, but when I hit the GO button the Search does not work.
    Can someome please help me on how I am able to get the search working in the Simple Search Panel.
    Details of VO's are as follows:
    xxReceiveItemsDueVO (extended from ReceiveItemsDueVO)
    xxReceiveMyItemsVO (extended from ReceiveMyItemsVO )
    xxReceivePurchaseItemsVO (extended from ReceivePurchaseItemsVO)
    xxReceiveReqItemsVO (extended from ReceiveReqItemsVO)
    Extended Attribute I am looking to search with is xxWono.
    Current search items are working 100% with extended VO's, but when I try and search with new item, I am having no luck. The search is acting as though the new item has not even been created.
    Additional Lov Details are as follows:
    Level: Site
    Item Style: Message Lov Input
    ID: xxWONumSearch
    Data Type: VARCHAR2
    External LOV: /oracle/apps/icx/lov/webui/WorkOrderLovRN
    Prompt: Work Order Number
    Search Allowed: False
    Search Criteria: False
    Lov Map
    ID: xxWipEntityName
    Criteria Item: xxWONumSearch
    LOV Region: WipEntityName
    Programmatic Query: False
    Required: False
    Return Item: xxWONumSearch
    Framework version: 11.5.10.6RUP
    Is there a way of doing this through Personalization?
    With the version of framework I am not able to add a simpleSearchMapping through Personalization.
    Can someone please advise?
    Thanks
    Lee

    When I generate and then view the help, it looks perfect!  I changed the name of the project folder since the information is proprietary.  I have several pictures including the parent folder and the only 3 folders that are generated.  I cannot find the Webhelp output folder.  I think this is what you need to see.

  • Silverlight 5 binding on a property with logic in its setter does not work as expected when debug is attached

    My problem is pretty easy to reproduce.
    I created a project from scratch with a view model.
    As you can see in the setter of "Age" property I have a simple logic.
        public class MainViewModel : INotifyPropertyChanged
                public event PropertyChangedEventHandler PropertyChanged;
                private int age;
                public int Age
                    get
                        return age;
                    set
                        /*Age has to be over 18* - a simple condition in the setter*/
                        age = value;
                        if(age <= 18)
                            age = 18;
                        OnPropertyChanged("Age");
                public MainViewModel(int age)
                    this.Age = age;
                private void OnPropertyChanged(string propertyName)
                    if (this.PropertyChanged != null)
                        PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    In the MainPage.xaml 
         <Grid x:Name="LayoutRoot" Background="White">
                <TextBox 
                    Text="{Binding Path=Age, Mode=TwoWay}" 
                    HorizontalAlignment="Left"
                    Width="100"
                    Height="25"/>
                <TextBlock
                    Text="{Binding Path=Age, Mode=OneWay}"
                    HorizontalAlignment="Right"
                    Width="100"
                    Height="25"/>
            </Grid>
    And MainPage.xaml.cs I simply instantiate the view model and set it as a DataContext.
        public partial class MainPage : UserControl
            private MainViewModel mvm;
            public MainPage()
                InitializeComponent();
                mvm = new MainViewModel(20);
                this.DataContext = mvm;
    I expect that this code will limit set the Age to 18 if the value entered in the TextBox is lower than 18.
    Scenario: Insert into TextBox the value "5" and press tab (for the binding the take effect, TextBox needs to lose the focus)
    Case 1: Debugger is attached =>
    TextBox value will be "5" and TextBlock value will be "18" as expected. - WRONG
    Case 2: Debugger is NOT attached => 
    TextBox value will be "18" and TextBlock value will be "18" - CORRECT
    It seems that when debugger is attached the binding does not work as expected on the object that triggered the update of the property value. This happens only if the property to which we are binding has some logic into the setter or getter.
    Has something changed in SL5 and logic in setters is not allowed anymore?
    Configuration:
    VisualStudio 2010 SP1
    SL 5 Tools 5.1.30214.0
    SL5 sdk 5.0.61118.0
    IE 10
    Thanks!                                       

    Inputting the value and changing it straight away is relatively rare.
    Very few people are now using Silverlight because it's kind of deprecated...
    This is why nobody has reported this.
    I certainly never noticed this problem and I have a number of live Silverlight systems out there.
    Some of which are huge.
    If you want a "fix":
    private void OnPropertyChanged(string propertyName)
    if (this.PropertyChanged != null)
    //PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    Storyboard sb = new Storyboard();
    sb.Duration = new Duration(new TimeSpan(0, 0, 0, 0, 100));
    sb.Completed += delegate
    PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    sb.Begin();
    The fact this works is interesting because (I think ) it means the textbox can't be updated at the point the propertychanged is raised.
    Please don't forget to upvote posts which you like and mark those which answer your question.
    My latest Technet article - Dynamic XAML

  • SharePoint foundation 2013 Search is not working

    Hi, Search was working 3 days back, but today its not working. So
    1. I Recreated Search Service Application
    2. Created Content Source and set full crawl.
    3. And service application is associated to the web application also.
    4. All Application pool id are running.
    5. Created Search Site collection, even though search is not working.
    The error message i got was shown below. How to resolve this issue. An help/thoughts.

    Try to use word Home in search
    Do we see site getting crawl in crawl logs
     Navigate to the site for which you want to control the Web Parts in search results.
    Click Site Actions, and then click Site Settings.
    Under Site Administration, click Search and offline availability.
    In the Indexing ASPX Page Content section, under
    This site does not contain fine-grained permissions. Specify the site’s ASPX page indexing behavior , 
    Always index all Web Parts on this site
    http://office.microsoft.com/en-in/sharepoint-server-help/enable-content-to-be-searchable-HA010379092.aspx

  • Search is not working in HCM9.1 , pt8.52 after install

    Hi I just installed HCM9.1 with Peopletools 8.52 on windows xp 32bits with Oracle 11g. This is my first install ever.
    When I login online the search does not work (when i click search on any page that has a search record it just shows that progress gif image but nothing happens.)
    I logged in using PS/PS
    any ideas of what I did wrong during the installation?
    These are the steps I followed.
    1-Installed Oracle11g
    2-Installed web logic
    3-Installed Tuxedo and defined TUX_DIR
    4-Installed Peopletools in C:\pt8.52 and HCM9.1 in c:\hcm9.1 nad Verity
    5-Manualy created a database called HRSD using initHRSD.ora and configured the listner and defined ORACLE_SID , ORACLE_HOME and created the spfile.
    then ran the scripts in the documentation to create namespaces , roles , dbowner etc
    6-configured the application designer
    7-loged into datamover and installed a demo hcm9.1
    8-ran grant.sql
    9-ran pt851u.sql and pt852u.sql.
    10-configured the application server and booted it.
    Created a new domain and configured it and started it. 8 processes start
    11-configured the web server and started the PIA.
    12-loged in successfully but the search does not work
    Edited by: user2003312 on Feb 17, 2012 7:42 AM

    Hi,
    First of all I am very surprised you were able to get so far with the installation, since PeopleTools 8.52 is not certified on 32 bits systems and definitely not on Windows XP.
    However,
    Your are trying to install HCM 9.1 which is delivered with PeopelTools 8.50 and you are installing PeopleTools 8.52 so, you should have run the scripts as defined in chapter Updating PeopleTools System Tables in the installation manual to update your HCM 9.1 to PeopelTools 8.51.
    Did you run these scripts?
    If not please complete these steps as described in the installation manual.
    And I also do not see you mention you have installed any PeopleTools patch. We are currently at 8.52.05. It is common at installations to patch PeopelTools to the last patch level.
    Hakan

  • Product search is not working in other JSP inj b2c application

    hi,
    I had one requirement that we have to bring product search from header jsp(b2c/navigationbar.inc.jsp) to CategoriesB2C.inc.jsp.
    i had copied all related code from last jsp.but search is not working.
    i had modified only jsp.just guide me do we have to modify any other file or .do class file.
    Thanks in advance.
    Jayesh Talreja

    Hi Jayesh,
    When you copy <td> element of product search from "navigationbar.inc.jsp" to "categoriesB2C.inc.jsp" you also have to copy
    <form> tag and necessary java script function from "navigationbar.inc.jsp" file.
    Read carefully "navigationbar.jsp.inc" file and understand how it is working in it and then copy necessary code from this file to "categoriesB2C.inc.jsp" file
    I tried to post code here but some how it is throwing an error while replying you. Sorry.
    I hope this will help you to resolve your issue.
    Regards.
    eCommerce Developer

  • Search is not working for subsites

    hello,
    SharePoint search is not working for any of the subsites and it is just working for top level site. I can see that all the subsites is visible in search. Any idea?
    interesting thing is, it is not working just for one site collection subsites. If i do search in subsites of another site collection of the same web application than it is working fine and it is working fine for all ohter web apps too.
    Please help.
    Thanks,

    Hi,
    I agree with Chris, please check following in your sub site: http://site_name/subsite_name
    1. Click on Site Actions -> Site Settings ->Modify All Site Settings
    2. Click on Search visibility.
    3. Check All this web to appear in search results.
    4. Browse to the document library or list  in your sub site.
    5. Click on Settings->Document Library Settings or list settings.
    6. Click on Advance settings.
    7. Check the last item - All items from this document library to appear in search results.
    Hope this helps.
    Rock Wang
    Rock Wang– MSFT

  • Simple short cuts not working in CC?

    Does anyone know why simple commands are not working in Illustrator CC (Copy, Paste, Undo) This is such an irritating problem as these short cuts are so frequently used. My cloud software is up-to-date. Having upgraded my software I would prefer not to have us CS5 to combat this problem.

    Hi Vaibhav,,
    Thankx for the prompt help!!
    I'm using Submit to SAP button only and I do have xACF installed on my local m/c. I'm able to use buttons and validations on the form but I'm not able to get the values in my WDynpro ABAP Appl. For Eg. : and internal table is bound to a table UI in adobe iForm , I'm able to add row (using formcalc/JScript eventing in Adobe) but I'm not able to get the changed internal table in my WDynpro ABAP application after submit button is pressed.
    Any help will be highly appreciated.
    Regds,
    Aryan

  • Subtraction of two key figures normalized to result not working as expected

    Hello SAP Community!
    I am having problems with getting the right result from a subtraction of two KFs which are "normalized to results" which means the KFs really have values expressed as percentages. The substraction that should be performed is of two percentages (e.g.: 87.298% - 85.527% = 1.77%) but my report prints out the result as "number of units" instead (e.g.: 87.298% - 85.527% = 71,514.00 EA). The two normalized KFs actually "point" to two stock KFs, hence the "number of units".
    In order to explain the problem I am facing please analyze below text:
    1) Let's assume I have below data:
    LOAD MONTH  PLANT    MATERIAL HORIZON MONTH     FORECAST UNITS
    200805         PLANT-A  MAT-1            200805         510,235.00
    200805         PLANT-B  MAT-1           200805          74,240.00
    200805         PLANT-A  MAT-1           200806         438,721.00
    200805         PLANT-B  MAT-1           200806          74,240.00
    200805         PLANT-A  MAT-1           200807         356,981.00
    200805         PLANT-B  MAT-1           200807          74,240.00
    200806         PLANT-A  MAT-1           200805               0.00
    200806         PLANT-B  MAT-1           200805               0.00
    200806         PLANT-A  MAT-1           200806         510,235.00
    200806         PLANT-B  MAT-1           200806          74,240.00
    200806         PLANT-A  MAT-1           200807         438,721.00
    200806         PLANT-B  MAT-1           200807          74,240.00
    2) Then, assume I have a comparison report, restricted by load month for two months May and June 2008 (filter restricted by two month variables) with FORECAST units spread accross columns for whole horizon (two months also in this case).
    Material  Plant                                 2008/06     2008/07
    ===================================================================
    MAT1      PLANT-A  
                       Base Units (May 2008)        438,721.00  356,981.00
                       Comparison Units (June 2008) 510,235.00  438,721.00
              PLANT-B  
                       Base Units (May 2008)         74,240.00   74,240.00
                       Comparison Units (June 2008)  74,240.00   74,240.00
              TOTALS   Base Units                   512,961.00  431,221.00
                       Comparison Units             584,475.00  512,961.00
    3) Now, let's suppose we want to know the proportions (%) of Base vs Comparison units, so
    we normalize forecats to results an we get the below report:
    Material  Plant                                 2008/06     2008/07
    ===================================================================
    MAT1      PLANT-A  
                       Base Units (May 2008)        438,721.00  356,981.00
                       Base Units % (May 2008)      85.527%     85.527%
                       Comparison Units (June 2008) 510,235.00  438,721.00
                       Comparison Units %(Jun 2008) 87.298%     82.784%
              PLANT-B  
                       Base Units (May 2008)         74,240.00   74,240.00
                       Base Units % (May 2008)       14.473%     15.702%
                       Comparison Units (June 2008)  74,240.00   74,240.00
                       Comparison Units %(Jun 2008)  12.702%     17.216%
              TOTALS   Base Units                   512,961.00  431,221.00
                       Comparison Units             584,475.00  512,961.00
    4) Finally, let's suppose we want to know the deltas (differences) of Base vs Comparison
    units, for both number of units and %. The report now look as below:
    Material  Plant                                 2008/06     2008/07
    ===================================================================
    MAT1      PLANT-A  
                       Base Units (May 2008)        438,721.00  356,981.00
                       Base Units % (May 2008)      85.527%     85.527%
                       Comparison Units (June 2008) 510,235.00  438,721.00
                       Comparison Units %(Jun 2008) 87.298%     82.784%
                       Delta base vs. comp. units %  1.77%       2.74%
                       Delta base vs. comp. units    71,514.00  81,740.00
              PLANT-B  
                       Base Units (May 2008)         74,240.00   74,240.00
                       Base Units % (May 2008)       14.473%     15.702%
                       Comparison Units (June 2008)  74,240.00   74,240.00
                       Comparison Units %(Jun 2008)  12.702%     17.216%
                       Delta base vs. comp. units %  -1.77%      -2.74%
                       Delta base vs. comp. units         0.00        0.00
              TOTALS   Base Units                   512,961.00  431,221.00
                       Comparison Units             584,475.00  512,961.00
    5) PROBLEM:
    In my report, the "Delta base vs. comp. units %" is not working as expected and
    calculates number of units just as "Delta base vs. comp. units" does instead of calculating the % difference.
    So my report looks as follows:
    Material  Plant                                 2008/06     2008/07
    ===================================================================
    MAT1      PLANT-A  
                       Base Units (May 2008)        438,721.00  356,981.00
                       Base Units % (May 2008)      85.527%     85.527%
                       Comparison Units (June 2008) 510,235.00  438,721.00
                       Comparison Units %(Jun 2008) 87.298%     82.784%
                       Delta base vs. comp. units %  71,514.00  81,740.00 <<<WRONG!!
                       Delta base vs. comp. units    71,514.00  81,740.00
              PLANT-B  
                       Base Units (May 2008)         74,240.00   74,240.00
                       Base Units % (May 2008)       14.473%     15.702%
                       Comparison Units (June 2008)  74,240.00   74,240.00
                       Comparison Units %(Jun 2008)  12.702%     17.216%
                       Delta base vs. comp. units %       0.00        0.00
                       Delta base vs. comp. units         0.00        0.00
              TOTALS   Base Units                   512,961.00  431,221.00
                       Comparison Units             584,475.00  512,961.00
    The formulas are:
    a) Delta base vs. comp. units %
      Delta base vs. comp. units % = Comparison Units % - Base Units %
    b) Delta base vs. comp. units
      Delta base vs. comp. units = Comparison Units - Base Units
    The KFs
    - Comparison Units %
    - Base Units %
    Are RESTRICTED key figures (restricted to Base and comparison month variables) which
    are setup as:
    1) Calculate Result As:  Summation of Rounded Values
    2) Calculate Single Value as: Normalization of result
    3) Calculate Along the Rows
    The KFs
    - Delta base vs. comp. units %
    - Delta base vs. comp. units
    are FORMULAS setup to:
    1) Calculate Result As:  Nothing defined
    2) Calculate Single Value as: Nothing defined
    3) Calculate Along the Rows: user default direction (grayed out)
    Thanks for the time taken to read in detail all of this. Long text but necessary to understand what the problem is.
    Any help is highly appreciated.
    Thank you.
    Mario

    Hi,
    The subraction will be carried out before doing the normalization of your KF's. So, it is displaying "number of units". Create a calculated keyfigure and subtract the KF's and in the properties of this calculated keyfigure, change the enhancement as "After Aggregation".
    I hope this will solve your issue.
    Regards,
    S P.

  • Adobe Reader XI and Adobe Reader X Pro (Editable PDF Combobox Search is not working properly.)

    I have created Editable PDF using itext(5.3.0) in java. I have used Adobe Reader XI and Adobe Reader X Pro.  But in editable PDF combobox search is  not working properly.
    It's only search first character.

    My (admittedly old and slow) system did this too the first time I opened Reader 11, but it "unfroze" after about fifteen seconds, (an eternity in computing time, I know, but it did eventually open all the way) What you're seeing on the right is the "Tools" panel initializing. That's exactly where mine would freeze up on starting. Once it did finally open fully, I clicked the "Tools" link at the top to close the panel, and I opened and viewed a document that way, then closed reader. Now when I open Reader, the Tools panel doesn't initialize and it opens immediately.
    Reboot and before you open anything else, open Reader. When you open it, DO NOT try to do anything with it until it fully opens, don't click anything, don't try to switch to another app. Give it time to open fully, and then click the Tools link to close it. Then, open and view a document, and close it. Close Reader and reopen it. the Tools panel should remain closed and Reader should open fully immediately.

  • Events in SubVi not working as expected

    Hi, I am reposting this question as my previous one didn't resulted in any satisfactory conclusion.
    I have attached my Vi's which are not working as expected. If I remove ONE subVi and its associated 3 controls and two indicators, the other one works just fine, but when I add two SUB Vis, it goes messy. I am trying to learn this way, I am sure it can be done many other ways, but please help me finding out the problem doing it this way as in my final MainVi, I would like to use 8 such sub Vis. Thanks.
    Solved!
    Go to Solution.
    Attachments:
    Main.vi ‏11 KB
    SubVi.vi ‏12 KB
    SubVi_2.vi ‏15 KB

    Your main problem is DATA FLOW.  A loop cannot iterate until EVERYTHING in it has completed.  So, as you have it, you have to have both event structures execture before you can go back to look for the next event.  So if you insist on having these subVIs, they need to be in seperate loops.
    BTW, you can get away with a single subVI.  Go into the VI properties and make it reentrant (preallocated clone).  Then each call of your subVI will have its own memory space.  A lot easier to maintain that way.
    And I know you said you didn't want alternatives, but here's how you can do it all with a single event structure in your main loop.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines
    Attachments:
    Main_MODTR.vi ‏10 KB

  • Site search will not work in Firefox but works with Chrome

    I run three websites. One is personal (www.rossolson.org) and two are for non-profit organizations (www.outpostministries.org and www.tccsa.tc). All have site search through Google, my own site is paid to be ad-free, the non profits are free and without adds because of their non profit status. For a while now, site search does not work with Firefox for the non profit sites but does for the paid site. Chrome and IE work fine. Is there a solution? Some setting to activate? Is this Google's doing?

    I am able to type a search word in but on clicking it, nothing changes. No results. the word just stays there.
    I also downloaded the https://addons.mozilla.org/firefox/addon/live-http-headers/ -- at first I wondered if it was not letting me install. So I allowed it in exceptions. But I'm not clear on what it does or what I do to use it.

Maybe you are looking for

  • Voice memos won't play on iphone

    hi everyone ... i have recorded something in voice memos ( yesterday ) it was work but today it's doesn't work why when i click the voice nothing happen ?

  • TS1398 hi

    hi i have a problem with my iphone4s ! wifi can't on !!! pl help me to solve this problem thanks vajira liyanage i have a problem with my iphone4s ! wifi not on !

  • Adobe Acrobat X Teacher & Student re-installation

    My PC has crashed and I've also lost my Adobe Acrobat X installation files, but I had kept the product ket safely and still have it. Where can I download the  Acrobat X installation files from? Thanks.

  • Lightroom and MAC Pro (intel) after Snow Leopard Upgrade?

    I have heard several horror stories about serious operational problems with Lightroom and MACs after they have upgraded from Leopard to Snow Leopard. I have been trying to get to the bottom of it, but all I have been able to glean is that yes, there

  • Best Place For iPhone 3G Purchase

    My wife wants an iPhone 3G. Is it better to purchase from an Apple Store or from an AT&T Store? I was thinking that perhaps the iPhone inventory is more current at the Apple Store. Any feedback will be most welcome.