Is label field searchable in MS ?

Hello everybody.
I 'd like to know , is the component's LABEL field  searchable?
to me it looks like it is not.
it seems to me the MS does "Search  all elements for the entered string", according to it's help, but  does not do it for the LABELs of components.
is it default behavior? 
can it be changed?
MS 13.0
W7
Desktop PC
thanks
Michael

Hello Tien, thanks for response.
you are right, the label can be changed by using double click on  the part then select the "Label" tab.
I think it would be a beneficial to have the Label field searchable.
please pass it to your developing team.
thanks
Michael

Similar Messages

  • How we can show the xml data without any attribute in a flex tree (without having any label field) ?

    how we can show the following data in a flex tree (without having any
    label field) ?
    <?xml version="1.0"?>
    <rootNode>
            <childNode>
            < subchildNode >
                    <valueNode>1000</valueNode >
                    < valueNode >999-888-777</valueNode >
                    < valueNode >STORTZ</valueNode >
                    < valueNode >PAM STORTZ</valueNode >
                    < valueNode >88 ST. MORTON ROAD</valueNode>
            </subchildNode>
            </childNode >
    </rootNode >

    as is - no how
    wrap those xml chunk with a class having clear public properties like:
    public class dataRecord {
         protected var xml:XML;
         function dataRecord(xml:XML) {
              this.xml = xml;
         public function get id ():String {
              return XML(xml.descendants("valueNode")[0]).toString();
         // and so on
    simpliest way is to change xml structure to use attributes than wrapping that thing with AS code, it's time consuming and non efficient.

  • How to use internationalization in Label fields in Screens in OPA

    Hi
    I am very new to Oracle Policy Automation. I am developing a screen which will give the option to the user to select languages. Based on his/her selection, the next screen should display a welcome message in the language selected.
    I have two properties files (one for each language) and I have placed them inside the /classes/configuration folder.
    Now, my query is how to invoke these properties files based on user selection and what should I write in the label field so that the messages are dynamically picked up.
    Thanks in advance for the help.

    Sounds like you want to allow the end user to run the Web Determations interview in a choice of languages, based on selecting a particular language from a list at the start of the interview? If so, the right approach is to use the translation layer functionality.
    You should read the OPM Help article "Create a new language translation for a rulebase": http://download.oracle.com/docs/html/E20340_01/Content/Languages/Create_new_language_translation_for_rulebase.htm
    Cheers,
    Jasmine

  • Multiple Label fields within the Parameter List of Available Values

    Hi,
    I have a business requirement where this is a period number which will be a value filed within a parameter. The labels of the parameter need to be the start date of the period and the end date of the period. What is the best way implement this in SSRS please?
    Since SSRS seems to be limited to one label field. My best quess at a solution is to concatinate the start and end period into a single field then expose this as the label.
    Is this the best approach to take?
    Kieran Patrick Wood http://www.innovativebusinessintelligence.com http://uk.linkedin.com/in/kieranpatrickwood http://kieranwood.wordpress.com/

    You need to modify the dataset to concatenate start and end periods to get new field which can be used as your label field.
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Executing SSRS using the 'label' field instead of 'value' field

    Hi,
    We have in house custom SSRS reports built for our clients and each of those reports have a 'label' field and a 'value' field. Now the 'label' field is something that the client sees on the UI as a friendly name. When a client runs the report, it gets executed
    against the 'value' field and so I was wondering if there was a way to tell SSRS to execute against 'label' field as oppose to 'value'.
    Appreciate your response!
    Thanks,
    Darshan

    I found the solution!!! By design, SSRS will not convert Label to Values. You will need to write custom code to do this. You need to do the below
    a) You need create an instance of
    ReportingService2010
    rs =
    newReportingService2010();
    b) Then you need to populate the ParameterValue[] array and populate the 'Name' and 'Value' (here the 'Value' is actually the Label that the client sees on the UI)
    c) Assign the following
    string report = "[report_path]";
    bool forRendering = true;
    string historyID = null;
    DataSourceCredentials[] credentials = null;
    ItemParameter[] parameters = null;
    and then call parameters = rs.GetItemParameters(report, historyID, forRendering, values, credentials);
    d) The above call gives you the Label-Value pair mappings within the "parameters" object and if you have cascading parameters, you will need to recursively call parameters = rs.GetItemParameters(report, historyID, forRendering, values, credentials); which
    will give you the complete set of the Label-Value pair mapping.
    e) You then iterate through the above collection and the get the Value for that Label and pass it on to SSRS
    I have tested this internally on several reports and it seems to be working. I can now pass in the displayed values to our custom web services and the above steps take care of populating the Label-Value pair mapping and then calling SSRS with the actual
    'Value'
    Darshan Patel

  • Is there a "Label" field in iTunes display options?

    I always think there used to be a such a think, but there is no "Label" field in the iTunes display options. Where do you enter the label then?
    Any tips?
    Cheers guys
    I'm using the latest iTunes.

    What do you mean by "label"?  There's lots of labels: Name label, album label, artist label, etc.  Do you mean a label label?  What you see is what is there.  You can get things to show by right clicking the column header label, or View > options.  If you don't see a label for what you want, use one of hte others and then just remember that's what you used it for.  I use "Grouping" for storing studio information and release codes.

  • Hiding Label field in JSP dynPage

    Hi all,
    I am having an issue in Hiding/disabling  label field in JSP Dynpage application
    Works fine:
    <hbj:label  id="label_Input_US_Taxpayer_ID" text="<%= USTaxpayerID %>" required="FALSE" design="LABEL" labelFor="Input_US_Taxpayer_ID" />
    but as soon as I use enabled="FALSE" the code will crash..
    Gives ERROR
    <hbj:label  id="label_Input_US_Taxpayer_ID" text="<%= USTaxpayerID %>" required="FALSE" design="LABEL" labelFor="Input_US_Taxpayer_ID" enabled="FALSE" />
    what is the way to implement this ?
    Thanks !
    Asif

    @Nishant : label object does not have visibility property like input field
    (http://help.sap.com/saphelp_nw73/helpdata/en/4a/3fcf2580551014e10000000a42189b/content.htm)
    However we can enclose the lable field inside DIV object and use it's visibility property.for example
    <div id="area_one" style="display:none">
    <hbj:label id="label_Input_US_Taxpayer_ID" text="<%= USTaxpayerID %>" required="FALSE" design="LABEL" labelFor="Input_US_Taxpayer_ID" />
    </div>
    and then change the visibility in script function
    if (obj.style.display == "none")
            obj.style.display = "block";       
        else
            obj.style.display = "none";            
    Edited by: asif hirani on Mar 3, 2011 4:52 PM

  • Label - Field -Label layout

    Hello everyone,
    JDev 11.1.1.5.0 & 11.1.1.6.0
    We want to build a layout where we have a label, the field and then a label again.
    Ex: Max Duration <field> years
    You have to see this in a form layout, where we have different fields. Some of them have this second label, others don't.
    The closes I can get is using a panellabelandmessage tag to include the second label.
              <af:panelLabelAndMessage label="Max Duration" id="plam1" showRequired="true">
                <af:inputText id="it5" required="true" showRequired="false"/>
                <f:facet name="end">
                  <af:outputLabel value="years" id="ol1"/>
                </f:facet>
              </af:panelLabelAndMessage>
            </af:panelFormLayout>The problem arise with the required fields. We can set the showRequired attribute of the panellabelandmessage to true and the one of the inputText to false.
    But whenever the required property of the inputText is set to true, the required icon is always shown, even if the showRequired is set to false.
    This makes that the required icon is shown twice.
    How can we hide the required icon from the inputText field?
    What are possible solutions for this situation?
    Thank you in advance.
    Filip Huysmans.

    Filip,
    the following custom skin entry removes the required icon from all input text labels so they are set on the panelLabelMessage component only
    af|inputText::label .AFRequiredIconStyle{display:none}
    If you need to have more control, you can add a styleClass property as shown below
    <af:panelLabelAndMessage label="Max Duration" id="plam1" showRequired="true">
                <af:inputText id="it5" required="true" showRequired="false" styleClass="noRequiredIcon"/>
                <f:facet name="end">
                  <af:outputLabel value="years" id="ol1"/>
                </f:facet>
              </af:panelLabelAndMessage>In which case the following skin only removes this
    .noRequiredIcon af|inputText::label .AFRequiredIconStyle{display:none}
    If you need this event more dynamic, use EL to set the styleClass value.
    Frank
    Ps.: The question you may ask is: Why do I need to add the af|inputText::label to the skin if the style class determines the instance? The benefit you get from this is that it is the longets match, which means that if there are other components (non input text) that have similar requirements, you can handle them individually

  • Paste radio station playlists into podcast fields - searchable?

    Hi,
    The radio station I listen to, WFMU, has lots of podcasts. They also have detailed playlists printed on their website. I would like to copy and paste those playlists into one of the fields in iTunes but so far I haven't found an appropriate one that is searchable and will also fit all this info. (Shows are from one to three hours long.) So far the "lyrics" and ""Comments" fields, the largest and most logical places to paste this info into for me, aren't working when I search for something in them. The info does fit into both of those fields though.
    What field should I past these LONG playlists into so that the individual songs can be searched on and found and will fit and be appropriate?
    Thanks.
    John L

    Thanks.
    Dan Mode
    *THE online Radio*
    http://www.tornadostream.com
    *Must Read*
    http://www.smithmediafusion.com/blog
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    "Peter Blumenthal"
    <mmgroups@_spamkiller_PhageInteractive.com> wrote in
    message news:e6u654$9a5$[email protected]..
    >> Can you also test in IE?
    >
    > IE 6.0.2800.1106, FP 8,0,24,0
    >
    > All appears to be fine...
    >
    > --
    > -------------------------------
    > Remove '_spamkiller_' to mail
    > -------------------------------
    >
    >

  • Address Book label field selection

    Hi there. I have OS Lion. In Address Book I store Prefix, Forename and Surname. But on the mailing label want to just print the Prefix and Surname. Can't find a way to edit the field selection for the label!!!! Any help much appreciated.

    That "*do not* first click on EDIT" hint from you, Michael, will save me much future misery. THANK YOU! How nice it would be if Apple fixed the problem. It could be as simple as allowing multiple undo's. If you catch your mistake on the first keystroke, you're okay. That second keystroke is the big problem. I use "notes" in Address Book to store all kinds of information: passwords, phone conversation histories, order confirmation numbers, just to name a few. Even using care I've lost data. And I kick myself for having known better. Now I'll only click EDIT when I'm entering data "above the line."

  • How to make a field searchable in CRM IC Inbox?

    Hi all,
    i have requirement where i am required to add a field, say X (it is not a Z-Field) in the InboxSearch view of CRM IC Inbox and the corresponding search functionality has to be implemented.
    I have added the field in the UI.  I have also added the field as a column in the result list. I do not know how to implement the search functionality of this field.
    I know i can use the BAdI - CRM_INBOX_BADI and its method AFTER_SEARCH. But i need to populate the values of this field into the result list for any search functionality to be implemented. Please help.
    Any pointers would be highly appreciated.
    Thanks

    Nisha,
    For Search this thread may Help..
    Re: Adding fields to CRMST_HEADER_SEARCH_BUIL
    For populating results,
    case 1. if you have that field (X) in the database / BOL structure:-
    you can add it via UI configuration tool
    case 2. if you have added as a UI element or so,
    you have to loop at the colection wrapper and populate for the new field.
    Note: I can give more clear inputs if you tell me the version of CRM you are working on.
    Regards, Sudeep..

  • Change of field label for a database field attribute

    Dear ALL,
    I tried to change the label field of a datbase attribute For example the field from the database is Customerid but i need to display the field name in the view object as Customer ID, but i am unable to change it in the xml file. I tried with the Details tab of the Attributes for the EO view xml file but still when the form is ran, the name of the label is still Customerid.
    PLs help!
    Version 11.1.2 JDeveloper
    Many a thanks!
    Dan

    Hi Cvele_new_account
    Thanks and yes i found it !
    Many a thanks again
    Dan

  • Dynamic Page Rendering (based on the difinition for labels and field setup)

    We have a requirement to display pages dynamically based on the setup or configuration for labels and fields.
    1. For example (the display page will look like):
    Company Name: -------------------------
    DB No:
    2. Setup for this will be in a UI (saved to the database):
    Page Seq Label Field type size
    1 1 Company Name comp_nm text char(50)
    1 2 DB No db_no number
    The pages will be rendered through the database procedure for the above.
    Thanks in advance for help.

    Hi Timo
    JDEV Version: Studio Edition Version 11.1.2.2.0
    I mean the definitions for the page like labels, text fields will be setup as this page will change as per the business requirements.
    We are open to sql or xml if the db procedure will not work.
    The objective is to give the business user to add anything to the page (for example, we have a lot of questions which changes in time due to specific business needs), so that the user can add a question or disable one based on the need.
    Hope if clarifies.
    Thanks
    Bibs

  • How to get number of optimzed fields

    hi Experts,
    I am using ecm11.1.1.0.5 on linux with oracle 11g, I added some information fields with ecm console and did a complete index rebuild, while ecm told me I have excessed limitation of optimized field number, I checked the doc, and found the following limitation:
    Oracle Content Server system can have up to 32 Optimized Fields, which includes data, integer, standard Oracle Content Server fields like dInDate, dOutDate, and fields selected to be optimized. All Optimized Fields are SDATA fields, which by default include dDocName, dDocTitle, dDocType, and dSecurityGroup.
    I checked my optimized fields from ecm console again(administration->admin applets->configuration manager->information fields->advanced search design)
    I found 12 fields defined as isinSearchResult and isOptimized, 8 fields defined as isInSearchResult and IsSortable, then why I excessed limitation of 32 optimized field?
    Another question is:
    Is there a way for me to add fields with searchable and search in result function but without full rebuild index?
    Search engine is oracle text.
    Best regards
    Lan

    So now I've had a bit of sleep and some caffeine, let me go a bit deeper.
    When you mark a field as "indexed/searchable" in Configuration Manager, if the field is an integer field or a date field, when OTS is the search engine, that field is assigned to a SDATA section. There is a limit of 32 SDATA fields using OTS 11g. That is NOT to say you cannot have more than 32 date and or integer fields, but [searchable date fields] + [searchable integer fields] + [declared optimized fields] cannot exceed a total of 32.
    Should you need more date and integer fields, you can add them, but you simply cannot index them for seaching purposes.
    URM is a good example of this, as it uses a LOT of date fields. The installer detects if the search engine is OTS, and does not mark its date fields as searchable if OTS is indeed the search engine.

  • Fields missing when creating a new contact

    Hi, since upgrading to the latest iPhone OS, I've noticed that when I add a new contact, the only phone number field that shows is the mobile number. Where is the office number and home number fields?
    They appear in existing contacts that have entries in those field, but not for new contacts.
    Cheers,
    Pete

    Contacts>Click on Edit>Click on the phone label field to change the label>click on number field to change number.

Maybe you are looking for